2018-09-23 15:44:14 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-12-19 09:15:29 -05:00
|
|
|
class Oauth::ApplicationsController < Doorkeeper::ApplicationsController
|
2016-04-14 08:28:46 -04:00
|
|
|
include Gitlab::GonHelper
|
2015-09-09 08:37:34 -04:00
|
|
|
include PageLayoutHelper
|
2016-11-22 03:57:31 -05:00
|
|
|
include OauthApplications
|
2019-10-18 17:06:37 -04:00
|
|
|
include Gitlab::Experimentation::ControllerConcern
|
2019-12-11 07:08:10 -05:00
|
|
|
include InitializesCurrentUserMode
|
2015-09-09 08:37:34 -04:00
|
|
|
|
2020-02-17 22:08:54 -05:00
|
|
|
# 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!
|
|
|
|
|
2020-02-10 16:09:11 -05:00
|
|
|
prepend_before_action :verify_user_oauth_applications_enabled, except: :index
|
|
|
|
prepend_before_action :authenticate_user!
|
2016-04-13 01:39:18 -04:00
|
|
|
before_action :add_gon_variables
|
2018-11-28 17:53:48 -05:00
|
|
|
before_action :load_scopes, only: [:index, :create, :edit, :update]
|
2015-05-01 04:39:11 -04:00
|
|
|
|
2020-07-02 14:09:00 -04:00
|
|
|
around_action :set_locale
|
|
|
|
|
2015-05-01 04:39:11 -04:00
|
|
|
layout 'profile'
|
2014-12-19 09:15:29 -05:00
|
|
|
|
|
|
|
def index
|
2016-03-11 23:38:25 -05:00
|
|
|
set_index_vars
|
2016-02-29 09:47:21 -05:00
|
|
|
end
|
|
|
|
|
2021-11-04 11:10:58 -04:00
|
|
|
def show
|
|
|
|
@created = get_created_session
|
|
|
|
end
|
|
|
|
|
2014-12-19 09:15:29 -05:00
|
|
|
def create
|
2021-09-17 11:11:44 -04:00
|
|
|
@application = Applications::CreateService.new(current_user, application_params).execute(request)
|
2014-12-25 09:46:28 -05:00
|
|
|
|
2017-10-24 02:38:06 -04:00
|
|
|
if @application.persisted?
|
|
|
|
flash[:notice] = I18n.t(:notice, scope: [:doorkeeper, :flash, :applications, :create])
|
2017-10-24 07:42:20 -04:00
|
|
|
|
2021-11-04 11:10:58 -04:00
|
|
|
set_created_session
|
|
|
|
|
2017-10-24 07:42:20 -04:00
|
|
|
redirect_to oauth_application_url(@application)
|
2014-12-19 09:15:29 -05:00
|
|
|
else
|
2016-03-11 23:38:25 -05:00
|
|
|
set_index_vars
|
|
|
|
render :index
|
2014-12-19 09:15:29 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-12-25 11:35:04 -05:00
|
|
|
private
|
|
|
|
|
2015-05-29 07:29:16 -04:00
|
|
|
def verify_user_oauth_applications_enabled
|
2018-02-02 13:39:55 -05:00
|
|
|
return if Gitlab::CurrentSettings.user_oauth_applications?
|
2015-05-29 07:29:16 -04:00
|
|
|
|
2016-06-08 02:15:45 -04:00
|
|
|
redirect_to profile_path
|
2015-05-29 07:29:16 -04:00
|
|
|
end
|
|
|
|
|
2016-03-11 23:38:25 -05:00
|
|
|
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?)
|
|
|
|
|
2022-05-10 20:08:02 -04:00
|
|
|
# Don't overwrite a value possibly set by `create`
|
|
|
|
@application ||= Doorkeeper::Application.new
|
2016-03-11 23:38:25 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
# Override Doorkeeper to scope to the current user
|
2014-12-25 11:35:04 -05:00
|
|
|
def set_application
|
|
|
|
@application = current_user.oauth_applications.find(params[:id])
|
|
|
|
end
|
|
|
|
|
|
|
|
rescue_from ActiveRecord::RecordNotFound do |exception|
|
2019-11-17 07:06:19 -05:00
|
|
|
render "errors/not_found", layout: "errors", status: :not_found
|
2014-12-25 11:35:04 -05:00
|
|
|
end
|
2017-10-24 02:38:06 -04:00
|
|
|
|
2021-09-17 11:11:44 -04:00
|
|
|
def application_params
|
|
|
|
super.tap do |params|
|
2017-10-24 02:38:06 -04:00
|
|
|
params[:owner] = current_user
|
|
|
|
end
|
|
|
|
end
|
2020-07-02 14:09:00 -04:00
|
|
|
|
|
|
|
def set_locale(&block)
|
|
|
|
Gitlab::I18n.with_user_locale(current_user, &block)
|
|
|
|
end
|
2014-12-25 09:46:28 -05:00
|
|
|
end
|