Class: Chef::Org
Class Method Summary
collapse
Instance Method Summary
collapse
#lazy, #set_or_return, #validate
Constructor Details
#initialize(name) ⇒ Org
Returns a new instance of Org.
28
29
30
31
32
33
34
35
|
# File 'lib/chef/org.rb', line 28
def initialize(name)
@name = name
@full_name = ""
@private_key = nil
@guid = nil
end
|
Class Method Details
.from_hash(org_hash) ⇒ Object
113
114
115
116
117
118
119
|
# File 'lib/chef/org.rb', line 113
def self.from_hash(org_hash)
org = Chef::Org.new(org_hash["name"])
org.full_name org_hash["full_name"]
org.private_key org_hash["private_key"] if org_hash.key?("private_key")
org.guid org_hash["guid"] if org_hash.key?("guid")
org
end
|
.from_json(json) ⇒ Object
121
122
123
|
# File 'lib/chef/org.rb', line 121
def self.from_json(json)
Chef::Org.from_hash(Chef::JSONCompat.from_json(json))
end
|
.list(inflate = false) ⇒ Object
130
131
132
133
134
135
136
137
138
139
140
|
# File 'lib/chef/org.rb', line 130
def self.list(inflate = false)
orgs = Chef::ServerAPI.new(Chef::Config[:chef_server_root]).get("organizations")
if inflate
orgs.inject({}) do |org_map, (name, _url)|
org_map[name] = Chef::Org.load(name)
org_map
end
else
orgs
end
end
|
.load(org_name) ⇒ Object
125
126
127
128
|
# File 'lib/chef/org.rb', line 125
def self.load(org_name)
response = Chef::ServerAPI.new(Chef::Config[:chef_server_root]).get("organizations/#{org_name}")
Chef::Org.from_hash(response)
end
|
Instance Method Details
#associate_user(username) ⇒ Object
101
102
103
104
105
106
|
# File 'lib/chef/org.rb', line 101
def associate_user(username)
request_body = { :user => username }
response = chef_rest.post "organizations/#{@name}/association_requests", request_body
association_id = response["uri"].split("/").last
chef_rest.put "users/#{username}/association_requests/#{association_id}", { :response => "accept" }
end
|
#chef_rest ⇒ Object
37
38
39
|
# File 'lib/chef/org.rb', line 37
def chef_rest
@chef_rest ||= Chef::ServerAPI.new(Chef::Config[:chef_server_root])
end
|
#create ⇒ Object
75
76
77
78
79
|
# File 'lib/chef/org.rb', line 75
def create
payload = { :name => name, :full_name => full_name }
new_org = chef_rest.post("organizations", payload)
Chef::Org.from_hash(to_hash.merge(new_org))
end
|
#destroy ⇒ Object
87
88
89
|
# File 'lib/chef/org.rb', line 87
def destroy
chef_rest.delete("organizations/#{@name}")
end
|
#dissociate_user(username) ⇒ Object
108
109
110
|
# File 'lib/chef/org.rb', line 108
def dissociate_user(username)
chef_rest.delete "organizations/#{name}/users/#{username}"
end
|
#full_name(arg = nil) ⇒ Object
46
47
48
49
|
# File 'lib/chef/org.rb', line 46
def full_name(arg = nil)
set_or_return(:full_name,
arg, :kind_of => String)
end
|
#guid(arg = nil) ⇒ Object
56
57
58
59
|
# File 'lib/chef/org.rb', line 56
def guid(arg = nil)
set_or_return(:guid,
arg, :kind_of => String)
end
|
#name(arg = nil) ⇒ Object
41
42
43
44
|
# File 'lib/chef/org.rb', line 41
def name(arg = nil)
set_or_return(:name, arg,
:regex => /^[a-z0-9\-_]+$/)
end
|
#private_key(arg = nil) ⇒ Object
51
52
53
54
|
# File 'lib/chef/org.rb', line 51
def private_key(arg = nil)
set_or_return(:private_key,
arg, :kind_of => String)
end
|
#save ⇒ Object
91
92
93
94
95
96
97
98
99
|
# File 'lib/chef/org.rb', line 91
def save
create
rescue Net::HTTPServerException => e
if e.response.code == "409"
update
else
raise e
end
end
|
#to_hash ⇒ Object
61
62
63
64
65
66
67
68
69
|
# File 'lib/chef/org.rb', line 61
def to_hash
result = {
"name" => @name,
"full_name" => @full_name,
}
result["private_key"] = @private_key if @private_key
result["guid"] = @guid if @guid
result
end
|
#to_json(*a) ⇒ Object
71
72
73
|
# File 'lib/chef/org.rb', line 71
def to_json(*a)
Chef::JSONCompat.to_json(to_hash, *a)
end
|
#update ⇒ Object
81
82
83
84
85
|
# File 'lib/chef/org.rb', line 81
def update
payload = { :name => name, :full_name => full_name }
new_org = chef_rest.put("organizations/#{name}", payload)
Chef::Org.from_hash(to_hash.merge(new_org))
end
|