charanya-devise_ldap_authenticatable 0.4.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +6 -0
- data/MIT-LICENSE +20 -0
- data/README.md +175 -0
- data/Rakefile +54 -0
- data/VERSION +1 -0
- data/charanya-devise_ldap_authenticatable.gemspec +173 -0
- data/lib/devise_ldap_authenticatable.rb +45 -0
- data/lib/devise_ldap_authenticatable/exception.rb +6 -0
- data/lib/devise_ldap_authenticatable/ldap_adapter.rb +237 -0
- data/lib/devise_ldap_authenticatable/logger.rb +11 -0
- data/lib/devise_ldap_authenticatable/model.rb +118 -0
- data/lib/devise_ldap_authenticatable/routes.rb +8 -0
- data/lib/devise_ldap_authenticatable/schema.rb +14 -0
- data/lib/devise_ldap_authenticatable/strategy.rb +36 -0
- data/lib/devise_ldap_authenticatable/version.rb +4 -0
- data/lib/generators/devise_ldap_authenticatable/install_generator.rb +61 -0
- data/lib/generators/devise_ldap_authenticatable/templates/ldap.yml +75 -0
- data/rails/init.rb +2 -0
- data/test/devise_ldap_authenticatable_test.rb +8 -0
- data/test/ldap/base.ldif +73 -0
- data/test/ldap/clear.ldif +26 -0
- data/test/ldap/local.schema +6 -0
- data/test/ldap/run-server.sh +10 -0
- data/test/ldap/server.pem +38 -0
- data/test/ldap/slapd-ssl-test.conf +107 -0
- data/test/ldap/slapd-test.conf +107 -0
- data/test/rails_app/Gemfile +22 -0
- data/test/rails_app/Gemfile.lock +157 -0
- data/test/rails_app/Rakefile +7 -0
- data/test/rails_app/app/controllers/application_controller.rb +4 -0
- data/test/rails_app/app/controllers/posts_controller.rb +15 -0
- data/test/rails_app/app/helpers/application_helper.rb +2 -0
- data/test/rails_app/app/helpers/posts_helper.rb +2 -0
- data/test/rails_app/app/models/post.rb +2 -0
- data/test/rails_app/app/models/user.rb +10 -0
- data/test/rails_app/app/views/layouts/application.html.erb +26 -0
- data/test/rails_app/app/views/posts/index.html.erb +2 -0
- data/test/rails_app/config.ru +4 -0
- data/test/rails_app/config/application.rb +46 -0
- data/test/rails_app/config/boot.rb +13 -0
- data/test/rails_app/config/cucumber.yml +8 -0
- data/test/rails_app/config/database.yml +25 -0
- data/test/rails_app/config/environment.rb +5 -0
- data/test/rails_app/config/environments/development.rb +22 -0
- data/test/rails_app/config/environments/production.rb +46 -0
- data/test/rails_app/config/environments/test.rb +34 -0
- data/test/rails_app/config/initializers/backtrace_silencers.rb +7 -0
- data/test/rails_app/config/initializers/devise.rb +140 -0
- data/test/rails_app/config/initializers/inflections.rb +10 -0
- data/test/rails_app/config/initializers/mime_types.rb +5 -0
- data/test/rails_app/config/initializers/secret_token.rb +7 -0
- data/test/rails_app/config/initializers/session_store.rb +8 -0
- data/test/rails_app/config/ldap.yml +22 -0
- data/test/rails_app/config/ldap_with_erb.yml +23 -0
- data/test/rails_app/config/ldap_with_uid.yml +18 -0
- data/test/rails_app/config/locales/devise.en.yml +39 -0
- data/test/rails_app/config/locales/en.yml +5 -0
- data/test/rails_app/config/routes.rb +64 -0
- data/test/rails_app/config/ssl_ldap.yml +21 -0
- data/test/rails_app/config/ssl_ldap_with_erb.yml +23 -0
- data/test/rails_app/config/ssl_ldap_with_uid.yml +18 -0
- data/test/rails_app/db/migrate/20100708120302_create_posts.rb +14 -0
- data/test/rails_app/db/migrate/20100708120448_devise_create_users.rb +26 -0
- data/test/rails_app/db/schema.rb +42 -0
- data/test/rails_app/db/seeds.rb +7 -0
- data/test/rails_app/features/manage_logins.feature +35 -0
- data/test/rails_app/features/step_definitions/login_steps.rb +21 -0
- data/test/rails_app/features/step_definitions/web_steps.rb +219 -0
- data/test/rails_app/features/support/env.rb +58 -0
- data/test/rails_app/features/support/paths.rb +38 -0
- data/test/rails_app/lib/tasks/.gitkeep +0 -0
- data/test/rails_app/lib/tasks/cucumber.rake +53 -0
- data/test/rails_app/public/404.html +26 -0
- data/test/rails_app/public/422.html +26 -0
- data/test/rails_app/public/500.html +26 -0
- data/test/rails_app/public/images/rails.png +0 -0
- data/test/rails_app/public/javascripts/application.js +2 -0
- data/test/rails_app/public/javascripts/controls.js +965 -0
- data/test/rails_app/public/javascripts/dragdrop.js +974 -0
- data/test/rails_app/public/javascripts/effects.js +1123 -0
- data/test/rails_app/public/javascripts/prototype.js +4874 -0
- data/test/rails_app/public/javascripts/rails.js +118 -0
- data/test/rails_app/public/stylesheets/.gitkeep +0 -0
- data/test/rails_app/script/cucumber +10 -0
- data/test/rails_app/script/rails +6 -0
- data/test/rails_app/test/factories/users.rb +14 -0
- data/test/rails_app/test/functional/posts_controller_test.rb +58 -0
- data/test/rails_app/test/performance/browsing_test.rb +9 -0
- data/test/rails_app/test/test_helper.rb +36 -0
- data/test/rails_app/test/unit/helpers/posts_helper_test.rb +4 -0
- data/test/rails_app/test/unit/post_test.rb +4 -0
- data/test/rails_app/test/unit/user_test.rb +211 -0
- data/test/test_helper.rb +3 -0
- metadata +217 -0
data/.gitignore
ADDED
data/MIT-LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2010 Curtis Schiewek
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,175 @@
|
|
1
|
+
Charanya-Devise LDAP Authenticatable
|
2
|
+
===========================
|
3
|
+
|
4
|
+
Modifications done to Devise LDAP Authenticatable gem to cater to the needs of my application.
|
5
|
+
Test Application is not yet been updated.It is based on the original version of the gem.
|
6
|
+
|
7
|
+
Devise LDAP Authenticatable
|
8
|
+
===========================
|
9
|
+
|
10
|
+
Devise LDAP Authenticatable is a LDAP based authentication strategy for the [Devise](http://github.com/plataformatec/devise) authentication framework.
|
11
|
+
|
12
|
+
If you are building applications for use within your organization which require authentication and you want to use LDAP, this plugin is for you.
|
13
|
+
|
14
|
+
For a screencast with an example application, please visit: [http://random-rails.blogspot.com/2010/07/ldap-authentication-with-devise.html](http://random-rails.blogspot.com/2010/07/ldap-authentication-with-devise.html)
|
15
|
+
|
16
|
+
**_Please Note_**
|
17
|
+
|
18
|
+
If you are using rails 2.x then use 0.1.x series of gem, and see the rails2 branch README for instructions.
|
19
|
+
|
20
|
+
Requirements
|
21
|
+
------------
|
22
|
+
|
23
|
+
- An LDAP server (tested on OpenLDAP)
|
24
|
+
- Rails 3.0.0
|
25
|
+
|
26
|
+
These gems are dependencies of the gem:
|
27
|
+
|
28
|
+
- Devise >= Version 1.1.2
|
29
|
+
- net-ldap >= Version 0.1.1
|
30
|
+
|
31
|
+
Installation
|
32
|
+
------------
|
33
|
+
|
34
|
+
**_Please Note_**
|
35
|
+
|
36
|
+
This will *only* work for Rails 3 applications.
|
37
|
+
|
38
|
+
In the Gemfile for your application:
|
39
|
+
|
40
|
+
gem "devise"
|
41
|
+
gem "charanya-devise_ldap_authenticatable"
|
42
|
+
|
43
|
+
|
44
|
+
Setup
|
45
|
+
-----
|
46
|
+
|
47
|
+
Run the rails generators for devise (please check the [devise](http://github.com/plataformatec/devise) documents for further instructions)
|
48
|
+
|
49
|
+
rails generate devise:install
|
50
|
+
rails generate devise MODEL_NAME
|
51
|
+
|
52
|
+
Run the rails generator for devise_ldap_authenticatable
|
53
|
+
|
54
|
+
rails generate devise_ldap_authenticatable:install [options]
|
55
|
+
|
56
|
+
This will install the sample.yml, update the devise.rb initializer, and update your user model. There are some options you can pass to it:
|
57
|
+
|
58
|
+
Options:
|
59
|
+
|
60
|
+
[--user-model=USER_MODEL] # Model to update
|
61
|
+
# Default: user
|
62
|
+
[--update-model] # Update model to change from database_authenticatable to ldap_authenticatable
|
63
|
+
# Default: true
|
64
|
+
[--add-rescue] # Update Application Controller with resuce_from for DeviseLdapAuthenticatable::LdapException
|
65
|
+
# Default: true
|
66
|
+
[--advanced] # Add advanced config options to the devise initializer
|
67
|
+
|
68
|
+
|
69
|
+
Usage
|
70
|
+
-----
|
71
|
+
|
72
|
+
Devise LDAP Authenticatable works in replacement of Database Authenticatable
|
73
|
+
|
74
|
+
**_Please Note_**
|
75
|
+
|
76
|
+
This devise plugin has not been tested with DatabaseAuthenticatable enabled at the same time. This is meant as a drop in replacement for DatabaseAuthenticatable allowing for a semi single sign on approach.
|
77
|
+
|
78
|
+
The field that is used for logins is the first key that's configured in the `config/devise.rb` file under `config.authentication_keys`, which by default is email. For help changing this, please see the [Railscast](http://railscasts.com/episodes/210-customizing-devise) that goes through how to customize Devise.
|
79
|
+
|
80
|
+
Configuration
|
81
|
+
-------------
|
82
|
+
|
83
|
+
In initializer `config/initializers/devise.rb` :
|
84
|
+
|
85
|
+
* ldap\_logger _(default: true)_
|
86
|
+
* If set to true, will log LDAP queries to the Rails logger.
|
87
|
+
|
88
|
+
* ldap\_create\_user _(default: false)_
|
89
|
+
* If set to true, all valid LDAP users will be allowed to login and an appropriate user record will be created.
|
90
|
+
If set to false, you will have to create the user record before they will be allowed to login.
|
91
|
+
|
92
|
+
* ldap\_config _(default: #{Rails.root}/config/ldap.yml)_
|
93
|
+
* Where to find the LDAP config file. Commented out to use the default, change if needed.
|
94
|
+
|
95
|
+
* ldap\_update\_password _(default: true)_
|
96
|
+
* When doing password resets, if true will update the LDAP server. Requires admin password in the ldap.yml
|
97
|
+
|
98
|
+
* ldap\_check\_group_membership _(default: false)_
|
99
|
+
* When set to true, the user trying to login will be checked to make sure they are in all of groups specified in the ldap.yml file.
|
100
|
+
|
101
|
+
* ldap\_check\_attributes _(default: false)_
|
102
|
+
* When set to true, the user trying to login will be checked to make sure they have all of the attributes in the ldap.yml file.
|
103
|
+
|
104
|
+
* ldap\_use\_admin\_to\_bind _(default: false)_
|
105
|
+
* When set to true, the admin user will be used to bind to the LDAP server during authentication.
|
106
|
+
|
107
|
+
|
108
|
+
Advanced Configuration
|
109
|
+
----------------------
|
110
|
+
|
111
|
+
These parameters will be added to `config/initializers/devise.rb` when you pass the `--advanced` switch to the generator:
|
112
|
+
|
113
|
+
* ldap\_auth\_username\_builder _(default: `Proc.new() {|attribute, login, ldap| "#{attribute}=#{login},#{ldap.base}" }`)_
|
114
|
+
* You can pass a proc to the username option to explicitly specify the format that you search for a users' DN on your LDAP server.
|
115
|
+
|
116
|
+
Testing
|
117
|
+
-------
|
118
|
+
|
119
|
+
The Test Application belongs to the original version of the Gem.
|
120
|
+
Not Tested with the modifications done.
|
121
|
+
|
122
|
+
This has been tested using the following setup:
|
123
|
+
|
124
|
+
* Mac OSX 10.6
|
125
|
+
* OpenLDAP 2.4.11
|
126
|
+
* REE 1.8.7 (2010.02)
|
127
|
+
|
128
|
+
All unit and functional tests are part of a sample rails application under test/rails_app and requires a working LDAP sever.
|
129
|
+
|
130
|
+
Build / Start Instructions for Test LDAP Server
|
131
|
+
-----------------------------------------------
|
132
|
+
|
133
|
+
Make sure that directories test/ldap/openldap-data and test/ldap/openldap-data/run exist.
|
134
|
+
|
135
|
+
1. To start the server, run `./run_server.sh`
|
136
|
+
2. Add the basic structure: `ldapadd -x -h localhost -p 3389 -x -D "cn=admin,dc=test,dc=com" -w secret -f base.ldif`
|
137
|
+
* this creates the users / passwords:
|
138
|
+
* cn=admin,dc=test,com / secret
|
139
|
+
* cn=example.user@test.com,ou=people,dc=test,dc=com / secret
|
140
|
+
3. You should now be able to run the tests in test/rails_app by running: `rake`
|
141
|
+
|
142
|
+
_For a LDAP server running SSL_
|
143
|
+
|
144
|
+
1. To start the server, run: `./run_server.sh --ssl`
|
145
|
+
2. Add the basic structure: `ldapadd -x -H ldaps://localhost:3389 -x -D "cn=admin,dc=test,dc=com" -w secret -f base.ldif`
|
146
|
+
* this creates the users / passwords:
|
147
|
+
* cn=admin,dc=test,com / secret
|
148
|
+
* cn=example.user@test.com,ou=people,dc=test,dc=com / secret
|
149
|
+
3. You should now be able to run the tests in test/rails_app by running: `LDAP_SSL=true rake`
|
150
|
+
|
151
|
+
**_Please Note_**
|
152
|
+
|
153
|
+
In your system LDAP config file (on OSX it's /etc/openldap/ldap.conf) make sure you have the following setting:
|
154
|
+
|
155
|
+
TLS_REQCERT never
|
156
|
+
|
157
|
+
This will allow requests to go to the test LDAP server without being signed by a trusted root (it uses a self-signed cert)
|
158
|
+
|
159
|
+
References
|
160
|
+
----------
|
161
|
+
|
162
|
+
* [OpenLDAP](http://www.openldap.org/)
|
163
|
+
* [Devise](http://github.com/plataformatec/devise)
|
164
|
+
* [Warden](http://github.com/hassox/warden)
|
165
|
+
|
166
|
+
|
167
|
+
TODO
|
168
|
+
----
|
169
|
+
|
170
|
+
View on [Pivotal Tracker](http://www.pivotaltracker.com/projects/97318).
|
171
|
+
|
172
|
+
Released under the MIT license
|
173
|
+
|
174
|
+
Copyright (c) 2010 Curtis Schiewek, Daniel McNevin
|
175
|
+
|
data/Rakefile
ADDED
@@ -0,0 +1,54 @@
|
|
1
|
+
require 'rake'
|
2
|
+
require 'rake/testtask'
|
3
|
+
require 'rake/rdoctask'
|
4
|
+
|
5
|
+
desc 'Default: run unit tests.'
|
6
|
+
task :default => :test
|
7
|
+
|
8
|
+
desc 'Test the devise_imapable plugin.'
|
9
|
+
Rake::TestTask.new(:test) do |t|
|
10
|
+
# t.libs << 'lib'
|
11
|
+
# t.libs << 'test'
|
12
|
+
# t.pattern = 'test/**/*_test.rb'
|
13
|
+
# t.verbose = true
|
14
|
+
puts <<-eof
|
15
|
+
|
16
|
+
*** NOTICE ***
|
17
|
+
The Tests are based on the original Version of the gem.
|
18
|
+
Have not been tested with the application specific modifications done to the gem.
|
19
|
+
|
20
|
+
All tests are done in the sample Rails app.
|
21
|
+
|
22
|
+
Please go to test/rails_app and run the tests there.
|
23
|
+
|
24
|
+
Make sure to bundle install and rake db:migrate
|
25
|
+
|
26
|
+
eof
|
27
|
+
end
|
28
|
+
|
29
|
+
desc 'Generate documentation for the devise_ldap_authenticatable plugin.'
|
30
|
+
Rake::RDocTask.new(:rdoc) do |rdoc|
|
31
|
+
rdoc.rdoc_dir = 'rdoc'
|
32
|
+
rdoc.title = 'DeviseLDAPAuthenticatable'
|
33
|
+
rdoc.options << '--line-numbers' << '--inline-source'
|
34
|
+
rdoc.rdoc_files.include('README')
|
35
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
36
|
+
end
|
37
|
+
|
38
|
+
|
39
|
+
begin
|
40
|
+
require 'jeweler'
|
41
|
+
Jeweler::Tasks.new do |gemspec|
|
42
|
+
gemspec.name = "charanya-devise_ldap_authenticatable"
|
43
|
+
gemspec.summary = "LDAP authentication module for Devise "
|
44
|
+
gemspec.description = "LDAP authentication module for Devise"
|
45
|
+
gemspec.email = "curtis.schiewek@gmail.com"
|
46
|
+
gemspec.homepage = "http://github.com/cschiewek/devise_ldap_authenticatable"
|
47
|
+
gemspec.authors = ["Curtis Schiewek", "Daniel McNevin"]
|
48
|
+
gemspec.add_runtime_dependency "devise", "~>1.1.2"
|
49
|
+
gemspec.add_runtime_dependency "net-ldap", "~>0.1.1"
|
50
|
+
end
|
51
|
+
Jeweler::GemcutterTasks.new
|
52
|
+
rescue LoadError
|
53
|
+
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
|
54
|
+
end
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.4.6
|
@@ -0,0 +1,173 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{charanya-devise_ldap_authenticatable}
|
8
|
+
s.version = "0.4.6"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Curtis Schiewek", "Daniel McNevin"]
|
12
|
+
s.date = %q{2010-09-23}
|
13
|
+
s.description = %q{LDAP authentication module for Devise}
|
14
|
+
s.email = %q{curtis.schiewek@gmail.com}
|
15
|
+
s.extra_rdoc_files = [
|
16
|
+
"README.md"
|
17
|
+
]
|
18
|
+
s.files = [
|
19
|
+
".gitignore",
|
20
|
+
"MIT-LICENSE",
|
21
|
+
"README.md",
|
22
|
+
"Rakefile",
|
23
|
+
"VERSION",
|
24
|
+
"charanya-devise_ldap_authenticatable.gemspec",
|
25
|
+
"lib/devise_ldap_authenticatable.rb",
|
26
|
+
"lib/devise_ldap_authenticatable/exception.rb",
|
27
|
+
"lib/devise_ldap_authenticatable/ldap_adapter.rb",
|
28
|
+
"lib/devise_ldap_authenticatable/logger.rb",
|
29
|
+
"lib/devise_ldap_authenticatable/model.rb",
|
30
|
+
"lib/devise_ldap_authenticatable/routes.rb",
|
31
|
+
"lib/devise_ldap_authenticatable/schema.rb",
|
32
|
+
"lib/devise_ldap_authenticatable/strategy.rb",
|
33
|
+
"lib/devise_ldap_authenticatable/version.rb",
|
34
|
+
"lib/generators/devise_ldap_authenticatable/install_generator.rb",
|
35
|
+
"lib/generators/devise_ldap_authenticatable/templates/ldap.yml",
|
36
|
+
"rails/init.rb",
|
37
|
+
"test/devise_ldap_authenticatable_test.rb",
|
38
|
+
"test/ldap/base.ldif",
|
39
|
+
"test/ldap/clear.ldif",
|
40
|
+
"test/ldap/local.schema",
|
41
|
+
"test/ldap/run-server.sh",
|
42
|
+
"test/ldap/server.pem",
|
43
|
+
"test/ldap/slapd-ssl-test.conf",
|
44
|
+
"test/ldap/slapd-test.conf",
|
45
|
+
"test/rails_app/Gemfile",
|
46
|
+
"test/rails_app/Gemfile.lock",
|
47
|
+
"test/rails_app/Rakefile",
|
48
|
+
"test/rails_app/app/controllers/application_controller.rb",
|
49
|
+
"test/rails_app/app/controllers/posts_controller.rb",
|
50
|
+
"test/rails_app/app/helpers/application_helper.rb",
|
51
|
+
"test/rails_app/app/helpers/posts_helper.rb",
|
52
|
+
"test/rails_app/app/models/post.rb",
|
53
|
+
"test/rails_app/app/models/user.rb",
|
54
|
+
"test/rails_app/app/views/layouts/application.html.erb",
|
55
|
+
"test/rails_app/app/views/posts/index.html.erb",
|
56
|
+
"test/rails_app/config.ru",
|
57
|
+
"test/rails_app/config/application.rb",
|
58
|
+
"test/rails_app/config/boot.rb",
|
59
|
+
"test/rails_app/config/cucumber.yml",
|
60
|
+
"test/rails_app/config/database.yml",
|
61
|
+
"test/rails_app/config/environment.rb",
|
62
|
+
"test/rails_app/config/environments/development.rb",
|
63
|
+
"test/rails_app/config/environments/production.rb",
|
64
|
+
"test/rails_app/config/environments/test.rb",
|
65
|
+
"test/rails_app/config/initializers/backtrace_silencers.rb",
|
66
|
+
"test/rails_app/config/initializers/devise.rb",
|
67
|
+
"test/rails_app/config/initializers/inflections.rb",
|
68
|
+
"test/rails_app/config/initializers/mime_types.rb",
|
69
|
+
"test/rails_app/config/initializers/secret_token.rb",
|
70
|
+
"test/rails_app/config/initializers/session_store.rb",
|
71
|
+
"test/rails_app/config/ldap.yml",
|
72
|
+
"test/rails_app/config/ldap_with_erb.yml",
|
73
|
+
"test/rails_app/config/ldap_with_uid.yml",
|
74
|
+
"test/rails_app/config/locales/devise.en.yml",
|
75
|
+
"test/rails_app/config/locales/en.yml",
|
76
|
+
"test/rails_app/config/routes.rb",
|
77
|
+
"test/rails_app/config/ssl_ldap.yml",
|
78
|
+
"test/rails_app/config/ssl_ldap_with_erb.yml",
|
79
|
+
"test/rails_app/config/ssl_ldap_with_uid.yml",
|
80
|
+
"test/rails_app/db/migrate/20100708120302_create_posts.rb",
|
81
|
+
"test/rails_app/db/migrate/20100708120448_devise_create_users.rb",
|
82
|
+
"test/rails_app/db/schema.rb",
|
83
|
+
"test/rails_app/db/seeds.rb",
|
84
|
+
"test/rails_app/features/manage_logins.feature",
|
85
|
+
"test/rails_app/features/step_definitions/login_steps.rb",
|
86
|
+
"test/rails_app/features/step_definitions/web_steps.rb",
|
87
|
+
"test/rails_app/features/support/env.rb",
|
88
|
+
"test/rails_app/features/support/paths.rb",
|
89
|
+
"test/rails_app/lib/tasks/.gitkeep",
|
90
|
+
"test/rails_app/lib/tasks/cucumber.rake",
|
91
|
+
"test/rails_app/public/404.html",
|
92
|
+
"test/rails_app/public/422.html",
|
93
|
+
"test/rails_app/public/500.html",
|
94
|
+
"test/rails_app/public/images/rails.png",
|
95
|
+
"test/rails_app/public/javascripts/application.js",
|
96
|
+
"test/rails_app/public/javascripts/controls.js",
|
97
|
+
"test/rails_app/public/javascripts/dragdrop.js",
|
98
|
+
"test/rails_app/public/javascripts/effects.js",
|
99
|
+
"test/rails_app/public/javascripts/prototype.js",
|
100
|
+
"test/rails_app/public/javascripts/rails.js",
|
101
|
+
"test/rails_app/public/stylesheets/.gitkeep",
|
102
|
+
"test/rails_app/script/cucumber",
|
103
|
+
"test/rails_app/script/rails",
|
104
|
+
"test/rails_app/test/factories/users.rb",
|
105
|
+
"test/rails_app/test/functional/posts_controller_test.rb",
|
106
|
+
"test/rails_app/test/performance/browsing_test.rb",
|
107
|
+
"test/rails_app/test/test_helper.rb",
|
108
|
+
"test/rails_app/test/unit/helpers/posts_helper_test.rb",
|
109
|
+
"test/rails_app/test/unit/post_test.rb",
|
110
|
+
"test/rails_app/test/unit/user_test.rb",
|
111
|
+
"test/test_helper.rb"
|
112
|
+
]
|
113
|
+
s.homepage = %q{http://github.com/cschiewek/devise_ldap_authenticatable}
|
114
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
115
|
+
s.require_paths = ["lib"]
|
116
|
+
s.rubygems_version = %q{1.3.7}
|
117
|
+
s.summary = %q{LDAP authentication module for Devise}
|
118
|
+
s.test_files = [
|
119
|
+
"test/devise_ldap_authenticatable_test.rb",
|
120
|
+
"test/rails_app/app/controllers/application_controller.rb",
|
121
|
+
"test/rails_app/app/controllers/posts_controller.rb",
|
122
|
+
"test/rails_app/app/helpers/application_helper.rb",
|
123
|
+
"test/rails_app/app/helpers/posts_helper.rb",
|
124
|
+
"test/rails_app/app/models/post.rb",
|
125
|
+
"test/rails_app/app/models/user.rb",
|
126
|
+
"test/rails_app/config/application.rb",
|
127
|
+
"test/rails_app/config/boot.rb",
|
128
|
+
"test/rails_app/config/environment.rb",
|
129
|
+
"test/rails_app/config/environments/development.rb",
|
130
|
+
"test/rails_app/config/environments/production.rb",
|
131
|
+
"test/rails_app/config/environments/test.rb",
|
132
|
+
"test/rails_app/config/initializers/backtrace_silencers.rb",
|
133
|
+
"test/rails_app/config/initializers/devise.rb",
|
134
|
+
"test/rails_app/config/initializers/inflections.rb",
|
135
|
+
"test/rails_app/config/initializers/mime_types.rb",
|
136
|
+
"test/rails_app/config/initializers/secret_token.rb",
|
137
|
+
"test/rails_app/config/initializers/session_store.rb",
|
138
|
+
"test/rails_app/config/routes.rb",
|
139
|
+
"test/rails_app/db/migrate/20100708120302_create_posts.rb",
|
140
|
+
"test/rails_app/db/migrate/20100708120448_devise_create_users.rb",
|
141
|
+
"test/rails_app/db/schema.rb",
|
142
|
+
"test/rails_app/db/seeds.rb",
|
143
|
+
"test/rails_app/features/step_definitions/login_steps.rb",
|
144
|
+
"test/rails_app/features/step_definitions/web_steps.rb",
|
145
|
+
"test/rails_app/features/support/env.rb",
|
146
|
+
"test/rails_app/features/support/paths.rb",
|
147
|
+
"test/rails_app/test/factories/users.rb",
|
148
|
+
"test/rails_app/test/functional/posts_controller_test.rb",
|
149
|
+
"test/rails_app/test/performance/browsing_test.rb",
|
150
|
+
"test/rails_app/test/test_helper.rb",
|
151
|
+
"test/rails_app/test/unit/helpers/posts_helper_test.rb",
|
152
|
+
"test/rails_app/test/unit/post_test.rb",
|
153
|
+
"test/rails_app/test/unit/user_test.rb",
|
154
|
+
"test/test_helper.rb"
|
155
|
+
]
|
156
|
+
|
157
|
+
if s.respond_to? :specification_version then
|
158
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
159
|
+
s.specification_version = 3
|
160
|
+
|
161
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
162
|
+
s.add_runtime_dependency(%q<devise>, [">= 1.1.2"])
|
163
|
+
s.add_runtime_dependency(%q<net-ldap>, [">= 0.1.1"])
|
164
|
+
else
|
165
|
+
s.add_dependency(%q<devise>, [">= 1.1.2"])
|
166
|
+
s.add_dependency(%q<net-ldap>, [">= 0.1.1"])
|
167
|
+
end
|
168
|
+
else
|
169
|
+
s.add_dependency(%q<devise>, [">= 1.1.2"])
|
170
|
+
s.add_dependency(%q<net-ldap>, [">= 0.1.1"])
|
171
|
+
end
|
172
|
+
end
|
173
|
+
|
@@ -0,0 +1,45 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
require 'devise'
|
3
|
+
|
4
|
+
require 'devise_ldap_authenticatable/exception'
|
5
|
+
require 'devise_ldap_authenticatable/logger'
|
6
|
+
require 'devise_ldap_authenticatable/schema'
|
7
|
+
require 'devise_ldap_authenticatable/ldap_adapter'
|
8
|
+
require 'devise_ldap_authenticatable/routes'
|
9
|
+
|
10
|
+
# Get ldap information from config/ldap.yml now
|
11
|
+
module Devise
|
12
|
+
# Allow logging
|
13
|
+
mattr_accessor :ldap_logger
|
14
|
+
@@ldap_logger = true
|
15
|
+
|
16
|
+
# Add valid users to database
|
17
|
+
mattr_accessor :ldap_create_user
|
18
|
+
@@ldap_create_user = false
|
19
|
+
|
20
|
+
mattr_accessor :ldap_config
|
21
|
+
# @@ldap_config = "#{Rails.root}/config/ldap.yml"
|
22
|
+
|
23
|
+
mattr_accessor :ldap_update_password
|
24
|
+
@@ldap_update_password = true
|
25
|
+
|
26
|
+
mattr_accessor :ldap_check_group_membership
|
27
|
+
@@ldap_check_group_membership = false
|
28
|
+
|
29
|
+
mattr_accessor :ldap_check_attributes
|
30
|
+
@@ldap_check_role_attribute = false
|
31
|
+
|
32
|
+
mattr_accessor :ldap_use_admin_to_bind
|
33
|
+
@@ldap_use_admin_to_bind = false
|
34
|
+
|
35
|
+
mattr_accessor :ldap_auth_username_builder
|
36
|
+
@@ldap_auth_username_builder = Proc.new() {|attribute, login, ldap| "#{attribute}=#{login},#{ldap.base}" }
|
37
|
+
end
|
38
|
+
|
39
|
+
# Add ldap_authenticatable strategy to defaults.
|
40
|
+
#
|
41
|
+
Devise.add_module(:ldap_authenticatable,
|
42
|
+
:route => :session, ## This will add the routes, rather than in the routes.rb
|
43
|
+
:strategy => true,
|
44
|
+
:controller => :sessions,
|
45
|
+
:model => 'devise_ldap_authenticatable/model')
|