Class: ChefZero::Endpoints::EnvironmentEndpoint

Inherits:
RestObjectEndpoint show all
Defined in:
lib/chef_zero/endpoints/environment_endpoint.rb

Overview

/environments/NAME

Constant Summary

Constants inherited from RestBase

RestBase::DEFAULT_REQUEST_VERSION, RestBase::DEFAULT_RESPONSE_VERSION

Instance Attribute Summary

Attributes inherited from RestObjectEndpoint

#identity_keys

Attributes inherited from RestBase

#server

Instance Method Summary collapse

Methods inherited from RestObjectEndpoint

#get, #initialize, #patch_request_body

Methods inherited from RestBase

#accepts?, #already_json_response, #build_uri, build_uri, #call, #check_api_version, #create_data, #create_data_dir, #data_store, #delete_data, #delete_data_dir, #error, #exists_data?, #exists_data_dir?, #get_data, #get_data_or_else, #hashify_list, #head_request, #initialize, #json_only, #json_response, #list_data, #list_data_or_else, #parse_json, #policy_name_invalid?, rfc2396_parser, #set_data, #text_response, #to_json

Constructor Details

This class inherits a constructor from ChefZero::Endpoints::RestObjectEndpoint

Instance Method Details

#delete(request) ⇒ Object



9
10
11
12
13
14
15
16
# File 'lib/chef_zero/endpoints/environment_endpoint.rb', line 9

def delete(request)
  if request.rest_path[3] == "_default"
    # 405, really?
    error(405, "The '_default' environment cannot be modified.")
  else
    super(request)
  end
end

#populate_defaults(request, response_json) ⇒ Object



26
27
28
29
30
# File 'lib/chef_zero/endpoints/environment_endpoint.rb', line 26

def populate_defaults(request, response_json)
  response = FFI_Yajl::Parser.parse(response_json)
  response = ChefData::DataNormalizer.normalize_environment(response, request.rest_path[3])
  FFI_Yajl::Encoder.encode(response, pretty: true)
end

#put(request) ⇒ Object



18
19
20
21
22
23
24
# File 'lib/chef_zero/endpoints/environment_endpoint.rb', line 18

def put(request)
  if request.rest_path[3] == "_default"
    error(405, "The '_default' environment cannot be modified.")
  else
    super(request)
  end
end