diff options
author | John Keiser <jkeiser@opscode.com> | 2013-10-09 12:26:27 -0700 |
---|---|---|
committer | John Keiser <jkeiser@opscode.com> | 2013-10-09 12:26:27 -0700 |
commit | a5337fcad5ed979078b6cf57c7e1e6ec8f0b76cf (patch) | |
tree | 11a5e98513f9496d3ce15a823e7a84cd4d178f58 /lib/chef/server_api.rb | |
parent | 836705dee684032baa85920c808a3eca5f5a8a87 (diff) | |
download | chef-a5337fcad5ed979078b6cf57c7e1e6ec8f0b76cf.tar.gz |
Use new Chef::ServerAPI API class in upload/download/diff
Diffstat (limited to 'lib/chef/server_api.rb')
-rw-r--r-- | lib/chef/server_api.rb | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/lib/chef/server_api.rb b/lib/chef/server_api.rb new file mode 100644 index 0000000000..e9e7593dd6 --- /dev/null +++ b/lib/chef/server_api.rb @@ -0,0 +1,41 @@ +# +# Author:: John Keiser (<jkeiser@opscode.com>) +# Copyright:: Copyright (c) 2012 Opscode, Inc. +# License:: Apache License, Version 2.0 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +require 'chef/http' +require 'chef/http/authenticator' +require 'chef/http/cookie_manager' +require 'chef/http/decompressor' +require 'chef/http/json_input' +require 'chef/http/json_output' + +class Chef + class ServerAPI < Chef::HTTP + + def initialize(url = Chef::Config[:chef_server_url], options = {}) + options[:client_name] ||= Chef::Config[:node_name] + options[:signing_key_filename] ||= Chef::Config[:client_key] + super(url, options) + end + + use Chef::HTTP::JSONInput + use Chef::HTTP::JSONOutput + use Chef::HTTP::CookieManager + use Chef::HTTP::Decompressor + use Chef::HTTP::Authenticator + end +end
\ No newline at end of file |