Sha256: 02a1814cd73abe33570f1ca40913a819684a59c1cd93cb99c0fc8933347473c2

Contents?: true

Size: 1.28 KB

Versions: 26

Compression:

Stored size: 1.28 KB

Contents

#
# 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

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
chef-11.10.4.ohai7.0-x86-mingw32 lib/chef/server_api.rb
chef-11.10.4.ohai7.0 lib/chef/server_api.rb
chef-11.10.4 lib/chef/server_api.rb
chef-11.10.4-x86-mingw32 lib/chef/server_api.rb
chef-11.10.2-x86-mingw32 lib/chef/server_api.rb
chef-11.10.2 lib/chef/server_api.rb
chef-11.10.0-x86-mingw32 lib/chef/server_api.rb
chef-11.10.0 lib/chef/server_api.rb
chef-11.10.0.rc.1-x86-mingw32 lib/chef/server_api.rb
chef-11.10.0.rc.1 lib/chef/server_api.rb
chef-11.10.0.rc.0 lib/chef/server_api.rb
chef-11.10.0.rc.0-x86-mingw32 lib/chef/server_api.rb
chef-11.8.4.ohai7.0-x86-mingw32 lib/chef/server_api.rb
chef-11.8.4.ohai7.0 lib/chef/server_api.rb
chef-11.10.0.alpha.1-x86-mingw32 lib/chef/server_api.rb
chef-11.10.0.alpha.1 lib/chef/server_api.rb
chef-11.8.2 lib/chef/server_api.rb
chef-11.8.2-x86-mingw32 lib/chef/server_api.rb
chef-11.8.2.rc.0-x86-mingw32 lib/chef/server_api.rb
chef-11.8.2.rc.0 lib/chef/server_api.rb