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

57 lines
1.5 KiB
Ruby
Raw Normal View History

2015-04-26 12:48:37 +05:30
class Oauth::ApplicationsController < Doorkeeper::ApplicationsController
2015-09-11 14:41:01 +05:30
include Gitlab::CurrentSettings
2016-06-02 11:05:42 +05:30
include Gitlab::GonHelper
2015-09-11 14:41:01 +05:30
include PageLayoutHelper
2015-09-25 12:07:36 +05:30
2015-09-11 14:41:01 +05:30
before_action :verify_user_oauth_applications_enabled
before_action :authenticate_user!
2016-06-02 11:05:42 +05:30
before_action :add_gon_variables
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
@application = Doorkeeper::Application.new(application_params)
@application.owner = current_user
2015-09-11 14:41:01 +05:30
2015-04-26 12:48:37 +05:30
if @application.save
flash[:notice] = I18n.t(:notice, scope: [:doorkeeper, :flash, :applications, :create])
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
return if current_application_settings.user_oauth_applications?
redirect_to applications_profile_url
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|
render "errors/not_found", layout: "errors", status: 404
end
end