| 
									
										
										
										
											2011-08-31 12:07:34 +00:00
										 |  |  | # Redmine - project management software | 
					
						
							| 
									
										
										
										
											2013-01-12 09:29:31 +00:00
										 |  |  | # Copyright (C) 2006-2013  Jean-Philippe Lang | 
					
						
							| 
									
										
										
										
											2006-07-29 09:32:58 +00:00
										 |  |  | # | 
					
						
							|  |  |  | # This program is free software; you can redistribute it and/or | 
					
						
							|  |  |  | # modify it under the terms of the GNU General Public License | 
					
						
							|  |  |  | # as published by the Free Software Foundation; either version 2 | 
					
						
							|  |  |  | # of the License, or (at your option) any later version. | 
					
						
							| 
									
										
										
										
											2011-08-31 12:07:34 +00:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											2006-07-29 09:32:58 +00:00
										 |  |  | # This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  | # but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  | # GNU General Public License for more details. | 
					
						
							| 
									
										
										
										
											2011-08-31 12:07:34 +00:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											2006-07-29 09:32:58 +00:00
										 |  |  | # You should have received a copy of the GNU General Public License | 
					
						
							|  |  |  | # along with this program; if not, write to the Free Software | 
					
						
							|  |  |  | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class AuthSourcesController < ApplicationController | 
					
						
							| 
									
										
										
										
											2009-12-17 18:21:02 +00:00
										 |  |  |   layout 'admin' | 
					
						
							| 
									
										
										
										
											2012-03-11 11:43:27 +00:00
										 |  |  |   menu_item :ldap_authentication | 
					
						
							| 
									
										
										
										
											2011-08-31 12:07:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-07-29 09:32:58 +00:00
										 |  |  |   before_filter :require_admin | 
					
						
							| 
									
										
										
										
											2012-12-13 15:04:11 +00:00
										 |  |  |   before_filter :find_auth_source, :only => [:edit, :update, :test_connection, :destroy] | 
					
						
							| 
									
										
										
										
											2006-07-29 09:32:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-15 16:41:21 +00:00
										 |  |  |   def index | 
					
						
							| 
									
										
										
										
											2012-12-17 18:24:06 +00:00
										 |  |  |     @auth_source_pages, @auth_sources = paginate AuthSource, :per_page => 25
 | 
					
						
							| 
									
										
										
										
											2006-07-29 09:32:58 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def new | 
					
						
							| 
									
										
										
										
											2012-03-11 11:43:27 +00:00
										 |  |  |     klass_name = params[:type] || 'AuthSourceLdap' | 
					
						
							|  |  |  |     @auth_source = AuthSource.new_subclass_instance(klass_name, params[:auth_source]) | 
					
						
							| 
									
										
										
										
											2012-12-13 15:04:11 +00:00
										 |  |  |     render_404 unless @auth_source | 
					
						
							| 
									
										
										
										
											2006-07-29 09:32:58 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def create | 
					
						
							| 
									
										
										
										
											2012-03-11 11:43:27 +00:00
										 |  |  |     @auth_source = AuthSource.new_subclass_instance(params[:type], params[:auth_source]) | 
					
						
							| 
									
										
										
										
											2006-07-29 09:32:58 +00:00
										 |  |  |     if @auth_source.save | 
					
						
							|  |  |  |       flash[:notice] = l(:notice_successful_create) | 
					
						
							| 
									
										
										
										
											2012-12-11 17:51:30 +00:00
										 |  |  |       redirect_to auth_sources_path | 
					
						
							| 
									
										
										
										
											2006-07-29 09:32:58 +00:00
										 |  |  |     else | 
					
						
							| 
									
										
										
										
											2012-03-11 11:43:27 +00:00
										 |  |  |       render :action => 'new' | 
					
						
							| 
									
										
										
										
											2006-07-29 09:32:58 +00:00
										 |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def edit | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def update | 
					
						
							|  |  |  |     if @auth_source.update_attributes(params[:auth_source]) | 
					
						
							|  |  |  |       flash[:notice] = l(:notice_successful_update) | 
					
						
							| 
									
										
										
										
											2012-12-11 17:51:30 +00:00
										 |  |  |       redirect_to auth_sources_path | 
					
						
							| 
									
										
										
										
											2006-07-29 09:32:58 +00:00
										 |  |  |     else | 
					
						
							| 
									
										
										
										
											2012-03-11 11:43:27 +00:00
										 |  |  |       render :action => 'edit' | 
					
						
							| 
									
										
										
										
											2006-07-29 09:32:58 +00:00
										 |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-08-31 12:07:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-07-29 09:32:58 +00:00
										 |  |  |   def test_connection | 
					
						
							|  |  |  |     begin | 
					
						
							| 
									
										
										
										
											2012-03-11 11:43:27 +00:00
										 |  |  |       @auth_source.test_connection | 
					
						
							| 
									
										
										
										
											2007-10-16 19:19:10 +00:00
										 |  |  |       flash[:notice] = l(:notice_successful_connection) | 
					
						
							| 
									
										
										
										
											2012-03-02 11:31:44 +00:00
										 |  |  |     rescue Exception => e | 
					
						
							|  |  |  |       flash[:error] = l(:error_unable_to_connect, e.message) | 
					
						
							| 
									
										
										
										
											2006-07-29 09:32:58 +00:00
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2012-12-11 17:51:30 +00:00
										 |  |  |     redirect_to auth_sources_path | 
					
						
							| 
									
										
										
										
											2006-07-29 09:32:58 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def destroy | 
					
						
							| 
									
										
										
										
											2012-12-03 18:21:32 +00:00
										 |  |  |     unless @auth_source.users.exists? | 
					
						
							| 
									
										
										
										
											2006-07-29 09:32:58 +00:00
										 |  |  |       @auth_source.destroy | 
					
						
							|  |  |  |       flash[:notice] = l(:notice_successful_delete) | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2012-12-11 17:51:30 +00:00
										 |  |  |     redirect_to auth_sources_path | 
					
						
							| 
									
										
										
										
											2006-07-29 09:32:58 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2012-12-13 15:04:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-26 11:23:53 +00:00
										 |  |  |   def autocomplete_for_new_user | 
					
						
							|  |  |  |     results = AuthSource.search(params[:term]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     render :json => results.map {|result| { | 
					
						
							|  |  |  |       'value' => result[:login], | 
					
						
							|  |  |  |       'label' => "#{result[:login]} (#{result[:firstname]} #{result[:lastname]})", | 
					
						
							|  |  |  |       'login' => result[:login].to_s, | 
					
						
							|  |  |  |       'firstname' => result[:firstname].to_s, | 
					
						
							|  |  |  |       'lastname' => result[:lastname].to_s, | 
					
						
							|  |  |  |       'mail' => result[:mail].to_s, | 
					
						
							|  |  |  |       'auth_source_id' => result[:auth_source_id].to_s | 
					
						
							|  |  |  |     }} | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-13 15:04:11 +00:00
										 |  |  |   private | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def find_auth_source | 
					
						
							|  |  |  |     @auth_source = AuthSource.find(params[:id]) | 
					
						
							|  |  |  |   rescue ActiveRecord::RecordNotFound | 
					
						
							|  |  |  |     render_404 | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2006-07-29 09:32:58 +00:00
										 |  |  | end |