aboutsummaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | Run session token renewals in a database transactionChristoph Wurst2022-11-031-23/+32
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The session token renewal does 1) Read the old token 2) Write a new token 3) Delete the old token If two processes succeed to read the old token there can be two new tokens because the queries were not run in a transaction. This is particularly problematic on clustered DBs where 1) would go to a read node and 2) and 3) go to a write node. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* / / [tx-robot] updated from transifexNextcloud bot2022-11-0412-0/+24
|/ / | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | [tx-robot] updated from transifexNextcloud bot2022-11-03128-254/+256
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | [tx-robot] updated from transifexNextcloud bot2022-11-022-2/+2
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | [tx-robot] updated from transifexNextcloud bot2022-10-312-0/+2
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | [tx-robot] updated from transifexNextcloud bot2022-10-306-0/+16
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | [tx-robot] updated from transifexNextcloud bot2022-10-292-0/+18
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | [tx-robot] updated from transifexv24.0.7rc1Nextcloud bot2022-10-286-2/+204
|/ | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #34770 from nextcloud/backport/34579/stable24John Molakvoæ2022-10-271-1/+1
|\ | | | | [stable24] fix null error in getUnencryptedSize
| * fix null error in getUnencryptedSizeRobin Appelman2022-10-241-1/+1
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | Merge pull request #34845 from nextcloud/dependaskjnldsv/32413/stable24John Molakvoæ2022-10-275-26/+11
|\ \ | | | | | | [stable24] Fix psalm errors fron the end of the baseline file
| * | Fix psalm errors fron the end of the baseline fileCarl Schwan2022-10-275-26/+11
| | | | | | | | | | | | Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* | | Merge pull request #34440 from nextcloud/backport/32635/stable24John Molakvoæ2022-10-271-2/+5
|\ \ \
| * | | Update lib/private/Contacts/ContactsMenu/ContactsStore.php Andy Xheli2022-10-271-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Andy Xheli <axheli@axtsolutions.com> Tested no issues. Co-authored-by: Pytal <24800714+Pytal@users.noreply.github.com> Signed-off-by: Andy Xheli <axheli@axtsolutions.com>
| * | | Update ContactsStore.phpAndy Xheli2022-10-271-1/+1
| | | | | | | | | | | | Signed-off-by: Andy Xheli <axheli@axtsolutions.com>
| * | | Apply suggestions from code review Andy Xheli2022-10-271-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Andy Xheli <axheli@axtsolutions.com> Co-authored-by: Carl Schwan <carl@carlschwan.eu> Signed-off-by: Andy Xheli <axheli@axtsolutions.com>
| * | | Fix User profile picture when performing the searchAndy Xheli2022-10-271-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Andy Xheli <axheli@axtsolutions.com> Before ![image](https://user-images.githubusercontent.com/59488153/140980158-b9108161-57ab-48b4-ae6f-98ec4e72775a.png) After Fix for #31065
* | | | Merge pull request #34797 from nextcloud/backport/33540/stable24Vincent Petry2022-10-271-1/+6
|\ \ \ \ | |_|/ / |/| | | [stable24] fix updating cached mounts that didn't have their mount provider set previously
| * | | fix updating cached mounts that didn't have their mount provider set previouslyRobin Appelman2022-10-251-1/+6
| | | | | | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | | | Merge pull request #34410 from nextcloud/backport/33566/stable24John Molakvoæ2022-10-272-2/+19
|\ \ \ \
| * | | | trigger a rescan when trying to fopen a file that exists in cache but not on ↵Robin Appelman2022-10-062-2/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | disk Signed-off-by: Robin Appelman <robin@icewind.nl>
* | | | | Merge pull request #34032 from nextcloud/backport/34019/stable24John Molakvoæ2022-10-272-4/+4
|\ \ \ \ \ | |_|_|/ / |/| | | | [stable24] Fix quota type to int
| * | | | Fix quota type to intCarl Schwan2022-09-122-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change the quota to int from float, since the quota is a number of bits and a bits can not be splitted. Fix #34010 Signed-off-by: Carl Schwan <carl@carlschwan.eu> Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
| * | | | Fix quota type to intCarl Schwan2022-09-121-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change the quota to int from float, since the quota is a number of bits and a bits can not be splitted. Fix #34010 Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* | | | | Merge pull request #34447 from nextcloud/backport/34302/stable24Vincent Petry2022-10-271-18/+29
|\ \ \ \ \ | | | | | | | | | | | | [stable24] Fix: Prevent deadlocks during mtime/size/etag propagation
| * | | | | Fix unencrypted size calculation for files created before the Encryption ↵raul2022-10-251-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | storage is enabled Signed-off-by: raul <raul@nextcloud.com>
| * | | | | Fix: Prevent deadlocks during mtime/size/etag propagationraul2022-10-251-17/+29
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: raul <raul@nextcloud.com>
* | | | | | [tx-robot] updated from transifexNextcloud bot2022-10-276-8/+54
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | | | [tx-robot] updated from transifexNextcloud bot2022-10-264-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | | | Fix autoloadersCôme Chilliet2022-10-252-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* | | | | | Update lib/public/User/Backend/ICountMappedUsersBackend.phpCôme Chilliet2022-10-251-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | Co-authored-by: Simon L. <szaimen@e.mail.de> Signed-off-by: Côme Chilliet <91878298+come-nc@users.noreply.github.com>
* | | | | | Add missing fileCôme Chilliet2022-10-251-0/+39
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* | | | | | Expose mapped user count from LDAP and use that for user limit checkCôme Chilliet2022-10-251-3/+5
|/ / / / / | | | | | | | | | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* | | | | Merge pull request #34730 from nextcloud/backport/33945/stable24Vincent Petry2022-10-257-20/+138
|\ \ \ \ \ | |_|_|/ / |/| | | | [stable24] LDAP to not register new users when outside of fair use or over limits
| * | | | Fix return types of createUser methodCôme Chilliet2022-10-251-2/+2
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
| * | | | Fix createUser return type in docblock to match codeCôme Chilliet2022-10-241-1/+1
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
| * | | | extended hint messageblizzz2022-10-241-1/+1
| | | | | | | | | | | | | | | | | | | | Co-authored-by: Simon L. <szaimen@e.mail.de> Signed-off-by: blizzz <blizzz@arthur-schiwon.de>
| * | | | improve admin notification experienceArthur Schiwon2022-10-241-8/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - do not stack notifications, replace them - and replace them once a day only - with LDAP it might end in total spam terror (also push) otherwise Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
| * | | | LDAP to no register new users when outside of fair use or over limitsArthur Schiwon2022-10-246-11/+110
| | |_|/ | |/| | | | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* / | | [tx-robot] updated from transifexNextcloud bot2022-10-256-0/+16
|/ / / | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | [tx-robot] updated from transifexNextcloud bot2022-10-2410-34/+104
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | fix external storages accessszaimen2022-10-231-3/+1
| | | | | | | | | | | | Signed-off-by: szaimen <szaimen@e.mail.de>
* | | [tx-robot] updated from transifexNextcloud bot2022-10-2310-26/+40
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | [tx-robot] updated from transifexNextcloud bot2022-10-2262-62/+62
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | [tx-robot] updated from transifexNextcloud bot2022-10-214-10/+16
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | Merge pull request #34454 from nextcloud/backport/33737/stable24blizzz2022-10-191-1/+1
|\ \ \ | | | | | | | | [stable24] Makes untrusted domain error on info
| * | | Makes untrusted domain error on infoAndy Xheli2022-10-061-1/+1
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Andy Xheli <axheli@axtsolutions.com> Since https://github.com/nextcloud/server/commit/e6d9ef2e38daffcab808eaa41b18ab16c6253b97 was applied logs get filled up with Trusted domain error. "X.X.X.X tried to access using "X.X.X.X" as host alot of users missed important errors do tohttps://github.com/nextcloud/server/commit/e6d9ef2e38daffcab808eaa41b18ab16c6253b97 please see https://github.com/nextcloud/server/issues/32599 This should fix. https://github.com/nextcloud/server/issues/32599#event-7281164903 Signed-off-by: Andy Xheli <axheli@axtsolutions.com>
* | | [tx-robot] updated from transifexNextcloud bot2022-10-192-0/+10
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | [tx-robot] updated from transifexNextcloud bot2022-10-162-0/+8
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | [tx-robot] updated from transifexNextcloud bot2022-10-144-4/+16
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>