Class: Chef::Org

Inherits:
Object
  • Object
show all
Includes:
Mixin::ParamsValidate, GroupOperations
Defined in:
lib/chef/org.rb,
lib/chef/org/group_operations.rb

Defined Under Namespace

Modules: GroupOperations

Class Method Summary collapse

Instance Method Summary collapse

Methods included from GroupOperations

#actor_delete_would_leave_admins_empty?, #add_user_to_group, #group, #remove_user_from_group, #user_member_of_group?

Constructor Details

#initialize(name = "") ⇒ Org

Returns a new instance of Org.



12
13
14
15
16
17
18
19
# File 'lib/chef/org.rb', line 12

def initialize(name = "")
  @name = name
  @full_name = ""
  # The Chef API returns the private key of the validator
  # client on create
  @private_key = nil
  @guid = nil
end

Class Method Details

.from_hash(org_hash) ⇒ Object

Class methods



97
98
99
100
101
102
103
104
# File 'lib/chef/org.rb', line 97

def self.from_hash(org_hash)
  org = Chef::Org.new
  org.name 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 Also known as: json_create



106
107
108
# File 'lib/chef/org.rb', line 106

def self.from_json(json)
  Chef::Org.from_hash(Chef::JSONCompat.from_json(json))
end

.list(inflate = false) ⇒ Object



119
120
121
122
123
124
125
126
127
128
129
# File 'lib/chef/org.rb', line 119

def self.list(inflate = false)
  orgs = Chef::ServerAPI.new(Chef::Config[:chef_server_root]).get_rest("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



114
115
116
117
# File 'lib/chef/org.rb', line 114

def self.load(org_name)
  response = Chef::ServerAPI.new(Chef::Config[:chef_server_root]).get_rest("organizations/#{org_name}")
  Chef::Org.from_hash(response)
end

Instance Method Details

#associate_user(username) ⇒ Object



85
86
87
88
89
90
# File 'lib/chef/org.rb', line 85

def associate_user(username)
  request_body = { user: username }
  response = chef_rest.post_rest "organizations/#{@name}/association_requests", request_body
  association_id = response["uri"].split("/").last
  chef_rest.put_rest "users/#{username}/association_requests/#{association_id}", { response: "accept" }
end

#chef_restObject



21
22
23
# File 'lib/chef/org.rb', line 21

def chef_rest
  @chef_rest ||= Chef::ServerAPI.new(Chef::Config[:chef_server_root])
end

#createObject



59
60
61
62
63
# File 'lib/chef/org.rb', line 59

def create
  payload = { name: name, full_name: full_name }
  new_org = chef_rest.post_rest("organizations", payload)
  Chef::Org.from_hash(to_hash.merge(new_org))
end

#destroyObject



71
72
73
# File 'lib/chef/org.rb', line 71

def destroy
  chef_rest.delete_rest("organizations/#{@name}")
end

#dissociate_user(username) ⇒ Object



92
93
94
# File 'lib/chef/org.rb', line 92

def dissociate_user(username)
  chef_rest.delete_rest "organizations/#{name}/users/#{username}"
end

#full_name(arg = nil) ⇒ Object



30
31
32
33
# File 'lib/chef/org.rb', line 30

def full_name(arg = nil)
  set_or_return(:full_name,
    arg, kind_of: String)
end

#guid(arg = nil) ⇒ Object



40
41
42
43
# File 'lib/chef/org.rb', line 40

def guid(arg = nil)
  set_or_return(:guid,
    arg, kind_of: String)
end

#name(arg = nil) ⇒ Object



25
26
27
28
# File 'lib/chef/org.rb', line 25

def name(arg = nil)
  set_or_return(:name, arg,
    regex: /^[a-z0-9\-_]+$/)
end

#private_key(arg = nil) ⇒ Object



35
36
37
38
# File 'lib/chef/org.rb', line 35

def private_key(arg = nil)
  set_or_return(:private_key,
    arg, kind_of: String)
end

#saveObject



75
76
77
78
79
80
81
82
83
# File 'lib/chef/org.rb', line 75

def save
  create
rescue Net::HTTPServerException => e
  if e.response.code == "409"
    update
  else
    raise e
  end
end

#to_hashObject



45
46
47
48
49
50
51
52
53
# File 'lib/chef/org.rb', line 45

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



55
56
57
# File 'lib/chef/org.rb', line 55

def to_json(*a)
  Chef::JSONCompat.to_json(to_hash, *a)
end

#updateObject



65
66
67
68
69
# File 'lib/chef/org.rb', line 65

def update
  payload = { name: name, full_name: full_name }
  new_org = chef_rest.put_rest("organizations/#{name}", payload)
  Chef::Org.from_hash(to_hash.merge(new_org))
end