Module: AMEE::Shell

Defined in:
lib/amee/shell.rb

Instance Method Summary collapse

Instance Method Details

#amee_helpObject



4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# File 'lib/amee/shell.rb', line 4

def amee_help
  puts "AMEE shell - version #{AMEE::VERSION::STRING}"
  puts "--------------------------"
  puts "Commands:"
  puts " ls"
  puts "            - display contents of current category."
  puts " cd 'path'"
  puts "            - change category. Path must be a quoted string. You can use things like '/data', '..', or 'subcategory'."
  puts " pwd"
  puts "            - display current category path."
  puts " cat 'name'"
  puts "            - display contents of data item called 'name' within the current category."
  puts " set_value 'item_name', 'value_name', value"
  puts "            - set the value 'value_name' inside 'item_name' to value."
  puts " amee_help"
  puts "            - display this help text."
end

#cat(name) ⇒ Object



49
50
51
52
53
54
55
56
57
58
59
60
# File 'lib/amee/shell.rb', line 49

def cat(name)
  item = @@category.items.detect { |i| i[:path].match("^#{name}") }
  fullpath = "#{@@category.full_path}/#{item[:path]}"
  item = AMEE::Data::Item.get($connection, fullpath)
  puts fullpath
  puts "Label: #{item.label}"
  puts "Values:"
  item.values.each do |v|
    puts " - #{v[:name]}: #{v[:value]}"
  end
  nil
end

#cd(path) ⇒ Object



38
39
40
41
42
43
44
45
46
47
# File 'lib/amee/shell.rb', line 38

def cd(path)
  if path == '..'
    path_components = @@category.full_path.split('/')
    path = path_components.first(path_components.size - 1).join('/')
  elsif !path.match(/^\/.*/)
    path = @@category.full_path + '/' + path
  end
  @@category = AMEE::Data::Category.get($connection, path)
  @@category.full_path
end

#lsObject



22
23
24
25
26
27
28
29
30
31
32
# File 'lib/amee/shell.rb', line 22

def ls
  puts "Categories:"
  @@category.children.each do |c|
    puts " - #{c[:path]}"
  end
  puts "Items:"
  @@category.items.each do |i|
    puts " - #{i[:path]} (#{i[:label]})"
  end
  nil
end

#pwdObject



34
35
36
# File 'lib/amee/shell.rb', line 34

def pwd
  @@category.full_path
end

#set_value(item, name, value) ⇒ Object



62
63
64
65
66
67
68
# File 'lib/amee/shell.rb', line 62

def set_value(item, name, value)
  item = @@category.items.detect { |i| i[:path].match("^#{item}") }
  fullpath = "#{@@category.full_path}/#{item[:path]}/#{name}"
  itemval = AMEE::Data::ItemValue.get($connection, fullpath)
  itemval.value = value
  itemval.save!
end