#-- encoding: UTF-8 #-- copyright # OpenProject is a project management system. # # Copyright (C) 2012-2013 the OpenProject Team # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. # # See doc/COPYRIGHT.rdoc for more details. #++ class AuthSourcesController < ApplicationController include PaginationHelper layout 'admin' before_filter :require_admin def index @auth_sources = AuthSource.page(params[:page]) .per_page(per_page_param) render "auth_sources/index" end def new @auth_source = auth_source_class.new render 'auth_sources/new' end def create @auth_source = auth_source_class.new(params[:auth_source]) if @auth_source.save flash[:notice] = l(:notice_successful_create) redirect_to :action => 'index' else render 'auth_sources/new' end end def edit @auth_source = AuthSource.find(params[:id]) render 'auth_sources/edit' end def update @auth_source = AuthSource.find(params[:id]) if @auth_source.update_attributes(params[:auth_source]) flash[:notice] = l(:notice_successful_update) redirect_to :action => 'index' else render 'auth_sources/edit' end end def test_connection @auth_method = AuthSource.find(params[:id]) begin @auth_method.test_connection flash[:notice] = l(:notice_successful_connection) rescue => text flash[:error] = l(:error_unable_to_connect, text.message) end redirect_to :action => 'index' 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 redirect_to :action => 'index' end protected def auth_source_class AuthSource end def default_breadcrumb l(:label_auth_source_plural) end end