Sha256: 04424330073e3128846d1b763d240dd77468ec92ab48bf814a9a9943454ba9ef

Contents?: true

Size: 1.28 KB

Versions: 10

Compression:

Stored size: 1.28 KB

Contents

module Ridley
  class UserObject < Ridley::ChefObject
    set_chef_id "name"
    set_chef_type "user"
    set_chef_json_class "Chef::User"

    attribute :name,
      type: String,
      required: true

    attribute :admin,
      type: Boolean,
      required: true,
      default: false

    attribute :certificate,
      type: String

    attribute :public_key,
      type: String

    attribute :private_key,
      type: [ String, Boolean ],
      default: false

    attribute :password,
      type: String

    attribute :orgname,
      type: String

    # Regenerates the private key of the instantiated user object. The new
    # private key will be set to the value of the 'private_key' accessor
    # of the instantiated user object.
    #
    # @return [Boolean]
    #   true for success and false for failure
    def regenerate_key
      self.private_key = true
      self.save
    end

    def authenticate(password)
      @resource.authenticate(self.chef_id, password)
    end

    # Override to_json to reflect to massage the returned attributes based on the type
    # of connection. Only OHC/OPC requires the json_class attribute is not present.
    def to_json
      if resource.connection.hosted?
        to_hash.except(:json_class).to_json
      else
        super
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
ridley-3.1.0 lib/ridley/chef_objects/user_object.rb
ridley-3.0.0 lib/ridley/chef_objects/user_object.rb
ridley-3.0.0.rc1 lib/ridley/chef_objects/user_object.rb
ridley-2.5.1 lib/ridley/chef_objects/user_object.rb
ridley-2.5.0 lib/ridley/chef_objects/user_object.rb
ridley-2.4.4 lib/ridley/chef_objects/user_object.rb
ridley-2.4.3 lib/ridley/chef_objects/user_object.rb
ridley-2.4.2 lib/ridley/chef_objects/user_object.rb
ridley-2.4.1 lib/ridley/chef_objects/user_object.rb
ridley-2.4.0 lib/ridley/chef_objects/user_object.rb