Add 'apps/arv-web/' from commit 'f9732ad8460d013c2f28363655d0d1b91894dca5'
[arvados.git] / apps / workbench / app / views / projects / _show_sharing.html.erb
1 <%
2    uuid_map = {}
3    if @share_links
4      [User, Group].each do |type|
5        type
6          .filter([['uuid','in',@share_links.collect(&:tail_uuid)]])
7          .each do |o|
8          uuid_map[o.uuid] = o
9        end
10      end
11    end
12    perm_name_desc_map = {}
13    perm_desc_name_map = {}
14    perms_json = []
15    ['Read', 'Write', 'Manage'].each do |link_desc|
16      link_name = "can_#{link_desc.downcase}"
17      perm_name_desc_map[link_name] = link_desc
18      perm_desc_name_map[link_desc] = link_name
19      perms_json << {value: link_name, text: link_desc}
20    end
21    perms_json = perms_json.to_json
22    choose_filters = {
23      "groups" => [["group_class", "=", "role"]],
24    }
25    choose_filters.default = []
26    owner_icon = fa_icon_class_for_uuid(@object.owner_uuid)
27    if owner_icon == "fa-users"
28      owner_icon = "fa-folder"
29      owner_type = "parent project"
30    else
31      owner_type = "owning user"
32    end
33 %>
34
35 <div class="pull-right">
36   <% ["users", "groups"].each do |share_class| %>
37
38   <%= link_to(send("choose_#{share_class}_path",
39       title: "Share with #{share_class}",
40       by_project: false,
41       preview_pane: false,
42       multiple: true,
43       filters: choose_filters[share_class].to_json,
44       action_method: 'post',
45       action_href: share_with_project_path,
46       action_name: 'Add',
47       action_data: {selection_param: 'uuids[]', success: 'tab-refresh'}.to_json),
48       class: "btn btn-primary btn-sm", remote: true) do %>
49   <i class="fa fa-fw fa-plus"></i> Share with <%= share_class %>&hellip;
50   <% end %>
51
52   <% end %>
53 </div>
54
55 <p>Permissions for this project are inherited from the <%= owner_type %>
56   <i class="fa fa-fw <%= owner_icon %>"></i>
57   <%= link_to_if_arvados_object @object.owner_uuid, friendly_name: true %>.
58 </p>
59
60 <table id="project_sharing" class="topalign table" style="clear: both; margin-top: 1em;">
61   <tr>
62     <th>User/Group Name</th>
63     <th>Email Address</th>
64     <th colspan="2">Project Access</th>
65   </tr>
66
67   <% @share_links.andand.each do |link|
68        shared_with = uuid_map[link.tail_uuid]
69        if shared_with.nil?
70          link_name = link.tail_uuid
71        elsif shared_with.respond_to?(:full_name)
72          link_name = shared_with.full_name
73        else
74          link_name = shared_with.name
75        end
76        if shared_with && shared_with.respond_to?(:email)
77          email = shared_with.email
78        end
79   %>
80   <tr data-object-uuid="<%= link.uuid %>">
81     <td>
82       <i class="fa fa-fw <%= fa_icon_class_for_uuid(link.tail_uuid) %>"></i>
83       <%= link_to_if_arvados_object(link.tail_uuid, link_text: link_name) %>
84     </td>
85     <td>
86       <%= email %>
87     </td>
88     <td><%= link_to perm_name_desc_map[link.name], '#', {
89       "data-emptytext" => "Read",
90       "data-placement" => "bottom",
91       "data-type" => "select",
92       "data-url" => url_for(action: "update", id: link.uuid, controller: "links", merge: true),
93       "data-title" => "Set #{link_name}'s access level",
94       "data-name" => "[name]",
95       "data-pk" => {id: link.tail_uuid, key: "link"}.to_json,
96       "data-value" => link.name,
97       "data-clear" => false,
98       "data-source" => perms_json,
99       "data-tpl" => "<select id=\"share_change_level\"></select>",
100       "class" => "editable form-control",
101       } %>
102     </td>
103     <td>
104       <%= link_to(
105           {action: 'destroy', id: link.uuid, controller: "links"},
106           {title: 'Revoke', class: 'btn btn-default btn-nodecorate', method: :delete,
107            data: {confirm: "Revoke #{link_name}'s access to this project?",
108                   remote: true}}) do %>
109       <i class="fa fa-fw fa-trash-o"></i>
110       <% end %>
111     </td>
112   </tr>
113   <% end %>
114 </table>