2011-08-31 16:07:34 +04:00
|
|
|
# Redmine - project management software
|
|
|
|
# Copyright (C) 2006-2011 Jean-Philippe Lang
|
2006-07-29 13:32:58 +04: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 16:07:34 +04:00
|
|
|
#
|
2006-07-29 13:32:58 +04: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 16:07:34 +04:00
|
|
|
#
|
2006-07-29 13:32:58 +04: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 21:21:02 +03:00
|
|
|
layout 'admin'
|
2011-08-31 16:07:34 +04:00
|
|
|
|
2006-07-29 13:32:58 +04:00
|
|
|
before_filter :require_admin
|
|
|
|
|
2010-02-15 19:41:21 +03:00
|
|
|
def index
|
2010-05-23 07:16:31 +04:00
|
|
|
@auth_source_pages, @auth_sources = paginate auth_source_class.name.tableize, :per_page => 10
|
|
|
|
render "auth_sources/index"
|
2006-07-29 13:32:58 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
def new
|
2010-05-23 07:16:31 +04:00
|
|
|
@auth_source = auth_source_class.new
|
|
|
|
render 'auth_sources/new'
|
2006-07-29 13:32:58 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
2010-05-23 07:16:31 +04:00
|
|
|
@auth_source = auth_source_class.new(params[:auth_source])
|
2006-07-29 13:32:58 +04:00
|
|
|
if @auth_source.save
|
|
|
|
flash[:notice] = l(:notice_successful_create)
|
2010-02-15 19:41:21 +03:00
|
|
|
redirect_to :action => 'index'
|
2006-07-29 13:32:58 +04:00
|
|
|
else
|
2010-05-23 07:16:31 +04:00
|
|
|
render 'auth_sources/new'
|
2006-07-29 13:32:58 +04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def edit
|
|
|
|
@auth_source = AuthSource.find(params[:id])
|
2010-05-23 07:16:31 +04:00
|
|
|
render 'auth_sources/edit'
|
2006-07-29 13:32:58 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
|
|
|
@auth_source = AuthSource.find(params[:id])
|
|
|
|
if @auth_source.update_attributes(params[:auth_source])
|
|
|
|
flash[:notice] = l(:notice_successful_update)
|
2010-02-15 19:41:21 +03:00
|
|
|
redirect_to :action => 'index'
|
2006-07-29 13:32:58 +04:00
|
|
|
else
|
2010-05-23 07:16:31 +04:00
|
|
|
render 'auth_sources/edit'
|
2006-07-29 13:32:58 +04:00
|
|
|
end
|
|
|
|
end
|
2011-08-31 16:07:34 +04:00
|
|
|
|
2006-07-29 13:32:58 +04:00
|
|
|
def test_connection
|
|
|
|
@auth_method = AuthSource.find(params[:id])
|
|
|
|
begin
|
|
|
|
@auth_method.test_connection
|
2007-10-16 23:19:10 +04:00
|
|
|
flash[:notice] = l(:notice_successful_connection)
|
2012-03-02 15:31:44 +04:00
|
|
|
rescue Exception => e
|
|
|
|
flash[:error] = l(:error_unable_to_connect, e.message)
|
2006-07-29 13:32:58 +04:00
|
|
|
end
|
2010-02-15 19:41:21 +03:00
|
|
|
redirect_to :action => 'index'
|
2006-07-29 13:32:58 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
|
|
|
@auth_source = AuthSource.find(params[:id])
|
|
|
|
unless @auth_source.users.find(:first)
|
|
|
|
@auth_source.destroy
|
|
|
|
flash[:notice] = l(:notice_successful_delete)
|
|
|
|
end
|
2010-02-15 19:41:21 +03:00
|
|
|
redirect_to :action => 'index'
|
2006-07-29 13:32:58 +04:00
|
|
|
end
|
2010-05-23 07:16:31 +04:00
|
|
|
|
|
|
|
protected
|
|
|
|
|
|
|
|
def auth_source_class
|
|
|
|
AuthSource
|
|
|
|
end
|
2006-07-29 13:32:58 +04:00
|
|
|
end
|