From fb5a13df14a17fafb70199dab976aedcbcee0328 Mon Sep 17 00:00:00 2001 From: Saurabh Bhatia Date: Thu, 13 Feb 2014 14:58:10 +0800 Subject: [PATCH] removed doorkeeper --- .../oauth/applications_controller.rb | 20 ------ config/locales/doorkeeper.en.yml | 68 ------------------- 2 files changed, 88 deletions(-) delete mode 100644 app/controllers/oauth/applications_controller.rb delete mode 100644 config/locales/doorkeeper.en.yml diff --git a/app/controllers/oauth/applications_controller.rb b/app/controllers/oauth/applications_controller.rb deleted file mode 100644 index 755d008..0000000 --- a/app/controllers/oauth/applications_controller.rb +++ /dev/null @@ -1,20 +0,0 @@ -class Oauth::ApplicationsController < Doorkeeper::ApplicationsController - before_filter :authenticate_user! - - def index - @applications = current_user.oauth_applications - end - - # only needed if each application must have some owner - def create - @application = Doorkeeper::Application.new(application_params) - @application.owner = current_user if Doorkeeper.configuration.confirm_application_owner? - if @application.save - flash[:notice] = I18n.t(:notice, :scope => [:doorkeeper, :flash, :applications, :create]) - respond_with [:oauth, @application] - else - render :new - end - end - -end \ No newline at end of file diff --git a/config/locales/doorkeeper.en.yml b/config/locales/doorkeeper.en.yml deleted file mode 100644 index 8a51ce2..0000000 --- a/config/locales/doorkeeper.en.yml +++ /dev/null @@ -1,68 +0,0 @@ -en: - activerecord: - errors: - models: - application: - attributes: - redirect_uri: - fragment_present: 'cannot contain a fragment.' - has_query_parameter: 'cannot contain a query parameter.' - invalid_uri: 'must be a valid URI.' - relative_uri: 'must be an absolute URI.' - mongoid: - errors: - models: - application: - attributes: - redirect_uri: - fragment_present: 'cannot contain a fragment.' - has_query_parameter: 'cannot contain a query parameter.' - invalid_uri: 'must be a valid URI.' - relative_uri: 'must be an absolute URI.' - mongo_mapper: - errors: - models: - application: - attributes: - redirect_uri: - fragment_present: 'cannot contain a fragment.' - has_query_parameter: 'cannot contain a query parameter.' - invalid_uri: 'must be a valid URI.' - relative_uri: 'must be an absolute URI.' - doorkeeper: - errors: - messages: - # Common error messages - invalid_request: 'The request is missing a required parameter, includes an unsupported parameter value, or is otherwise malformed.' - invalid_redirect_uri: 'The redirect uri included is not valid.' - unauthorized_client: 'The client is not authorized to perform this request using this method.' - access_denied: 'The resource owner or authorization server denied the request.' - invalid_scope: 'The requested scope is invalid, unknown, or malformed.' - server_error: 'The authorization server encountered an unexpected condition which prevented it from fulfilling the request.' - temporarily_unavailable: 'The authorization server is currently unable to handle the request due to a temporary overloading or maintenance of the server.' - - #configuration error messages - credential_flow_not_configured: 'Resource Owner Password Credentials flow failed due to Doorkeeper.configure.resource_owner_from_credentials being unconfigured.' - resource_owner_authenticator_not_configured: 'Resource Owner find failed due to Doorkeeper.configure.resource_owner_authenticator being unconfiged.' - - # Access grant errors - unsupported_response_type: 'The authorization server does not support this response type.' - - # Access token errors - invalid_client: 'Client authentication failed due to unknown client, no client authentication included, or unsupported authentication method.' - invalid_grant: 'The provided authorization grant is invalid, expired, revoked, does not match the redirection URI used in the authorization request, or was issued to another client.' - unsupported_grant_type: 'The authorization grant type is not supported by the authorization server.' - - # Password Access token errors - invalid_resource_owner: 'The provided resource owner credentials are not valid, or resource owner cannot be found' - flash: - applications: - create: - notice: 'Application created.' - destroy: - notice: 'Application deleted.' - update: - notice: 'Application updated.' - authorized_applications: - destroy: - notice: 'Application revoked.'