2006-05-01 07:27:29 +02:00
|
|
|
We're pleased to announce the first release of Net::LDAP, the first
|
|
|
|
pure-Ruby LDAP library. Net::LDAP intends to be a feature-complete
|
|
|
|
LDAP client which can access as much as possible of the functionality
|
2006-05-01 22:31:33 +02:00
|
|
|
of the most-used LDAP server implementations. This library does
|
|
|
|
not wrap any existing native-code LDAP libraries, creates no
|
2006-05-01 22:50:26 +02:00
|
|
|
Ruby extensions, and has no dependencies external to Ruby.
|
2006-05-01 07:27:29 +02:00
|
|
|
|
|
|
|
Net::LDAP includes a full implementation of the LDAP wire-line
|
|
|
|
protocol so it can also be used in LDAP server implementations.
|
|
|
|
|
|
|
|
Thanks for Austin Ziegler for invaluable help in reviewing the
|
|
|
|
implementation and providing the release structure.
|
2006-04-30 05:34:34 +02:00
|
|
|
|
|
|
|
= What is Net::LDAP for Ruby?
|
2006-05-01 07:27:29 +02:00
|
|
|
This library provides a pure-Ruby implementation of an LDAP client.
|
|
|
|
It can be used to access any server which implements the LDAP protocol.
|
|
|
|
|
|
|
|
Net::LDAP is intended to provide full LDAP functionality while hiding
|
|
|
|
the more arcane aspects of the LDAP protocol itself, so as to make the
|
|
|
|
programming interface as Ruby-like as possible.
|
|
|
|
|
|
|
|
In particular, this means that there is no direct dependence on the
|
|
|
|
structure of the various "traditional" LDAP clients. This is a ground-up
|
|
|
|
rethinking of the LDAP API.
|
|
|
|
|
|
|
|
Net::LDAP is based on RFC-1777, which specifies the Lightweight Directory
|
|
|
|
Access Protocol, as amended and extended by subsequent RFCs and by the more
|
|
|
|
widely-used directory implementations.
|
2006-04-30 05:34:34 +02:00
|
|
|
|
2006-05-01 20:07:42 +02:00
|
|
|
Homepage:: http://rubyforge.org/projects/net-ldap/
|
|
|
|
Download:: http://rubyforge.org/frs/?group_id=143
|
|
|
|
Copyright:: 2006 by Francis Cianfrocca
|
2006-04-30 05:34:34 +02:00
|
|
|
|
|
|
|
== LICENCE NOTES
|
2006-05-01 07:27:29 +02:00
|
|
|
Please read the file LICENCE for licensing restrictions on this library. In
|
|
|
|
the simplest terms, this library is available under the same terms as Ruby
|
|
|
|
itself.
|
2006-04-30 05:34:34 +02:00
|
|
|
|
|
|
|
== Requirements and Installation
|
|
|
|
Net::LDAP requires Ruby 1.8.2 or better.
|
|
|
|
|
|
|
|
Net::LDAP can be installed with:
|
|
|
|
|
|
|
|
% ruby setup.rb
|
|
|
|
|
|
|
|
Alternatively, you can use the RubyGems version of Net::LDAP available
|
|
|
|
as ruby-net-ldap-0.0.1.gem from the usual sources.
|
|
|
|
|
|
|
|
== Whet your appetite:
|
2006-05-01 07:27:29 +02:00
|
|
|
require 'net/ldap'
|
|
|
|
|
|
|
|
ldap = Net::LDAP.new :host => server_ip_address,
|
|
|
|
:port => 389,
|
|
|
|
:auth => {
|
|
|
|
:method => :simple,
|
|
|
|
:username => "cn=manager,dc=example,dc=com",
|
|
|
|
:password => "opensesame"
|
|
|
|
}
|
|
|
|
|
|
|
|
filter = Net::LDAP::Filter.eq( "cn", "George*" )
|
|
|
|
treebase = "dc=example,dc=com"
|
|
|
|
|
|
|
|
ldap.search( :base => treebase, :filter => filter ) do |entry|
|
|
|
|
puts "DN: #{entry.dn}"
|
|
|
|
entry.each do |attribute, values|
|
|
|
|
puts " #{attribute}:"
|
|
|
|
values.each do |value|
|
|
|
|
puts " --->#{value}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
p ldap.get_operation_result
|
2006-04-30 05:34:34 +02:00
|
|
|
|
2006-05-01 19:49:34 +02:00
|
|
|
== Net::LDAP 0.0.1: May 1, 2006
|
|
|
|
* Initial release.
|
|
|
|
* Client functionality is near-complete, although the APIs
|
|
|
|
are not guaranteed and may change depending on feedback
|
|
|
|
from the community.
|
|
|
|
* We're internally working on a Ruby-based implementation
|
|
|
|
of a full-featured, production-quality LDAP server,
|
|
|
|
which will leverage the underlying LDAP and BER functionality
|
|
|
|
in Net::LDAP.
|
|
|
|
* Please tell us if you would be interested in seeing a public
|
|
|
|
release of the LDAP server.
|
|
|
|
* Grateful acknowledgement to Austin Ziegler, who reviewed
|
|
|
|
this code and provided the release framework, including
|
|
|
|
minitar.
|
2006-04-30 05:34:34 +02:00
|
|
|
|