summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* Clean pending 2FA authentication on password resetRoeland Jago Douma2019-01-301-0/+9
| | | | | | | | | | | When a password is reste we should make sure that all users are properly logged in. Pending states should be cleared. For example a session where the 2FA code is not entered yet should be cleared. The token is now removed so the session will be killed the next time this is checked (within 5 minutes). Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* [tx-robot] updated from transifexNextcloud bot2019-01-264-8/+8
|
* Merge pull request #13707 from ↵Morris Jobke2019-01-251-0/+3
|\ | | | | | | | | nextcloud/backport/13473/dont-log-parameters-on-user-creation-in-case-of-error [stable13] Don't log parameters on user creation in case of error/exception
| * Don't log parameters on user creation in case of error/exceptionJoas Schilling2019-01-211-0/+3
| | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | cleanup shared lock if changing to exclusive lock failedRobin Appelman2019-01-221-1/+7
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | [tx-robot] updated from transifexNextcloud bot2019-01-222-2/+2
|/
* [tx-robot] updated from transifexNextcloud bot2019-01-202-2/+2
|
* [tx-robot] updated from transifexNextcloud bot2019-01-172-4/+4
|
* [tx-robot] updated from transifexNextcloud bot2019-01-164-10/+10
|
* [tx-robot] updated from transifexNextcloud bot2019-01-152-20/+20
|
* [tx-robot] updated from transifexNextcloud bot2019-01-142-112/+112
|
* [tx-robot] updated from transifexNextcloud bot2019-01-122-4/+4
|
* [tx-robot] updated from transifexNextcloud bot2019-01-102-2/+2
|
* [tx-robot] updated from transifexNextcloud bot2019-01-052-4/+4
|
* [tx-robot] updated from transifexNextcloud bot2019-01-042-30/+30
|
* [tx-robot] updated from transifexNextcloud bot2019-01-032-4/+4
|
* [tx-robot] updated from transifexNextcloud bot2019-01-012-6/+130
|
* [tx-robot] updated from transifexNextcloud bot2018-12-312-2/+22
|
* [tx-robot] updated from transifexNextcloud bot2018-12-304-2/+10
|
* [tx-robot] updated from transifexNextcloud bot2018-12-282-2/+12
|
* [tx-robot] updated from transifexNextcloud bot2018-12-272-2/+2
|
* [tx-robot] updated from transifexNextcloud bot2018-12-172-0/+18
|
* [tx-robot] updated from transifexNextcloud bot2018-12-162-2/+6
|
* [tx-robot] updated from transifexNextcloud bot2018-12-152-2/+2
|
* [tx-robot] updated from transifexNextcloud bot2018-12-062-2/+2
|
* Only execute query in propagateChange onceRoeland Jago Douma2018-12-051-2/+2
| | | | | | | The second execute statement should be inside the if block. Else it gets executed twice which makes no sense. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Merge pull request #12835 from nextcloud/backport/12831/stable13Morris Jobke2018-12-051-0/+1
|\ | | | | [stable13] Do not update child all child shares on group share update
| * Do not update child all child shares on group share updateRoeland Jago Douma2018-12-041-0/+1
| | | | | | | | | | | | | | Else we overwrite the whole share for link shares. Basically breaking them. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | [tx-robot] updated from transifexNextcloud bot2018-12-052-2/+2
|/
* PHP module is named mbstringMorris Jobke2018-12-041-1/+1
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* [tx-robot] updated from transifexNextcloud bot2018-11-302-2/+48
|
* [tx-robot] updated from transifexNextcloud bot2018-11-292-0/+412
|
* [tx-robot] updated from transifexNextcloud bot2018-11-272-0/+14
|
* [tx-robot] updated from transifexNextcloud bot2018-11-252-4/+4
|
* [tx-robot] updated from transifexNextcloud bot2018-11-23106-984/+162
|
* Bearer tokens are app tokenRoeland Jago Douma2018-11-201-0/+4
| | | | | | | | | | Fixes #12498 This means that we set that it is a proper app token once it is validated. This will allow the 2FA middleware to just run the same check. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* forward object not found error in swift as dav 404Robin Appelman2018-11-192-8/+22
| | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* [tx-robot] updated from transifexNextcloud bot2018-11-162-0/+10
|
* [tx-robot] updated from transifexNextcloud bot2018-11-152-0/+2
|
* Merge pull request #12376 from nextcloud/backport/12284/stable13Roeland Jago Douma2018-11-131-1/+1
|\ | | | | [13] Properly search the root of a shared external storage
| * Properly search the root of a shared external storageRoeland Jago Douma2018-11-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | Fixes #1020 When an external storage is shared with you in full the root is '' (empty). This adds an extra check for an empty jail basically. Because if the jail is on the empty string. It matches all paths. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | Fix UniqueConstraintViolationException while insert into oc_file_locksMorris Jobke2018-11-131-1/+12
| | | | | | | | | | | | | | | | | | * fixes #9305 by not being prone to the race condition in insertIfNotExists * fixes #6899 by not using a query that can result in a deadlock * replaces the insertIfNotExists call with an insert which is wrapped into a try-catch block * followup to #12371 Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* | Fix UniqueConstraintViolationException while insert into oc_filecacheMorris Jobke2018-11-131-7/+18
| | | | | | | | | | | | | | | | * fixes #6160 by not being prone to the race condition in insertIfNotExists * fixes #12228 by not using a query that can result in a deadlock * replaces the insertIfNotExists call with an insert which is wrapped into a try-catch block Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* | [tx-robot] updated from transifexNextcloud bot2018-11-134-2/+16
| |
* | [tx-robot] updated from transifexNextcloud bot2018-11-122-0/+2
| |
* | [tx-robot] updated from transifexNextcloud bot2018-11-112-0/+2
|/
* [tx-robot] updated from transifexNextcloud bot2018-11-064-2/+16
|
* [tx-robot] updated from transifexNextcloud bot2018-11-052-0/+6
|
* [tx-robot] updated from transifexNextcloud bot2018-11-042-2/+2
|
* Error out early on an expired tokenRoeland Jago Douma2018-11-021-1/+11
| | | | | | | | | | | | | Fixes #12131 If we hit an expired token there is no need to continue checking. Since we know it is a token. We also should not register this with the bruteforce throttler as it is actually a valid token. Just expired. Instead the authentication should fail. And buisness continues as usual. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>