Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #25172 from owncloud/token-login-validation | Vincent Petry | 2016-06-22 | 5 | -29/+66 |
|\ | | | | | Token login validation | ||||
| * | store last check timestamp in token instead of session | Christoph Wurst | 2016-06-17 | 5 | -24/+58 |
| | | |||||
| * | use token last_activity instead of session value | Christoph Wurst | 2016-06-17 | 2 | -5/+8 |
| | | |||||
* | | update session token password on user password change | Christoph Wurst | 2016-06-21 | 2 | -0/+27 |
| | | |||||
* | | Merge pull request #25162 from owncloud/password-login-forbidden-hint | Vincent Petry | 2016-06-20 | 1 | -0/+29 |
|\ \ | | | | | | | Password login forbidden hint | ||||
| * | | add PasswordLoginForbiddenException | Christoph Wurst | 2016-06-17 | 1 | -0/+29 |
| |/ | |||||
* / | close cursor after loading a token | Christoph Wurst | 2016-06-17 | 1 | -0/+1 |
|/ | |||||
* | load 2FA provider apps before querying classes | Christoph Wurst | 2016-06-16 | 1 | -0/+13 |
| | |||||
* | fail hard if 2fa provider can not be loaded (#25061) | Christoph Wurst | 2016-06-13 | 1 | -1/+3 |
| | |||||
* | do not generate device token if 2FA is enable for user | Christoph Wurst | 2016-06-07 | 1 | -0/+1 |
| | |||||
* | Create session tokens for apache auth users | Christoph Wurst | 2016-05-31 | 4 | -5/+43 |
| | |||||
* | Update license headers | Lukas Reschke | 2016-05-26 | 11 | -11/+0 |
| | |||||
* | when generating browser/device token, save the login name for later password ↵ | Christoph Wurst | 2016-05-24 | 5 | -6/+32 |
| | | | | checks | ||||
* | Merge pull request #24559 from owncloud/2fa | Vincent Petry | 2016-05-23 | 4 | -0/+253 |
|\ | | | | | two factor auth | ||||
| * | add OCC command to enable/disable 2FA for a user | Christoph Wurst | 2016-05-23 | 1 | -2/+27 |
| | | |||||
| * | Add two factor auth to core | Christoph Wurst | 2016-05-23 | 4 | -0/+228 |
| | | |||||
* | | add button to invalidate browser sessions/device tokens | Christoph Wurst | 2016-05-23 | 5 | -6/+37 |
| | | |||||
* | | add button to add new device tokens | Christoph Wurst | 2016-05-23 | 2 | -1/+4 |
| | | |||||
* | | list user's auth tokens on the personal settings page | Christoph Wurst | 2016-05-23 | 1 | -1/+11 |
|/ | |||||
* | add method to query all user auth tokens | Christoph Wurst | 2016-05-18 | 3 | -0/+54 |
| | |||||
* | a single token provider suffices | Christoph Wurst | 2016-05-18 | 4 | -10/+62 |
| | |||||
* | don't spam the log file with failed token validation entries | Christoph Wurst | 2016-05-13 | 1 | -3/+1 |
| | |||||
* | delete the token in case an exception is thrown when decrypting the password | Christoph Wurst | 2016-05-11 | 1 | -1/+8 |
| | |||||
* | use the query builder instead of raw sql statements | Christoph Wurst | 2016-05-11 | 1 | -18/+27 |
| | |||||
* | fix PHPDoc and other minor issues | Christoph Wurst | 2016-05-11 | 4 | -6/+11 |
| | |||||
* | PHPDoc and other minor fixes | Christoph Wurst | 2016-05-11 | 2 | -6/+26 |
| | |||||
* | Add token auth for OCS APIs | Christoph Wurst | 2016-05-11 | 4 | -4/+26 |
| | |||||
* | Add index on 'last_activity' | Christoph Wurst | 2016-05-11 | 4 | -3/+15 |
| | | | | | | add token type column and delete only temporary tokens in the background job debounce token updates; fix wrong class import | ||||
* | Check if session token is valid and log user out if the check fails | Christoph Wurst | 2016-05-11 | 3 | -14/+66 |
| | | | | | * Update last_activity timestamp of the session token * Check user backend credentials once in 5 minutes | ||||
* | invalidate (delete) session token on logout | Christoph Wurst | 2016-05-11 | 4 | -3/+109 |
| | | | | add 'last_activity' column to session tokens and delete old ones via a background job | ||||
* | token based auth | Christoph Wurst | 2016-05-11 | 6 | -0/+292 |
* Add InvalidTokenException * add DefaultTokenMapper and use it to check if a auth token exists * create new token for the browser session if none exists hash stored token; save user agent * encrypt login password when creating the token |