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

85 lines
2.4 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
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
2020-03-13 15:44:24 +05:30
# Defined by the `Doorkeeper::ApplicationsController` and is redundant as we call `authenticate_user!` below. Not
# defining or skipping this will result in a `403` response to all requests.
skip_before_action :authenticate_admin!
prepend_before_action :verify_user_oauth_applications_enabled, except: :index
prepend_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
2020-07-28 23:09:34 +05:30
around_action :set_locale
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
2021-12-11 22:18:48 +05:30
def show
@created = get_created_session
end
2015-04-26 12:48:37 +05:30
def create
2021-11-11 11:23:49 +05:30
@application = Applications::CreateService.new(current_user, 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
2021-12-11 22:18:48 +05:30
set_created_session
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?)
2021-11-11 11:23:49 +05:30
# Default access tokens to expire. This preserves backward compatibility
# with existing applications. This will be removed in 15.0.
# Removal issue: https://gitlab.com/gitlab-org/gitlab/-/issues/340848
@application ||= Doorkeeper::Application.new(expire_access_tokens: true)
2016-06-02 11:05:42 +05:30
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
2021-11-11 11:23:49 +05:30
def application_params
super.tap do |params|
2018-03-17 18:26:18 +05:30
params[:owner] = current_user
end
end
2020-07-28 23:09:34 +05:30
def set_locale(&block)
Gitlab::I18n.with_user_locale(current_user, &block)
end
2015-04-26 12:48:37 +05:30
end