Class: Chef::ChefFS::FileSystem::ChefServer::OrganizationInvitesEntry
- Inherits:
-
RestListEntry
- Object
- BaseFSObject
- RestListEntry
- Chef::ChefFS::FileSystem::ChefServer::OrganizationInvitesEntry
- Defined in:
- lib/chef/chef_fs/file_system/chef_server/organization_invites_entry.rb
Overview
/organizations/NAME/invitations.json read data from:
-
GET /organizations/NAME/association_requests
write data to:
-
remove from list: DELETE /organizations/NAME/association_requests/id
-
add to list: POST /organizations/NAME/association_requests
Instance Attribute Summary
Attributes inherited from BaseFSObject
Instance Method Summary collapse
-
#api_path ⇒ Object
/organizations/foo/invites.json -> /organizations/foo/association_requests.
- #data_handler ⇒ Object
- #delete(recurse) ⇒ Object
- #display_path ⇒ Object
- #exists? ⇒ Boolean
-
#initialize(name, parent, exists = nil) ⇒ OrganizationInvitesEntry
constructor
A new instance of OrganizationInvitesEntry.
- #write(contents) ⇒ Object
Methods inherited from RestListEntry
#_read_json, #api_child_name, #api_error_text, #chef_object, #compare_to, #display_name, #environment, #minimize_value, #normalize_value, #org, #read, #rest
Methods inherited from BaseFSObject
#can_have_child?, #chef_object, #child, #children, #compare_to, #create_child, #dir?, #path_for_printing, #read, #root
Constructor Details
#initialize(name, parent, exists = nil) ⇒ OrganizationInvitesEntry
Returns a new instance of OrganizationInvitesEntry.
16 17 18 19 |
# File 'lib/chef/chef_fs/file_system/chef_server/organization_invites_entry.rb', line 16 def initialize(name, parent, exists = nil) super(name, parent) @exists = exists end |
Instance Method Details
#api_path ⇒ Object
/organizations/foo/invites.json -> /organizations/foo/association_requests
26 27 28 |
# File 'lib/chef/chef_fs/file_system/chef_server/organization_invites_entry.rb', line 26 def api_path File.join(parent.api_path, "association_requests") end |
#data_handler ⇒ Object
21 22 23 |
# File 'lib/chef/chef_fs/file_system/chef_server/organization_invites_entry.rb', line 21 def data_handler Chef::ChefFS::DataHandler::OrganizationInvitesDataHandler.new end |
#delete(recurse) ⇒ Object
38 39 40 |
# File 'lib/chef/chef_fs/file_system/chef_server/organization_invites_entry.rb', line 38 def delete(recurse) raise Chef::ChefFS::FileSystem::OperationNotAllowedError.new(:delete, self) end |
#display_path ⇒ Object
30 31 32 |
# File 'lib/chef/chef_fs/file_system/chef_server/organization_invites_entry.rb', line 30 def display_path "/invitations.json" end |
#exists? ⇒ Boolean
34 35 36 |
# File 'lib/chef/chef_fs/file_system/chef_server/organization_invites_entry.rb', line 34 def exists? parent.exists? end |
#write(contents) ⇒ Object
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
# File 'lib/chef/chef_fs/file_system/chef_server/organization_invites_entry.rb', line 42 def write(contents) desired_invites = minimize_value(Chef::JSONCompat.parse(contents, create_additions: false)) actual_invites = _read_json.inject({}) { |h, val| h[val["username"]] = val["id"]; h } invites = actual_invites.keys (desired_invites - invites).each do |invite| rest.post(api_path, { "user" => invite }) rescue Net::HTTPClientException => e if e.response.code == "409" Chef::Log.warn("Could not invite #{invite} to organization #{org}: #{api_error_text(e.response)}") else raise end end (invites - desired_invites).each do |invite| rest.delete(File.join(api_path, actual_invites[invite])) end end |