1 class ProjectsController < ApplicationController
6 def find_object_by_uuid
7 if current_user and params[:uuid] == current_user.uuid
8 @object = current_user.dup
9 @object.uuid = current_user.uuid
17 def attribute_editable? attr, *args
19 when 'description', 'name'
37 %w(Data_collections Jobs_and_pipelines Pipeline_templates Subprojects Other_objects Sharing Advanced)
39 %w(Data_collections Jobs_and_pipelines Pipeline_templates Subprojects Other_objects Advanced)
44 params[:item_uuids] = [params[:item_uuid]]
46 render template: 'projects/remove_items'
52 params[:item_uuids].collect { |uuid| ArvadosBase.find uuid }.each do |item|
53 if (item.class == Link and
54 item.link_class == 'name' and
55 item.tail_uuid == @object.uuid)
56 # Given uuid is a name link, linking an object to this
57 # project. First follow the link to find the item we're removing,
58 # then delete the link.
60 item = ArvadosBase.find item.head_uuid
62 # Given uuid is an object. Delete all names.
63 links += Link.where(tail_uuid: @object.uuid,
68 @removed_uuids << link.uuid
71 if item.owner_uuid == @object.uuid
72 # Object is owned by this project. Remove it from the project by
73 # changing owner to the current user.
74 item.update_attributes owner_uuid: current_user.uuid
75 @removed_uuids << item.uuid
81 while (objects = Link.filter([['owner_uuid','=',@object.uuid],
82 ['tail_uuid','=',@object.uuid]])).any?
83 objects.each do |object|
87 while (objects = @object.contents(include_linked: false)).any?
88 objects.each do |object|
89 object.update_attributes! owner_uuid: current_user.uuid
92 if ArvadosBase::resource_class_for_uuid(@object.owner_uuid) == Group
93 params[:return_to] ||= group_path(@object.owner_uuid)
95 params[:return_to] ||= projects_path
100 def find_objects_for_index
101 @objects = all_projects
105 def load_contents_objects kinds=[]
106 kind_filters = @filters.select do |attr,op,val|
107 op == 'is_a' and val.is_a? Array and val.count > 1
109 if /^created_at\b/ =~ @order[0] and kind_filters.count == 1
110 # If filtering on multiple types and sorting by date: Get the
111 # first page of each type, sort the entire set, truncate to one
112 # page, and use the last item on this page as a filter for
113 # retrieving the next page. Ideally the API would do this for
114 # us, but it doesn't (yet).
115 nextpage_operator = /\bdesc$/i =~ @order[0] ? '<' : '>'
118 kind_filters.each do |attr,op,val|
119 (val.is_a?(Array) ? val : [val]).each do |type|
120 objects = @object.contents(order: @order,
122 include_linked: true,
123 filters: (@filters - kind_filters + [['uuid', 'is_a', type]]),
125 objects.each do |object|
126 @name_link_for[object.andand.uuid] = objects.links_for(object, 'name').first
131 @objects = @objects.to_a.sort_by(&:created_at)
132 @objects.reverse! if nextpage_operator == '<'
133 @objects = @objects[0..@limit-1]
134 @next_page_filters = @filters.reject do |attr,op,val|
135 attr == 'created_at' and op == nextpage_operator
138 @next_page_filters += [['created_at',
140 @objects.last.created_at]]
141 @next_page_href = url_for(partial: :contents_rows,
142 filters: @next_page_filters.to_json)
144 @next_page_href = nil
147 @objects = @object.contents(order: @order,
149 include_linked: true,
152 @next_page_href = next_page_href(partial: :contents_rows)
155 preload_links_for_objects(@objects.to_a)
160 return render_not_found("object not found")
163 @user_is_manager = false
165 if @object.uuid != current_user.uuid
167 @share_links = Link.permissions_for(@object)
168 @user_is_manager = true
169 rescue ArvadosApiClient::AccessForbiddenException,
170 ArvadosApiClient::NotFoundException
175 load_contents_objects
179 content: render_to_string(partial: 'show_contents_rows.html',
181 next_page_href: @next_page_href
192 @new_resource_attrs = (params['project'] || {}).merge(group_class: 'project')
193 @new_resource_attrs[:name] ||= 'New project'
198 @updates = params['project']
202 helper_method :get_objects_and_names
203 def get_objects_and_names(objects=nil)
204 objects = @objects if objects.nil?
205 objects_and_names = []
206 objects.each do |object|
207 if objects.respond_to? :links_for and
208 !(name_links = objects.links_for(object, 'name')).empty?
209 name_links.each do |name_link|
210 objects_and_names << [object, name_link]
212 elsif @name_link_for.andand[object.uuid]
213 objects_and_names << [object, @name_link_for[object.uuid]]
214 elsif object.respond_to? :name
215 objects_and_names << [object, object]
217 objects_and_names << [object,
218 Link.new(owner_uuid: @object.uuid,
219 tail_uuid: @object.uuid,
220 head_uuid: object.uuid,
230 if not params[:uuids].andand.any?
231 @errors = ["No user/group UUIDs specified to share with."]
232 return render_error(status: 422)
234 results = {"success" => [], "errors" => []}
235 params[:uuids].each do |shared_uuid|
237 Link.create(tail_uuid: shared_uuid, link_class: "permission",
238 name: "can_read", head_uuid: @object.uuid)
239 rescue ArvadosApiClient::ApiError => error
240 error_list = error.api_response.andand[:errors]
241 if error_list.andand.any?
242 results["errors"] += error_list.map { |e| "#{shared_uuid}: #{e}" }
244 error_code = error.api_status || "Bad status"
245 results["errors"] << "#{shared_uuid}: #{error_code} response"
248 results["success"] << shared_uuid
251 if results["errors"].empty?
252 results.delete("errors")
258 f.json { render(json: results, status: status) }