Merge branch '2505-update-docs'
[arvados.git] / apps / workbench / app / models / user.rb
1 class User < ArvadosBase
2   def initialize(*args)
3     super(*args)
4     @attribute_sortkey['first_name'] = '050'
5     @attribute_sortkey['last_name'] = '051'
6   end
7
8   def self.current
9     res = $arvados_api_client.api self, '/current'
10     $arvados_api_client.unpack_api_response(res)
11   end
12
13   def self.system
14     $arvados_system_user ||= begin
15                                res = $arvados_api_client.api self, '/system'
16                                $arvados_api_client.unpack_api_response(res)
17                              end
18   end
19
20   def owned_items
21     res = $arvados_api_client.api self.class, "/#{self.uuid}/owned_items"
22     $arvados_api_client.unpack_api_response(res)
23   end
24
25   def full_name
26     (self.first_name || "") + " " + (self.last_name || "")
27   end
28
29   def activate
30     self.private_reload($arvados_api_client.api(self.class,
31                                                 "/#{self.uuid}/activate",
32                                                 {}))
33   end
34
35   def attributes_for_display
36     super.reject { |k,v| %w(owner_uuid default_owner_uuid identity_url prefs).index k }
37   end
38
39  def attribute_editable?(attr)
40     (not (self.uuid.andand.match(/000000000000000$/) and self.is_admin)) and super(attr)
41   end
42
43   def friendly_link_name
44     [self.first_name, self.last_name].compact.join ' '
45   end
46
47   def unsetup
48     self.private_reload($arvados_api_client.api(self.class,
49                                                 "/#{self.uuid}/unsetup",
50                                                 {}))
51   end
52
53   def self.setup params
54     $arvados_api_client.api(self, "/setup", params)
55   end
56
57 end