From: radhika Date: Thu, 24 Jul 2014 15:11:11 +0000 (-0400) Subject: Merge branch 'master' into 3193-manage-account X-Git-Tag: 1.1.0~2388^2~39 X-Git-Url: https://git.arvados.org/arvados.git/commitdiff_plain/dd2634cad1db669ce19237805bb7fa83a1913d26?hp=fdc4fd98ee963559ac13e737700a8be1f5c736c7 Merge branch 'master' into 3193-manage-account --- diff --git a/apps/workbench/app/controllers/users_controller.rb b/apps/workbench/app/controllers/users_controller.rb index 0313de5aa2..8c2a68082b 100644 --- a/apps/workbench/app/controllers/users_controller.rb +++ b/apps/workbench/app/controllers/users_controller.rb @@ -210,6 +210,39 @@ class UsersController < ApplicationController end end + def manage_account + # repositories current user can read / write + repo_links = [] + Link.where(tail_uuid: current_user.uuid, + link_class: 'permission', + name: ['can_write', 'can_read']). + each do |perm_link| + repo_links << perm_link[:head_uuid] + end + @my_repositories = Repository.where(uuid: repo_links) + + # virtual machines the current user can login into + @my_vm_logins = {} + Link.where(tail_uuid: current_user.uuid, + link_class: 'permission', + name: 'can_login'). + each do |perm_link| + if perm_link.properties.andand[:username] + @my_vm_logins[perm_link.head_uuid] ||= [] + @my_vm_logins[perm_link.head_uuid] << perm_link.properties[:username] + end + end + @my_virtual_machines = VirtualMachine.where(uuid: @my_vm_logins.keys) + + # current user's ssh keys + @my_ssh_keys = AuthorizedKey.where(key_type: 'SSH', owner_uuid: current_user.uuid) + + respond_to do |f| +# f.js { render template: 'users/manage_account.js' } + f.html { render template: 'users/manage_account' } + end + end + protected def find_current_links user diff --git a/apps/workbench/app/views/application/index.html.erb b/apps/workbench/app/views/application/index.html.erb index 0e72f7a2dd..3e2a608ed7 100644 --- a/apps/workbench/app/views/application/index.html.erb +++ b/apps/workbench/app/views/application/index.html.erb @@ -13,6 +13,8 @@ Add a new user <% end %> + <% elsif controller.controller_name == 'manage_account' %> + <%# No add button is needed %> <% else %> <%= button_to({action: 'create'}, {class: 'btn btn-sm btn-primary'}) do %> diff --git a/apps/workbench/app/views/layouts/application.html.erb b/apps/workbench/app/views/layouts/application.html.erb index ec2c98bdcb..5725f40de7 100644 --- a/apps/workbench/app/views/layouts/application.html.erb +++ b/apps/workbench/app/views/layouts/application.html.erb @@ -81,8 +81,7 @@