summaryrefslogtreecommitdiff
path: root/lib/api/api_guard.rb
Commit message (Collapse)AuthorAgeFilesLines
* Enable Style/Proc cop for rubocopmhasbini2017-04-021-1/+1
|
* Enable and autocorrect the CustomErrorClass copSean McGivern2017-03-011-7/+4
|
* Fix code for copsDouwe Maan2017-02-231-1/+1
|
* Enable Style/SpaceInsideBracketsDouwe Maan2017-02-231-1/+1
|
* Enable Style/MutableConstantDouwe Maan2017-02-231-1/+1
|
* Convert AccessTokenValidationService into a class.Timothy Andrew2016-12-161-2/+2
| | | | | | | | | | - Previously, AccessTokenValidationService was a module, and all its public methods accepted a token. It makes sense to convert it to a class which accepts a token during initialization. - Also rename the `sufficient_scope?` method to `include_any_scope?` - Based on feedback from @rymai
* Implement minor changes from @dbalexandre's review.Timothy Andrew2016-12-161-11/+15
| | | | | | | | | | | - Mainly whitespace changes. - Require the migration adding the `scope` column to the `personal_access_tokens` table to have downtime, since API calls will fail if the new code is in place, but the migration hasn't run. - Minor refactoring - load `@scopes` in a `before_action`, since we're doing it in three different places.
* Calls to the API are checked for scope.Timothy Andrew2016-12-161-17/+45
| | | | | | | | | | | | | | - Move the `Oauth2::AccessTokenValidationService` class to `AccessTokenValidationService`, since it is now being used for personal access token validation as well. - Each API endpoint declares the scopes it accepts (if any). Currently, the top level API module declares the `api` scope, and the `Users` API module declares the `read_user` scope (for GET requests). - Move the `find_user_by_private_token` from the API `Helpers` module to the `APIGuard` module, to avoid littering `Helpers` with more auth-related methods to support `find_user_by_private_token`
* Remove some dead code from the Grape APINick Thomas2016-09-191-43/+13
| | | | | | The `guard_all!` method is never called, and `guard!` is not implemented. The `doorkeeper_guard!` method is also never called, and is mostly the same as its non-bang counterpart.
* Fix a few places where autoloading would failRémy Coutable2016-05-101-133/+137
| | | | | | | | | | | - Fix naming of API::CommitStatuses - Ensure we use require_dependency instead of require - Ensure the namespace is right in lib/api/api.rb, otherwise, we might require Grape::API::Helpers which defines the `#params` method. This is to avoid requiring a file multiple times and getting an "Already initialized constant" error. Signed-off-by: Rémy Coutable <remy@rymai.me>
* Rubocop: Style/CaseIndentation enabledDmitriy Zaporozhets2015-02-021-5/+2
|
* Avoid using {...} for multi-line blocksDmitriy Zaporozhets2015-02-021-2/+2
|
* Rubocop enabled for: Use spaces inside hash literal bracesDmitriy Zaporozhets2015-02-021-1/+1
|
* Convert hashes to ruby 1.9 styleDmitriy Zaporozhets2015-02-021-2/+2
|
* Doorkeeper integrationValery Sizov2014-12-241-0/+175