2014-12-19 09:15:29 -05:00
|
|
|
class Oauth::ApplicationsController < Doorkeeper::ApplicationsController
|
2015-05-29 07:29:16 -04:00
|
|
|
include Gitlab::CurrentSettings
|
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
|
2015-09-09 08:37:34 -04:00
|
|
|
|
2015-05-29 07:29:16 -04:00
|
|
|
before_action :verify_user_oauth_applications_enabled
|
2015-04-16 08:03:37 -04:00
|
|
|
before_action :authenticate_user!
|
2016-04-13 01:39:18 -04:00
|
|
|
before_action :add_gon_variables
|
2016-11-24 02:37:22 -05:00
|
|
|
before_action :load_scopes, only: [:index, :create, :edit]
|
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
|
|
|
|
|
2014-12-19 09:15:29 -05:00
|
|
|
def create
|
|
|
|
@application = Doorkeeper::Application.new(application_params)
|
2014-12-25 09:46:28 -05:00
|
|
|
|
2015-01-17 18:37:27 -05:00
|
|
|
@application.owner = current_user
|
2015-04-16 08:03:37 -04:00
|
|
|
|
2014-12-19 09:15:29 -05:00
|
|
|
if @application.save
|
2017-09-21 04:29:09 -04:00
|
|
|
redirect_to_oauth_application_page
|
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
|
|
|
|
|
2017-09-21 04:29:09 -04:00
|
|
|
protected
|
|
|
|
|
|
|
|
def redirect_to_oauth_application_page
|
|
|
|
flash[:notice] = I18n.t(:notice, scope: [:doorkeeper, :flash, :applications, :create])
|
|
|
|
redirect_to oauth_application_url(@application)
|
|
|
|
end
|
|
|
|
|
2014-12-25 11:35:04 -05:00
|
|
|
private
|
|
|
|
|
2015-05-29 07:29:16 -04:00
|
|
|
def verify_user_oauth_applications_enabled
|
|
|
|
return if current_application_settings.user_oauth_applications?
|
|
|
|
|
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?)
|
|
|
|
|
|
|
|
# Don't overwrite a value possibly set by `create`
|
|
|
|
@application ||= Doorkeeper::Application.new
|
|
|
|
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|
|
|
|
|
render "errors/not_found", layout: "errors", status: 404
|
|
|
|
end
|
2014-12-25 09:46:28 -05:00
|
|
|
end
|