X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/067a7263a97e1b4d96ee6572e79884bdcd937bbf..fd6df03fd625fe0f9126205ab324df8533fdcc79:/services/api/app/models/container_request.rb diff --git a/services/api/app/models/container_request.rb b/services/api/app/models/container_request.rb index c434ee0317..bbec421084 100644 --- a/services/api/app/models/container_request.rb +++ b/services/api/app/models/container_request.rb @@ -123,11 +123,13 @@ class ContainerRequest < ArvadosModel # Finalize the container request after the container has # finished/cancelled. def finalize! - out_coll = nil - log_coll = nil - c = Container.find_by_uuid(container_uuid) - ['output', 'log'].each do |out_type| - pdh = c.send(out_type) + update_collections(container: Container.find_by_uuid(container_uuid)) + update_attributes!(state: Final) + end + + def update_collections(container:, collections: ['log', 'output']) + collections.each do |out_type| + pdh = container.send(out_type) next if pdh.nil? coll_name = "Container #{out_type} for request #{uuid}" trash_at = nil @@ -141,24 +143,25 @@ class ContainerRequest < ArvadosModel end manifest = Collection.where(portable_data_hash: pdh).first.manifest_text - coll = Collection.new(owner_uuid: owner_uuid, - manifest_text: manifest, - portable_data_hash: pdh, - name: coll_name, - trash_at: trash_at, - delete_at: trash_at, - properties: { - 'type' => out_type, - 'container_request' => uuid, - }) - coll.save_with_unique_name! - if out_type == 'output' - out_coll = coll.uuid - else - log_coll = coll.uuid + coll_uuid = self.send(out_type + '_uuid') + coll = coll_uuid.nil? ? nil : Collection.where(uuid: coll_uuid).first + if !coll + coll = Collection.new( + owner_uuid: self.owner_uuid, + name: coll_name, + properties: { + 'type' => out_type, + 'container_request' => uuid, + }) end + coll.assign_attributes( + portable_data_hash: pdh, + manifest_text: manifest, + trash_at: trash_at, + delete_at: trash_at) + coll.save_with_unique_name! + self.send(out_type + '_uuid=', coll.uuid) end - update_attributes!(state: Final, output_uuid: out_coll, log_uuid: log_coll) end def self.full_text_searchable_columns @@ -312,6 +315,10 @@ class ContainerRequest < ArvadosModel permitted.push :container_count end + if current_user.andand.is_admin + permitted.push :log_uuid + end + when Final if self.state_was == Committed # "Cancel" means setting priority=0, state=Committed @@ -359,7 +366,9 @@ class ContainerRequest < ArvadosModel c = get_requesting_container() if !c.nil? self.requesting_container_uuid = c.uuid - self.priority = c.priority>0 ? 1 : 0 + # Determine the priority of container request for the requesting + # container. + self.priority = ContainerRequest.where(container_uuid: self.requesting_container_uuid).maximum("priority") || 0 end end