X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/bd86112ffba029e0f2c29c7d12ae6192e4097e18..11085f87c952c7e46a15c88e144190cac32b95a8:/apps/workbench/app/controllers/actions_controller.rb diff --git a/apps/workbench/app/controllers/actions_controller.rb b/apps/workbench/app/controllers/actions_controller.rb index b1beb9fb38..62533d81b4 100644 --- a/apps/workbench/app/controllers/actions_controller.rb +++ b/apps/workbench/app/controllers/actions_controller.rb @@ -158,6 +158,19 @@ class ActionsController < ApplicationController normalized = arv_normalize combined newc = Collection.new({:manifest_text => normalized}) + newc.name = newc.name || "Collection created at #{Time.now.localtime}" + + # set owner_uuid to current project, provided it is writable + current_project_writable = false + action_data = JSON.parse(params['action_data']) if params['action_data'] + if action_data && action_data['current_project_uuid'] + current_project = Group.find(action_data['current_project_uuid']) rescue nil + if (current_project && current_project.writable_by.andand.include?(current_user.uuid)) + newc.owner_uuid = action_data['current_project_uuid'] + current_project_writable = true + end + end + newc.save! chash.each do |k,v| @@ -170,7 +183,11 @@ class ActionsController < ApplicationController l.save! end - redirect_to controller: 'collections', action: :show, id: newc.uuid + msg = current_project_writable ? + "Created new collection in the project #{current_project.name}." : + "Created new collection in your Home project." + + redirect_to newc, flash: {'message' => msg} end def report_issue_popup