debian-mirror-gitlab/app/controllers/oauth/applications_controller.rb

70 lines
1.9 KiB
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2015-04-26 12:48:37 +05:30
class Oauth::ApplicationsController < Doorkeeper::ApplicationsController
2016-06-02 11:05:42 +05:30
include Gitlab::GonHelper
2018-03-27 19:54:05 +05:30
include Gitlab::Allowable
2015-09-11 14:41:01 +05:30
include PageLayoutHelper
2017-08-17 22:00:37 +05:30
include OauthApplications
2019-12-21 20:55:43 +05:30
include Gitlab::Experimentation::ControllerConcern
2020-01-01 13:55:28 +05:30
include InitializesCurrentUserMode
2015-09-25 12:07:36 +05:30
2018-12-05 23:21:45 +05:30
before_action :verify_user_oauth_applications_enabled, except: :index
2015-09-11 14:41:01 +05:30
before_action :authenticate_user!
2016-06-02 11:05:42 +05:30
before_action :add_gon_variables
2018-11-29 20:51:05 +05:30
before_action :load_scopes, only: [:index, :create, :edit, :update]
2015-09-11 14:41:01 +05:30
2018-03-27 19:54:05 +05:30
helper_method :can?
2015-09-11 14:41:01 +05:30
layout 'profile'
2015-04-26 12:48:37 +05:30
def index
2016-06-02 11:05:42 +05:30
set_index_vars
2015-04-26 12:48:37 +05:30
end
def create
2018-03-17 18:26:18 +05:30
@application = Applications::CreateService.new(current_user, create_application_params).execute(request)
2015-04-26 12:48:37 +05:30
2018-03-17 18:26:18 +05:30
if @application.persisted?
2015-04-26 12:48:37 +05:30
flash[:notice] = I18n.t(:notice, scope: [:doorkeeper, :flash, :applications, :create])
2018-03-17 18:26:18 +05:30
2015-04-26 12:48:37 +05:30
redirect_to oauth_application_url(@application)
else
2016-06-02 11:05:42 +05:30
set_index_vars
render :index
2015-04-26 12:48:37 +05:30
end
end
private
2015-09-11 14:41:01 +05:30
def verify_user_oauth_applications_enabled
2018-03-17 18:26:18 +05:30
return if Gitlab::CurrentSettings.user_oauth_applications?
2015-09-11 14:41:01 +05:30
redirect_to profile_path
2015-09-11 14:41:01 +05:30
end
2016-06-02 11:05:42 +05:30
def set_index_vars
@applications = current_user.oauth_applications
@authorized_tokens = current_user.oauth_authorized_tokens
@authorized_anonymous_tokens = @authorized_tokens.reject(&:application)
@authorized_apps = @authorized_tokens.map(&:application).uniq.reject(&:nil?)
# Don't overwrite a value possibly set by `create`
@application ||= Doorkeeper::Application.new
end
# Override Doorkeeper to scope to the current user
2015-04-26 12:48:37 +05:30
def set_application
@application = current_user.oauth_applications.find(params[:id])
end
rescue_from ActiveRecord::RecordNotFound do |exception|
2019-12-26 22:10:19 +05:30
render "errors/not_found", layout: "errors", status: :not_found
2015-04-26 12:48:37 +05:30
end
2018-03-17 18:26:18 +05:30
def create_application_params
application_params.tap do |params|
params[:owner] = current_user
end
end
2015-04-26 12:48:37 +05:30
end