OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/app/controllers/oauth/applications_controller.rb

118 lines
3.4 KiB

#-- encoding: UTF-8
#-- copyright
# OpenProject is a project management system.
# Copyright (C) 2012-2018 the OpenProject Foundation (OPF)
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License version 3.
#
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
# Copyright (C) 2006-2017 Jean-Philippe Lang
# Copyright (C) 2010-2013 the ChiliProject Team
#
# 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.
#
# 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.
#
# 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.
#
# See docs/COPYRIGHT.rdoc for more details.
#++
module OAuth
class ApplicationsController < ::ApplicationController
before_action :require_admin
before_action :new_app, only: %i[new create]
before_action :find_app, only: %i[edit update show destroy]
layout 'admin'
menu_item :oauth_applications
def index
@applications = ::Doorkeeper::Application.includes(:owner).all
end
def new; end
def edit; end
def show
@reveal_secret = flash[:reveal_secret]
flash.delete :reveal_secret
end
def create
call = ::OAuth::PersistApplicationService.new(@application, user: current_user)
.call(permitted_params.oauth_application)
if call.success?
flash[:notice] = t(:notice_successful_create)
flash[:_application_secret] = call.result.plaintext_secret
redirect_to action: :show, id: call.result.id
else
@errors = call.errors
flash[:error] = call.errors.full_messages.join('\n')
render action: :new
end
end
def update
call = ::OAuth::PersistApplicationService.new(@application, user: current_user)
.call(permitted_params.oauth_application)
if call.success?
flash[:notice] = t(:notice_successful_update)
redirect_to action: :index
else
@errors = call.errors
flash[:error] = call.errors.full_messages.join('\n')
render action: :edit
end
end
def destroy
if @application.destroy
flash[:notice] = t(:notice_successful_delete)
else
flash[:error] = t(:error_can_not_delete_entry)
end
redirect_to action: :index
end
protected
def default_breadcrumb
if action_name == 'index'
t('oauth.application.plural')
else
ActionController::Base.helpers.link_to(t('oauth.application.plural'), oauth_applications_path)
end
end
def show_local_breadcrumb
current_user.admin?
end
private
def new_app
@application = ::Doorkeeper::Application.new
end
def find_app
@application = ::Doorkeeper::Application.find(params[:id])
rescue ActiveRecord::RecordNotFound
render_404
end
end
end