1 class ProjectsController < ApplicationController
2 before_filter :set_share_links, if: -> { defined? @object }
8 def find_object_by_uuid
9 if current_user and params[:uuid] == current_user.uuid
10 @object = current_user.dup
11 @object.uuid = current_user.uuid
19 def attribute_editable? attr, *args
21 when 'description', 'name'
34 @user_is_manager = false
36 if @object.uuid != current_user.uuid
38 @share_links = Link.permissions_for(@object)
39 @user_is_manager = true
40 rescue ArvadosApiClient::AccessForbiddenException,
41 ArvadosApiClient::NotFoundException
50 # Returning an array of hashes instead of an array of strings will allow
51 # us to tell the interface to get counts for each pane (using :filters).
52 # It also seems to me that something like these could be used to configure the contents of the panes.
56 :name => 'Data_collections',
57 :filters => [%w(uuid is_a arvados#collection)]
60 :name => 'Jobs_and_pipelines',
61 :filters => [%w(uuid is_a) + [%w(arvados#job arvados#pipelineInstance)]]
64 :name => 'Pipeline_templates',
65 :filters => [%w(uuid is_a arvados#pipelineTemplate)]
68 :name => 'Subprojects',
69 :filters => [%w(uuid is_a arvados#group)]
71 { :name => 'Other_objects',
72 :filters => [%w(uuid is_a) + [%w(arvados#human arvados#specimen arvados#trait)]]
75 pane_list << { :name => 'Sharing',
76 :count => @share_links.count } if @user_is_manager
77 pane_list << { :name => 'Advanced' }
80 # Called via AJAX and returns Javascript that populates tab counts into tab titles.
81 # References #show_pane_list action which should return an array of hashes each with :name
82 # and then optionally a :filters to run or a straight up :count
84 # This action could easily be moved to the ApplicationController to genericize the tab_counts behaviour,
85 # but one or more new routes would have to be created, the js.erb would also have to be moved
88 show_pane_list.each do |pane|
91 @tab_counts[pane[:name]] = pane[:count]
93 @tab_counts[pane[:name]] = @object.contents(filters: pane[:filters]).items_available
100 params[:item_uuids] = [params[:item_uuid]]
102 render template: 'projects/remove_items'
108 params[:item_uuids].collect { |uuid| ArvadosBase.find uuid }.each do |item|
109 if (item.class == Link and
110 item.link_class == 'name' and
111 item.tail_uuid == @object.uuid)
112 # Given uuid is a name link, linking an object to this
113 # project. First follow the link to find the item we're removing,
114 # then delete the link.
116 item = ArvadosBase.find item.head_uuid
118 # Given uuid is an object. Delete all names.
119 links += Link.where(tail_uuid: @object.uuid,
120 head_uuid: item.uuid,
124 @removed_uuids << link.uuid
127 if item.owner_uuid == @object.uuid
128 # Object is owned by this project. Remove it from the project by
129 # changing owner to the current user.
130 item.update_attributes owner_uuid: current_user.uuid
131 @removed_uuids << item.uuid
137 while (objects = Link.filter([['owner_uuid','=',@object.uuid],
138 ['tail_uuid','=',@object.uuid]])).any?
139 objects.each do |object|
143 while (objects = @object.contents(include_linked: false)).any?
144 objects.each do |object|
145 object.update_attributes! owner_uuid: current_user.uuid
148 if ArvadosBase::resource_class_for_uuid(@object.owner_uuid) == Group
149 params[:return_to] ||= group_path(@object.owner_uuid)
151 params[:return_to] ||= projects_path
156 def find_objects_for_index
157 @objects = all_projects
161 def load_contents_objects kinds=[]
162 kind_filters = @filters.select do |attr,op,val|
163 op == 'is_a' and val.is_a? Array and val.count > 1
165 if /^created_at\b/ =~ @order[0] and kind_filters.count == 1
166 # If filtering on multiple types and sorting by date: Get the
167 # first page of each type, sort the entire set, truncate to one
168 # page, and use the last item on this page as a filter for
169 # retrieving the next page. Ideally the API would do this for
170 # us, but it doesn't (yet).
171 nextpage_operator = /\bdesc$/i =~ @order[0] ? '<' : '>'
174 kind_filters.each do |attr,op,val|
175 (val.is_a?(Array) ? val : [val]).each do |type|
176 objects = @object.contents(order: @order,
178 include_linked: true,
179 filters: (@filters - kind_filters + [['uuid', 'is_a', type]]),
181 objects.each do |object|
182 @name_link_for[object.andand.uuid] = objects.links_for(object, 'name').first
187 @objects = @objects.to_a.sort_by(&:created_at)
188 @objects.reverse! if nextpage_operator == '<'
189 @objects = @objects[0..@limit-1]
190 @next_page_filters = @filters.reject do |attr,op,val|
191 attr == 'created_at' and op == nextpage_operator
194 @next_page_filters += [['created_at',
196 @objects.last.created_at]]
197 @next_page_href = url_for(partial: :contents_rows,
198 filters: @next_page_filters.to_json)
200 @next_page_href = nil
203 @objects = @object.contents(order: @order,
205 include_linked: true,
208 @next_page_href = next_page_href(partial: :contents_rows)
211 preload_links_for_objects(@objects.to_a)
216 return render_not_found("object not found")
220 load_contents_objects
224 content: render_to_string(partial: 'show_contents_rows.html',
226 next_page_href: @next_page_href
237 @new_resource_attrs = (params['project'] || {}).merge(group_class: 'project')
238 @new_resource_attrs[:name] ||= 'New project'
243 @updates = params['project']
247 helper_method :get_objects_and_names
248 def get_objects_and_names(objects=nil)
249 objects = @objects if objects.nil?
250 objects_and_names = []
251 objects.each do |object|
252 if objects.respond_to? :links_for and
253 !(name_links = objects.links_for(object, 'name')).empty?
254 name_links.each do |name_link|
255 objects_and_names << [object, name_link]
257 elsif @name_link_for.andand[object.uuid]
258 objects_and_names << [object, @name_link_for[object.uuid]]
259 elsif object.respond_to? :name
260 objects_and_names << [object, object]
262 objects_and_names << [object,
263 Link.new(owner_uuid: @object.uuid,
264 tail_uuid: @object.uuid,
265 head_uuid: object.uuid,
275 if not params[:uuids].andand.any?
276 @errors = ["No user/group UUIDs specified to share with."]
277 return render_error(status: 422)
279 results = {"success" => [], "errors" => []}
280 params[:uuids].each do |shared_uuid|
282 Link.create(tail_uuid: shared_uuid, link_class: "permission",
283 name: "can_read", head_uuid: @object.uuid)
284 rescue ArvadosApiClient::ApiError => error
285 error_list = error.api_response.andand[:errors]
286 if error_list.andand.any?
287 results["errors"] += error_list.map { |e| "#{shared_uuid}: #{e}" }
289 error_code = error.api_status || "Bad status"
290 results["errors"] << "#{shared_uuid}: #{error_code} response"
293 results["success"] << shared_uuid
296 if results["errors"].empty?
297 results.delete("errors")
303 f.json { render(json: results, status: status) }