Class: Megam::Organizations

Inherits:
RestAdapter show all
Defined in:
lib/megam/core/organizations.rb

Instance Attribute Summary

Attributes inherited from RestAdapter

#api_key, #email, #headers, #host, #master_key, #org_id, #password_hash

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from RestAdapter

#megam_rest

Constructor Details

#initialize(o) ⇒ Organizations

Returns a new instance of Organizations.



3
4
5
6
7
8
9
10
# File 'lib/megam/core/organizations.rb', line 3

def initialize(o)
  @id = nil
  @name = nil
  @accounts_id = nil
  @related_orgs = []
  @created_at = nil
  super(o)
end

Class Method Details

.create(o) ⇒ Object



109
110
111
112
# File 'lib/megam/core/organizations.rb', line 109

def self.create(o)
  org = from_hash(o)
  org.create
end

.from_hash(o) ⇒ Object



94
95
96
97
98
# File 'lib/megam/core/organizations.rb', line 94

def self.from_hash(o)
  org = self.new(o)
  org.from_hash(o)
  org
end

.json_create(o) ⇒ Object

Create a Megam::Organization from JSON (used by the backgroud job workers)



84
85
86
87
88
89
90
91
92
# File 'lib/megam/core/organizations.rb', line 84

def self.json_create(o)
  org = new({})
  org.id(o["id"]) if o.has_key?("id")
  org.name(o["name"]) if o.has_key?("name")
  org.accounts_id(o["accounts_id"]) if o.has_key?("accounts_id")
  org.related_orgs(o["related_orgs"]) if o.has_key?("related_orgs")
  org.created_at(o["created_at"]) if o.has_key?("created_at")
  org
end

.list(o) ⇒ Object



128
129
130
131
# File 'lib/megam/core/organizations.rb', line 128

def self.list(o)
  org = from_hash(o)
  org.megam_rest.get_organizations
end

.show(o) ⇒ Object



114
115
116
117
# File 'lib/megam/core/organizations.rb', line 114

def self.show(o)
  org = from_hash(o)
  org.megam_rest.get_organizations(email)
end

.update(o) ⇒ Object



119
120
121
122
# File 'lib/megam/core/organizations.rb', line 119

def self.update(o)
  org = from_hash(o)
  org.update
end

Instance Method Details

#accounts_id(arg = nil) ⇒ Object



24
25
26
27
28
29
30
# File 'lib/megam/core/organizations.rb', line 24

def accounts_id(arg=nil)
  if arg != nil
    @accounts_id = arg
  else
  @accounts_id
  end
end

#createObject



133
134
135
# File 'lib/megam/core/organizations.rb', line 133

def create
  megam_rest.post_organization(to_hash)
end

#created_at(arg = nil) ⇒ Object



48
49
50
51
52
53
54
# File 'lib/megam/core/organizations.rb', line 48

def created_at(arg=nil)
  if arg != nil
    @created_at = arg
  else
  @created_at
  end
end

#for_jsonObject



72
73
74
75
76
77
78
79
80
81
# File 'lib/megam/core/organizations.rb', line 72

def for_json
  result = {
    "id" => id,
    "name" => name,
    "accounts_id" => accounts_id,
    "related_orgs" => related_orgs,
    "created_at" => created_at
  }
  result
end

#from_hash(o) ⇒ Object



100
101
102
103
104
105
106
107
# File 'lib/megam/core/organizations.rb', line 100

def from_hash(o)
  @id        = o[:id] if o.has_key?(:id)
  @name     = o[:name] if o.has_key?(:name)
  @accounts_id = o[:accounts_id] if o.has_key?(:accounts_id)
  @related_orgs  = o[:related_orgs] if o.has_key?(:related_orgs)
  @created_at = o[:created_at] if o.has_key?(:created_at)
  self
end

#id(arg = nil) ⇒ Object



16
17
18
19
20
21
22
# File 'lib/megam/core/organizations.rb', line 16

def id(arg=nil)
  if arg != nil
    @id = arg
  else
  @id
  end
end

#name(arg = nil) ⇒ Object



32
33
34
35
36
37
38
# File 'lib/megam/core/organizations.rb', line 32

def name(arg=nil)
  if arg != nil
    @name = arg
  else
  @name
  end
end

#organizationObject



12
13
14
# File 'lib/megam/core/organizations.rb', line 12

def organization
  self
end


40
41
42
43
44
45
46
# File 'lib/megam/core/organizations.rb', line 40

def related_orgs(arg=[])
  if arg != []
    @related_orgs = arg
  else
  @related_orgs
  end
end

#to_hashObject

Transform the ruby obj -> to a Hash



57
58
59
60
61
62
63
64
65
66
# File 'lib/megam/core/organizations.rb', line 57

def to_hash
  index_hash = Hash.new
  index_hash["json_claz"] = self.class.name
  index_hash["id"] = id
  index_hash["name"] = name
  index_hash["accounts_id"] = accounts_id
  index_hash["related_orgs"] = related_orgs
  index_hash["created_at"] = created_at
  index_hash
end

#to_json(*a) ⇒ Object



68
69
70
# File 'lib/megam/core/organizations.rb', line 68

def to_json(*a)
  for_json.to_json(*a)
end

#to_sObject



137
138
139
# File 'lib/megam/core/organizations.rb', line 137

def to_s
  Megam::Stuff.styled_hash(to_hash)
end

#updateObject



124
125
126
# File 'lib/megam/core/organizations.rb', line 124

def update
  megam_rest.update_organization(to_hash)
end