Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Make the Token Auth code strict | Roeland Jago Douma | 2018-05-15 | 1 | -9/+9 |
| | | | | | | In preparation for #9441 Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl> | ||||
* | Move over TokenMapper | Roeland Jago Douma | 2018-05-10 | 1 | -1/+2 |
| | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl> | ||||
* | Update license headers | Morris Jobke | 2017-11-06 | 1 | -0/+6 |
| | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de> | ||||
* | Fix auth provider | Joas Schilling | 2017-08-02 | 1 | -1/+1 |
| | | | | Signed-off-by: Joas Schilling <coding@schilljs.com> | ||||
* | Fix clob comparison | Joas Schilling | 2017-08-02 | 1 | -1/+1 |
| | | | | Signed-off-by: Joas Schilling <coding@schilljs.com> | ||||
* | More phpstorm inspection fixes | Roeland Jago Douma | 2017-07-24 | 1 | -2/+1 |
| | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl> | ||||
* | Minor typos | Marcel Waldvogel | 2017-07-21 | 1 | -1/+1 |
| | | | | Signed-off-by: Marcel Waldvogel <marcel.waldvogel@uni-konstanz.de> | ||||
* | Rename table back to lowercase | Lukas Reschke | 2017-05-18 | 1 | -8/+8 |
| | | | | Signed-off-by: Lukas Reschke <lukas@statuscode.ch> | ||||
* | delete auth token when client gets deleted | Bjoern Schiessle | 2017-05-18 | 1 | -7/+19 |
| | | | | Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org> | ||||
* | Adds TokenProvider and Mapper tests | Roeland Jago Douma | 2016-11-16 | 1 | -7/+5 |
| | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl> | ||||
* | allow configuring filesystem access | Robin Appelman | 2016-11-16 | 1 | -0/+24 |
| | | | | Signed-off-by: Robin Appelman <icewind@owncloud.com> | ||||
* | app password scope wip | Robin Appelman | 2016-11-16 | 1 | -0/+1 |
| | | | | Signed-off-by: Robin Appelman <icewind@owncloud.com> | ||||
* | read lockdown scope from token | Robin Appelman | 2016-11-16 | 1 | -2/+2 |
| | | | | Signed-off-by: Robin Appelman <icewind@owncloud.com> | ||||
* | bring back remember-me | Christoph Wurst | 2016-11-02 | 1 | -8/+9 |
| | | | | | | | | | | * try to reuse the old session token for remember me login * decrypt/encrypt token password and set the session id accordingly * create remember-me cookies only if checkbox is checked and 2fa solved * adjust db token cleanup to store remembered tokens longer * adjust unit tests Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at> | ||||
* | Fix others | Joas Schilling | 2016-07-21 | 1 | -1/+2 |
| | |||||
* | Merge pull request #25172 from owncloud/token-login-validation | Vincent Petry | 2016-06-22 | 1 | -2/+2 |
|\ | | | | | Token login validation | ||||
| * | store last check timestamp in token instead of session | Christoph Wurst | 2016-06-17 | 1 | -2/+2 |
| | | |||||
* | | close cursor after loading a token | Christoph Wurst | 2016-06-17 | 1 | -0/+1 |
|/ | |||||
* | Update license headers | Lukas Reschke | 2016-05-26 | 1 | -1/+0 |
| | |||||
* | when generating browser/device token, save the login name for later password ↵ | Christoph Wurst | 2016-05-24 | 1 | -2/+2 |
| | | | | checks | ||||
* | add button to invalidate browser sessions/device tokens | Christoph Wurst | 2016-05-23 | 1 | -0/+13 |
| | |||||
* | add method to query all user auth tokens | Christoph Wurst | 2016-05-18 | 1 | -0/+28 |
| | |||||
* | use the query builder instead of raw sql statements | Christoph Wurst | 2016-05-11 | 1 | -18/+27 |
| | |||||
* | Add index on 'last_activity' | Christoph Wurst | 2016-05-11 | 1 | -2/+4 |
| | | | | | | 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 | 1 | -3/+3 |
| | | | | | * 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 | 1 | -0/+32 |
| | | | | add 'last_activity' column to session tokens and delete old ones via a background job | ||||
* | token based auth | Christoph Wurst | 2016-05-11 | 1 | -0/+43 |
* 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 |