summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* [tx-robot] updated from transifexNextcloud bot2022-09-086-0/+14
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Revert "[stable24] Compare lowercase email when updating from ldap"blizzz2022-09-071-1/+1
|
* Merge pull request #33920 from nextcloud/backport/33813/stable24Carl Schwan2022-09-071-1/+1
|\ | | | | [stable24] Compare lowercase email when updating from ldap
| * I dug into it again, and the issue is much simpler than I previously though.Louis Chemineau2022-09-061-1/+1
| | | | | | | | | | | | | | | | | | | | | | - LDAP has an email address with capital letters - NC store this address in lower case - When the user logs in, we compare the [stored email with the new lower case email](https://github.com/nextcloud/server/blob/master/lib/private/AllConfig.php#L259-L261) before storing it. Here, both email will be the same, so we won't store the new email address with upper case letters. Which is what we want. - We then [compare emails as they are before triggering an event](https://github.com/nextcloud/server/blob/master/lib/private/User/User.php#L202-L204), they won't match, so the user will receive an email signaling an email change every time he logs in. The fix is to compare the old email with the new lower case email before sending the event. Signed-off-by: Louis Chemineau <louis@chmn.me>
* | [tx-robot] updated from transifexNextcloud bot2022-09-074-26/+40
|/ | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* [tx-robot] updated from transifexNextcloud bot2022-09-062-0/+2
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* [tx-robot] updated from transifexNextcloud bot2022-09-058-0/+8
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* [tx-robot] updated from transifexNextcloud bot2022-09-046-2/+8
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* [tx-robot] updated from transifexNextcloud bot2022-09-0312-12/+0
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* [tx-robot] updated from transifexNextcloud bot2022-09-0212-0/+12
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #33749 from nextcloud/backport/33734/stable24Vincent Petry2022-09-011-1/+1
|\ | | | | [stable24] remove leading slash for search results at mountpoint root
| * remove leading slash for search results at mountpoint rootRobin Appelman2022-08-301-1/+1
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | [tx-robot] updated from transifexNextcloud bot2022-09-0134-2/+60
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Merge pull request #33696 from nextcloud/backport/33375/stable24blizzz2022-08-306-0/+96
|\ \ | | | | | | [stable24] Add back TokenCleanupJob to invalidate old temporary tokens
| * | Add back TokenCleanupJob to invalidate old temporary tokensThomas Citharel2022-08-256-0/+96
| | | | | | | | | | | | Signed-off-by: Thomas Citharel <tcit@tcit.fr>
* | | Merge pull request #33656 from nextcloud/backport/33574/stable24blizzz2022-08-301-2/+6
|\ \ \ | | | | | | | | [stable24] directly build the search filter for shared storage instead of setting up the source cache
| * | | directly build the search filter for shared storage instead of setting up ↵Robin Appelman2022-08-231-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | the source cache Signed-off-by: Robin Appelman <robin@icewind.nl>
* | | | Merge pull request #33603 from nextcloud/jail-search-post-24blizzz2022-08-301-5/+7
|\ \ \ \ | | | | | | | | | | [24] optimize search post-processing for jail wrapper
| * | | | optimize search post-processing for jail wrapperRobin Appelman2022-08-181-5/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | don't both asking the wrapped cache if we know it's not in our jail anyway Signed-off-by: Robin Appelman <robin@icewind.nl>
* | | | | Merge pull request #33514 from nextcloud/backport/33513/stable24blizzz2022-08-301-4/+17
|\ \ \ \ \ | |_|_|_|/ |/| | | | [stable24] Recover installation when creating the database user fails and improve password strength
| * | | | Create more secure passwords by defaultJoas Schilling2022-08-121-4/+10
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
| * | | | Recover installation when creating the user failedJoas Schilling2022-08-121-0/+7
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | | | [tx-robot] updated from transifexNextcloud bot2022-08-292-2/+2
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | | [tx-robot] updated from transifexNextcloud bot2022-08-272-0/+10
| |_|_|/ |/| | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | logger ignore args of sharepoint-related methodsArthur Schiwon2022-08-251-0/+5
| |_|/ |/| | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* | | Merge pull request #33644 from nextcloud/backport/32216/stable24blizzz2022-08-231-6/+13
|\ \ \ | | | | | | | | [stable24] Respect user settings in php.ini if they are big enough
| * | | Fix suggestions by @artonageMicke Nordin2022-08-221-3/+3
| | | | | | | | | | | | | | | | Signed-off-by: Micke Nordin <kano@sunet.se>
| * | | Simpler version as proposed by @artonageMikael Nordin2022-08-221-14/+5
| | | | | | | | | | | | | | | | | | | | Co-authored-by: Louis <6653109+artonge@users.noreply.github.com> Signed-off-by: Micke Nordin <kano@sunet.se>
| * | | Respect user settings in php.ini if they are big enoughMicke Nordin2022-08-221-6/+22
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In the admin guide: * https://docs.nextcloud.com/server/latest/admin_manual/configuration_files/big_file_upload_configuration.html it is mentioned that you can tweek: * max_input_time * max_execution_time in order to enable larger file uploads. However, the current codebase will hard code these values to one hour, no matter what the user sets in php.ini. This patch will allow the user to set these settings in php.ini and they will be respected, if and only if, they are set to something bigger than 3600 seconds. Signed-off-by: Micke Nordin <kano@sunet.se>
* / | [tx-robot] updated from transifexNextcloud bot2022-08-234-2/+4
|/ / | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Merge pull request #33562 from nextcloud/empty-folder-size-24Robin Appelman2022-08-171-13/+17
|\ \ | | | | | | [24] fix updating size when folder is empty
| * | fix updating size when folder is emptyRobin Appelman2022-08-161-13/+17
| | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | | [tx-robot] updated from transifexNextcloud bot2022-08-172-0/+10
|/ / | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | [tx-robot] updated from transifexNextcloud bot2022-08-162-0/+2
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | [tx-robot] updated from transifexNextcloud bot2022-08-152-0/+2
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | [tx-robot] updated from transifexNextcloud bot2022-08-142-2/+2
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | [tx-robot] updated from transifexNextcloud bot2022-08-132-0/+32
|/ | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* [tx-robot] updated from transifexNextcloud bot2022-08-124-2/+4
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Do not update passwords if nothing changedJulius Härtl2022-08-091-3/+6
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* [tx-robot] updated from transifexNextcloud bot2022-08-084-2/+4
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* [tx-robot] updated from transifexNextcloud bot2022-08-072-0/+2
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* [tx-robot] updated from transifexNextcloud bot2022-08-0618-54/+70
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* [tx-robot] updated from transifexNextcloud bot2022-08-0558-56/+58
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #32273 from nextcloud/backport/32152/stable24blizzz2022-08-041-1/+1
|\ | | | | [stable24] Allow compatibility wrapper on local external storage
| * Allow compatibility wrapper on local external storageVincent Petry2022-05-051-1/+1
| | | | | | | | | | | | | | | | The check was likely in place to prevent adding the wrapper on the root and home storage, which is not possible anyway since the encoding option cannot be set on that mount. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
* | Multiple fixesCarl Schwan2022-08-036-24/+199
| | | | | | | | | | | | | | | | | | | | | | - Fix tests - Use non deprecated event stuff - Add a bit of type hinting to the new stuff - More safe handling of instanceOfStorage (share might not be the first wrapper) - Fix resharing Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* | Inherit hide download from share attributesVincent Petry2022-08-031-0/+2
| | | | | | | | | | | | | | When resharing by link, if the download permission was removed through share attributes, convert it to the hide download flag. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
* | Fix view-only code after code review commentsVincent Petry2022-08-032-3/+5
| | | | | | | | Signed-off-by: Vincent Petry <vincent@nextcloud.com>
* | Attempt to fix sqlite json issueVincent Petry2022-08-031-2/+2
| | | | | | | | Signed-off-by: Vincent Petry <vincent@nextcloud.com>
* | Fix share attribute related tests + code styleVincent Petry2022-08-034-24/+11
| | | | | | | | Signed-off-by: Vincent Petry <vincent@nextcloud.com>