2760: Show folder hierarchy on regular page, not in left nav
[arvados.git] / apps / workbench / app / controllers / folders_controller.rb
1 class FoldersController < ApplicationController
2   def model_class
3     Group
4   end
5
6   def index_pane_list
7     %w(Folders)
8   end
9
10   def remove_item
11     @removed_uuids = []
12     links = []
13     item = ArvadosBase.find params[:item_uuid]
14     if (item.class == Link and
15         item.link_class == 'name' and
16         item.tail_uuid = @object.uuid)
17       # Given uuid is a name link, linking an object to this
18       # folder. First follow the link to find the item we're removing,
19       # then delete the link.
20       links << item
21       item = ArvadosBase.find item.head_uuid
22     else
23       # Given uuid is an object. Delete all names.
24       links += Link.where(tail_uuid: @object.uuid,
25                           head_uuid: item.uuid,
26                           link_class: 'name')
27     end
28     links.each do |link|
29       @removed_uuids << link.uuid
30       link.destroy
31     end
32     if item.owner_uuid == @object.uuid
33       # Object is owned by this folder. Remove it from the folder by
34       # changing owner to the current user.
35       item.update_attributes owner_uuid: current_user
36       @removed_uuids << item.uuid
37     end
38   end
39
40   def index
41     @objects = Group.where(group_class: 'folder').order('name')
42     parent_of = {}
43     @objects.each do |ob|
44       parent_of[ob.uuid] = ob.owner_uuid
45     end
46     children_of = {false => [], current_user.uuid => []}
47     @objects.each do |ob|
48       if ob.owner_uuid != current_user.uuid and
49           not parent_of.has_key? ob.owner_uuid
50         parent_of[ob.uuid] = false
51       end
52       children_of[parent_of[ob.uuid]] ||= []
53       children_of[parent_of[ob.uuid]] << ob
54     end
55     def buildtree children_of, root_uuid=false
56       tree = {}
57       children_of[root_uuid].andand.each do |ob|
58         tree[ob] = buildtree(children_of, ob.uuid)
59       end
60       tree
61     end
62     def sorted_paths tree, depth=0
63       paths = []
64       tree.keys.sort_by { |ob| ob.name || 'New folder' }.each do |ob|
65         paths << {object: ob, depth: depth}
66         paths += sorted_paths tree[ob], depth+1
67       end
68       paths
69     end
70     @my_folder_tree = sorted_paths buildtree(children_of, current_user.uuid)
71     @shared_folder_tree = sorted_paths buildtree(children_of, false)
72   end
73
74   def show
75     @objects = @object.contents include_linked: true
76     @share_links = Link.filter([['head_uuid', '=', @object.uuid],
77                                 ['link_class', '=', 'permission']])
78     @logs = Log.limit(10).filter([['object_uuid', '=', @object.uuid]])
79
80     @objects_and_names = []
81     @objects.each do |object|
82       if !(name_links = @objects.links_for(object, 'name')).empty?
83         name_links.each do |name_link|
84           @objects_and_names << [object, name_link]
85         end
86       else
87         @objects_and_names << [object,
88                                Link.new(tail_uuid: @object.uuid,
89                                         head_uuid: object.uuid,
90                                         link_class: "name",
91                                         name: "")]
92       end
93     end
94
95     super
96   end
97
98   def create
99     @new_resource_attrs = (params['folder'] || {}).merge(group_class: 'folder')
100     @new_resource_attrs[:name] ||= 'New folder'
101     super
102   end
103 end