end
def sharing_scopes
- ["GET /arvados/v1/collections/#{@object.uuid}", "GET /arvados/v1/keep_services"]
+ ["GET /arvados/v1/collections/#{@object.uuid}", "GET /arvados/v1/collections/#{@object.uuid}/", "GET /arvados/v1/keep_services/accessible"]
end
def search_scopes
- ApiClientAuthorization.where(filters: [['scopes', '=', sharing_scopes]])
+ begin
+ ApiClientAuthorization.filter([['scopes', '=', sharing_scopes]]).results
+ rescue ArvadosApiClient::AccessForbiddenException
+ nil
+ end
end
def show
.where(head_uuid: @object.uuid, tail_uuid: current_user.uuid,
link_class: 'resources', name: 'wants')
.results.any?
- @search_sharing = search_scopes.select { |s| s.scopes != ['all'] }
+ @search_sharing = search_scopes
end
@prov_svg = ProvenanceHelper::create_provenance_graph(@object.provenance, "provenance_svg",
{:request => request,
end
def sharing_popup
- @search_sharing = search_scopes.select { |s| s.scopes != ['all'] }
+ @search_sharing = search_scopes
respond_to do |format|
format.html
format.js
def share
a = ApiClientAuthorization.create(scopes: sharing_scopes)
- @search_sharing = search_scopes.select { |s| s.scopes != ['all'] }
+ @search_sharing = search_scopes
render 'sharing_popup'
end
def unshare
- @search_sharing = search_scopes.select { |s| s.scopes != ['all'] }
+ @search_sharing = search_scopes
@search_sharing.each do |s|
s.destroy
end
- @search_sharing = search_scopes.select { |s| s.scopes != ['all'] }
+ @search_sharing = search_scopes
render 'sharing_popup'
end