X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/29d73c8ab33b0d9c34074cd09e581cd7584da31e..9318b234cbfae138524e45080f549c277e15776b:/apps/workbench/app/controllers/users_controller.rb diff --git a/apps/workbench/app/controllers/users_controller.rb b/apps/workbench/app/controllers/users_controller.rb index d2fcbbb94c..350f297af3 100644 --- a/apps/workbench/app/controllers/users_controller.rb +++ b/apps/workbench/app/controllers/users_controller.rb @@ -102,6 +102,7 @@ class UsersController < ApplicationController filter([[:object_uuid, '=', u.uuid], [:event_type, '=', 'user-storage-report']]). order(:created_at => :desc). + with_count('none'). limit(1) storage_log.each do |log_entry| # We expect this block to only execute once since we specified limit(1) @@ -256,28 +257,24 @@ class UsersController < ApplicationController end def repositories - repo_links = Link. - filter([['head_uuid', 'is_a', 'arvados#repository'], - ['tail_uuid', '=', current_user.uuid], - ['link_class', '=', 'permission'], - ]) - - owned_repositories = Repository.where(owner_uuid: @object.uuid) - - @my_repositories = (Repository.where(uuid: repo_links.collect(&:head_uuid)) | - owned_repositories). - uniq { |repo| repo.uuid } - + # all repositories accessible by current user + all_repositories = Hash[Repository.all.order('name asc').collect {|repo| [repo.uuid, repo]}] + @my_repositories = [] # we want them ordered as owned and the rest @repo_writable = {} - repo_links.each do |link| - if link.name.in? ['can_write', 'can_manage'] - @repo_writable[link.head_uuid] = link.name + + # owned repos + all_repositories.each do |_, repo| + if repo.owner_uuid == current_user.uuid + @repo_writable[repo.uuid] = 'can_write' + @my_repositories << repo end end - owned_repositories.each do |repo| - @repo_writable[repo.uuid] = 'can_manage' + # rest of the repos + handled = @my_repositories.map(&:uuid) + all_repositories.each do |_, repo| + @my_repositories << repo if !repo.uuid.in?(handled) end end