2019-03-16 09:37:35 +00:00
|
|
|
# frozen_string_literal: true
|
2019-03-15 01:32:57 +00:00
|
|
|
|
2011-08-31 12:07:34 +00:00
|
|
|
# Redmine - project management software
|
2024-02-26 22:55:54 +00:00
|
|
|
# Copyright (C) 2006- 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'
|
2016-11-19 10:30:02 +00:00
|
|
|
self.main_menu = false
|
2012-03-11 11:43:27 +00:00
|
|
|
menu_item :ldap_authentication
|
2011-08-31 12:07:34 +00:00
|
|
|
|
2016-07-14 07:27:31 +00:00
|
|
|
before_action :require_admin
|
2016-07-17 08:18:26 +00:00
|
|
|
before_action :build_new_auth_source, :only => [:new, :create]
|
2016-07-14 07:27:31 +00:00
|
|
|
before_action :find_auth_source, :only => [:edit, :update, :test_connection, :destroy]
|
2015-06-19 18:41:10 +00:00
|
|
|
require_sudo_mode :update, :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
|
2025-09-07 06:15:09 +00:00
|
|
|
no_store
|
2006-07-29 09:32:58 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def create
|
|
|
|
|
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
|
2025-09-07 06:15:09 +00:00
|
|
|
no_store
|
2012-03-11 11:43:27 +00:00
|
|
|
render :action => 'new'
|
2006-07-29 09:32:58 +00:00
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def edit
|
2025-09-07 06:15:09 +00:00
|
|
|
no_store
|
2006-07-29 09:32:58 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def update
|
2016-07-17 08:18:26 +00:00
|
|
|
@auth_source.safe_attributes = params[:auth_source]
|
|
|
|
|
if @auth_source.save
|
2006-07-29 09:32:58 +00:00
|
|
|
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
|
2025-09-07 06:15:09 +00:00
|
|
|
no_store
|
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)
|
2019-05-25 06:50:25 +00:00
|
|
|
rescue => e
|
2012-03-02 11:31:44 +00:00
|
|
|
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)
|
2018-03-12 04:31:04 +00:00
|
|
|
else
|
|
|
|
|
flash[:error] = l(:error_can_not_delete_auth_source)
|
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
|
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])
|
2020-11-06 13:00:29 +00:00
|
|
|
json = results.map do |result|
|
2019-11-09 09:19:02 +00:00
|
|
|
{
|
|
|
|
|
'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
|
|
|
|
|
}
|
2020-11-06 13:00:29 +00:00
|
|
|
end
|
|
|
|
|
render :json => json
|
2012-12-26 11:23:53 +00:00
|
|
|
end
|
|
|
|
|
|
2012-12-13 15:04:11 +00:00
|
|
|
private
|
|
|
|
|
|
2016-07-17 08:18:26 +00:00
|
|
|
def build_new_auth_source
|
|
|
|
|
@auth_source = AuthSource.new_subclass_instance(params[:type] || 'AuthSourceLdap')
|
|
|
|
|
if @auth_source
|
|
|
|
|
@auth_source.safe_attributes = params[:auth_source]
|
|
|
|
|
else
|
|
|
|
|
render_404
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2012-12-13 15:04:11 +00:00
|
|
|
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
|