Class: Puppet::Provider::Ldap

Inherits:
Puppet::Provider show all
Defined in:
lib/puppet/provider/ldap.rb

Overview

The base class for LDAP providers.

Class Attribute Summary collapse

Attributes inherited from Puppet::Provider

#model, #resource

Attributes included from Util::Docs

#doc, #nodoc

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Puppet::Provider

#clear, #command, command, commands, declared_feature?, default?, defaultfor, #get, initvars, make_command_methods, mk_resource_methods, mkmodelmethods, #name, optional_commands, #set, specificity, supports_parameter?, #to_s

Methods included from Util::Logging

#send_log

Methods included from Util

activerecord_version, benchmark, chuser, classproxy, #execfail, #execpipe, execute, logmethods, memory, proxy, recmkdir, secure_open, symbolize, symbolizehash, symbolizehash!, synchronize_on, thinmark, #threadlock, which, withumask

Methods included from Util::POSIX

#get_posix_field, #gid, #idfield, #methodbyid, #methodbyname, #search_posix_field, #uid

Methods included from Util::Docs

#desc, #dochook, #doctable, #nodoc?, #pad, scrub

Methods included from Util::Warnings

clear_warnings, notice_once, warnonce

Methods included from Confiner

#confine, #confine_collection, #suitable?

Methods included from Util::Errors

#adderrorcontext, #devfail, #error_context, #exceptwrap, #fail

Constructor Details

#initialize(*args) ⇒ Ldap

Returns a new instance of Ldap.

Raises:



72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# File 'lib/puppet/provider/ldap.rb', line 72

def initialize(*args)
  raise(Puppet::DevError, "No LDAP Configuration defined for #{self.class}") unless self.class.manager
  raise(Puppet::DevError, "Invalid LDAP Configuration defined for #{self.class}") unless self.class.manager.valid?
  super

  @property_hash = @property_hash.inject({}) do |result, ary|
    param, values = ary

    # Skip any attributes we don't manage.
    next result unless self.class.resource_type.valid_parameter?(param)

    paramclass = self.class.resource_type.attrclass(param)

    unless values.is_a?(Array)
      result[param] = values
      next result
    end

    # Only use the first value if the attribute class doesn't manage
    # arrays of values.
    if paramclass.superclass == Puppet::Parameter or paramclass.array_matching == :first
      result[param] = values[0]
    else
      result[param] = values
    end
    result
  end

  # Make a duplicate, so that we have a copy for comparison
  # at the end.
  @ldap_properties = @property_hash.dup
end

Class Attribute Details

.managerObject (readonly)

Returns the value of attribute manager.



8
9
10
# File 'lib/puppet/provider/ldap.rb', line 8

def manager
  @manager
end

Class Method Details

.instancesObject

Look up all instances at our location. Yay.



12
13
14
15
16
# File 'lib/puppet/provider/ldap.rb', line 12

def self.instances
  return [] unless list = manager.search

  list.collect { |entry| new(entry) }
end

.manages(*args) ⇒ Object

Specify the ldap manager for this provider, which is used to figure out how we actually interact with ldap.



20
21
22
23
24
25
26
27
# File 'lib/puppet/provider/ldap.rb', line 20

def self.manages(*args)
  @manager = Puppet::Util::Ldap::Manager.new
  @manager.manages(*args)

  # Set up our getter/setter methods.
  mk_resource_methods
  @manager
end

.prefetch(resources) ⇒ Object

Query all of our resources from ldap.



30
31
32
33
34
35
36
37
38
39
# File 'lib/puppet/provider/ldap.rb', line 30

def self.prefetch(resources)
  resources.each do |name, resource|
    if result = manager.find(name)
      result[:ensure] = :present
      resource.provider = new(result)
    else
      resource.provider = new(:ensure => :absent)
    end
  end
end

Instance Method Details

#createObject



45
46
47
48
49
50
51
52
# File 'lib/puppet/provider/ldap.rb', line 45

def create
  @property_hash[:ensure] = :present
  self.class.resource_type.validproperties.each do |property|
    if val = resource.should(property)
      @property_hash[property] = val
    end
  end
end

#deleteObject



54
55
56
# File 'lib/puppet/provider/ldap.rb', line 54

def delete
  @property_hash[:ensure] = :absent
end

#exists?Boolean

Returns:

  • (Boolean)


58
59
60
# File 'lib/puppet/provider/ldap.rb', line 58

def exists?
  @property_hash[:ensure] != :absent
end

#flushObject

Apply our changes to ldap, yo.



63
64
65
66
67
68
69
70
# File 'lib/puppet/provider/ldap.rb', line 63

def flush
  # Just call the manager's update() method.
  @property_hash.delete(:groups)
  @ldap_properties.delete(:groups)
  manager.update(name, ldap_properties, properties)
  @property_hash.clear
  @ldap_properties.clear
end

#ldap_propertiesObject

Return the current state of ldap.



106
107
108
# File 'lib/puppet/provider/ldap.rb', line 106

def ldap_properties
  @ldap_properties.dup
end

#managerObject



41
42
43
# File 'lib/puppet/provider/ldap.rb', line 41

def manager
  self.class.manager
end

#propertiesObject

Return (and look up if necessary) the desired state.



111
112
113
114
115
116
117
# File 'lib/puppet/provider/ldap.rb', line 111

def properties
  if @property_hash.empty?
    @property_hash = query || {:ensure => :absent}
    @property_hash[:ensure] = :absent if @property_hash.empty?
  end
  @property_hash.dup
end

#queryObject

Collect the current attributes from ldap. Returns the results, but also stores the attributes locally, so we have something to compare against when we update. LAK:NOTE This is normally not used, because we rely on prefetching.



123
124
125
126
127
128
129
130
131
132
# File 'lib/puppet/provider/ldap.rb', line 123

def query
  # Use the module function.
  unless attributes = manager.find(name)
    @ldap_properties = {}
    return nil
  end

  @ldap_properties = attributes
  @ldap_properties.dup
end