Class: Legato::Management::Account

Inherits:
Object
  • Object
show all
Extended by:
Finder
Defined in:
lib/legato/management/account.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Finder

all, base_uri, get

Constructor Details

#initialize(attributes, user) ⇒ Account

Returns a new instance of Account.



17
18
19
20
21
22
# File 'lib/legato/management/account.rb', line 17

def initialize(attributes, user)
  self.user = user

  self.id = attributes['id'] || attributes[:id]
  self.name = attributes['name'] || attributes[:name]
end

Instance Attribute Details

#idObject

Returns the value of attribute id.



14
15
16
# File 'lib/legato/management/account.rb', line 14

def id
  @id
end

#nameObject

Returns the value of attribute name.



14
15
16
# File 'lib/legato/management/account.rb', line 14

def name
  @name
end

#userObject

Returns the value of attribute user.



14
15
16
# File 'lib/legato/management/account.rb', line 14

def user
  @user
end

#web_propertiesObject



24
25
26
# File 'lib/legato/management/account.rb', line 24

def web_properties
  @web_properties ||= WebProperty.(self)
end

Class Method Details

.build_from_summary(attributes, user) ⇒ Object



38
39
40
41
42
43
44
45
46
47
# File 'lib/legato/management/account.rb', line 38

def self.build_from_summary(attributes, user)
  properties = attributes['webProperties'] || attributes[:webProperties]

  Account.new(attributes, user).tap { ||
    .web_properties = properties.map { |property|
      property['accountId'] = .id
      WebProperty.build_from_summary(property, user, )
    }
  }
end

.default_pathObject



6
7
8
# File 'lib/legato/management/account.rb', line 6

def self.default_path
  "/accounts"
end

.from_child(child) ⇒ Object



34
35
36
# File 'lib/legato/management/account.rb', line 34

def self.from_child(child)
  all(child.user).detect {|a| a.id == child.}
end

Instance Method Details

#pathObject



10
11
12
# File 'lib/legato/management/account.rb', line 10

def path
  "/accounts/#{id}"
end

#profilesObject



28
29
30
31
32
# File 'lib/legato/management/account.rb', line 28

def profiles
  @web_properties ?
    @web_properties.map { |property| property.profiles }.flatten :
    Profile.(self)
end