aboutsummaryrefslogtreecommitdiffstats
path: root/apps/oauth2/lib/Controller
Commit message (Expand)AuthorAgeFilesLines
* Always catch OCP versions of authentication exceptionsCôme Chilliet2024-01-111-2/+2
* chore: apply changes from Nextcloud coding standards 1.1.1Joas Schilling2023-11-232-9/+9
* adjust phpdoc types in OauthApiControllerJulien Veyssier2023-10-051-4/+4
* rename oauth2_access_token's created_at to code_created_atJulien Veyssier2023-10-051-3/+3
* delete oauth access token when receiving a code that has expiredJulien Veyssier2023-10-051-0/+3
* refuse oauth authorization code if a token has already been delivered (active...Julien Veyssier2023-10-051-1/+11
* cleanup access tokens that are still in authorization state and that have exp...Julien Veyssier2023-10-051-0/+5
* add tests for oauth2 authorization code expirationJulien Veyssier2023-10-051-1/+1
* make oauth2 authorization code expire after 10 minutesJulien Veyssier2023-10-051-6/+28
* techdebt(DI): Use public IThrottler interface which exists since Nextcloud 25Joas Schilling2023-08-281-2/+2
* oauth2: Add OpenAPI specjld31032023-07-122-12/+24
* add bruteforce protection in OauthApiControllerJulien Veyssier2023-06-191-5/+17
* encrypt oauth2 client secretsJulien Veyssier2023-06-072-62/+39
* public interface to invalidate tokens of userArtur Neumann2023-03-141-9/+2
* invalidate existing tokens when deleting an oauth clientArtur Neumann2023-03-141-2/+26
* Fix typos in apps/ subdirectoryluz paz2022-09-051-1/+1
* More test fixingJoas Schilling2021-12-011-14/+0
* Introduce ISecureRandom::CHAR_ALPHANUMERICJ0WI2021-07-081-2/+2
* Update php licensesJohn Molakvoæ (skjnldsv)2021-06-043-6/+3
* Update license headers for 19Christoph Wurst2020-04-292-0/+2
* Add visibility to all constantsChristoph Wurst2020-04-101-1/+1
* Format control structures, classes, methods and functionChristoph Wurst2020-04-101-1/+0
* Remove trailing and in between spacesChristoph Wurst2020-04-091-1/+1
* Update the license headers for Nextcloud 19Christoph Wurst2020-03-311-0/+1
* Fix invalid instantiation of TemplateResponse if client not foundDaniel Kesselberg2020-03-151-4/+3
* Update license headersChristoph Wurst2019-12-053-3/+21
* Some php-cs fixesRoeland Jago Douma2019-11-221-1/+1
* Move oauth admin settings to initialstateRoeland Jago Douma2019-09-281-18/+0
* Strict controllersRoeland Jago Douma2018-12-072-15/+6
* Fail gracefull if an unkown oauth2 client tries to authenticateRoeland Jago Douma2018-12-061-3/+20
* Move ExpiredTokenException to the correct namespaceRoeland Jago Douma2018-10-301-1/+1
* Reset bruteforce on token refresh OAuthRoeland Jago Douma2018-10-301-1/+9
* Remove filter_var flags due to PHP 7.3 deprecation, fixes #10894Patrik Kernstock2018-09-041-1/+1
* Update SettingsController.phprakekniven2018-06-301-1/+1
* Validate OAuth2 redirect uriRoeland Jago Douma2018-06-261-1/+12
* Cleanup ControllerRoeland Jago Douma2018-06-191-7/+1
* Migrate OAuth Admin settings to vueRoeland Jago Douma2018-06-191-16/+35
* The OAuth endpoint needs to support Basic AuthRoeland Jago Douma2018-05-291-0/+5
* Don't use special chars to avoid confusionRoeland Jago Douma2018-05-221-0/+7
* Rotate tokenRoeland Jago Douma2018-05-221-11/+43
* Authenticate the clients on requesting a tokenRoeland Jago Douma2018-05-221-2/+45
* Fail if the response type is not properly setRoeland Jago Douma2018-05-221-1/+10
* Set OAuth token expirationRoeland Jago Douma2018-05-221-1/+3
* Add OAuth state to sessionLukas Reschke2017-05-181-8/+9
* Cleanup codeLukas Reschke2017-05-181-1/+1
* delete auth token when client gets deletedBjoern Schiessle2017-05-181-3/+17
* It's a bearerLukas Reschke2017-05-181-1/+1
* Add basic implementation for OAuth 2.0 Authorization Code FlowLukas Reschke2017-05-183-0/+252