summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #27055 from nextcloud/version/19.0.12v19.0.12Morris Jobke2021-05-211-2/+2
|\ | | | | 19.0.12
| * 19.0.12Morris Jobke2021-05-211-2/+2
|/ | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Use proper query method. No get yet on stable19Roeland Jago Douma2021-05-211-1/+1
|
* [tx-robot] updated from transifexv19.0.11Nextcloud bot2021-05-0722-2/+22
|
* Merge pull request #26895 from nextcloud/version/19.0.11Morris Jobke2021-05-061-2/+2
|\ | | | | 19.0.11
| * 19.0.11Morris Jobke2021-05-061-2/+2
|/ | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* [tx-robot] updated from transifexNextcloud bot2021-05-0672-70/+28
|
* [tx-robot] updated from transifexNextcloud bot2021-05-0438-22/+116
|
* [tx-robot] updated from transifexNextcloud bot2021-05-032-0/+2
|
* [tx-robot] updated from transifexNextcloud bot2021-05-024-12/+12
|
* [tx-robot] updated from transifexNextcloud bot2021-05-0122-28/+316
|
* Merge pull request #26837 from nextcloud/version/19.0.11/finalv19.0.11RC1Roeland Jago Douma2021-04-302-79/+65
|\ | | | | 19.0.11 RC1
| * Update bundleRoeland Jago Douma2021-04-301-77/+63
| | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
| * 19.0.11 RC1Roeland Jago Douma2021-04-291-2/+2
| | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | Merge pull request #26543 from nextcloud/stable19-26433Roeland Jago Douma2021-04-301-0/+8
|\ \ | | | | | | [stable19] Limit size of properties to 2048 characters
| * | Limit size of properties to 2048 charactersLukas Reschke2021-04-291-0/+8
| |/ | | | | | | | | | | | | | | | | | | | | It is unreasonable to expect that one of these fields would be longer than 2048 characters. Whilst some have definitely lower limits (such as for phone numbers or domain names), a upper bound as sanity check makes sense. Backport of https://github.com/nextcloud/server/pull/26433 Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
* | [tx-robot] updated from transifexNextcloud bot2021-04-30154-258/+280
| |
* | Merge pull request #25974 from ↵Roeland Jago Douma2021-04-2913-104/+773
|\ \ | | | | | | | | | | | | nextcloud/backport/25417/stable19-fix-account-data-visibility-after-disabling-public-addressbook-upload [stable19] Fix account data visibility after disabling public addressbook upload
| * | Handle corrupted scope valuesDaniel Calviño Sánchez2021-04-232-8/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Due to a bug (fixed some commits ago) in the UsersController of the settings app the scope of the properties can be null (for example, if lookup server upload was disabled and the user then changed the display name in the profile information). In that case now the scope menu icon shows an error to inform the user. The scope value will not change when other properties are modified until the user chooses an explicit value from the menu. Note that until a scope is explicitly set the property will behave as if it is private. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * | Fix settings scope menu hidden when lookup server upload is disabledDaniel Calviño Sánchez2021-04-235-32/+94
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When upload to the lookup server is disabled the scope menu was hidden in the personal information settings. However, even if the lookup server upload is disabled the personal information is still accesible from the local server as well as trusted servers. Users should be able to still set if their information is available to other users or if it is private, so now the scope menu is always show (although the "Public" option is hidden if the lookup server upload is disabled). If the user set the information as public before the upload to the lookup server was disabled the menu will also show the "Public" option as active, although disabled. Setting the visibility to any of the other options will hide the "Public" option from the menu (until the lookup server upload is enabled again). Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * | Add integration tests for searching users in contacts menuDaniel Calviño Sánchez2021-04-234-0/+283
| | | | | | | | | | | | Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * | Make possible to set body in requesttoken requests in integration testsDaniel Calviño Sánchez2021-04-231-7/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | "sendingAToWithRequesttoken" needs to be used to test some non OCS endpoints which require the request token to be sent in the request. Now it is possible to specify the body (or, rather, additional contents beside the cookies and the request token) for those requests, as it will be needed for example to update the user profile. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * | Fix deleting properties of user settings when not given explicitlyDaniel Calviño Sánchez2021-04-232-13/+163
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The controller can receive an optional subset of the properties of the user settings; values not given are set to "null" by default. However, those null values overwrote the previously existing values, so in practice any value not given was deleted from the user settings. Now only non null values overwrite the previous values. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * | Fix TypeError when "email" is not given in the controller requestDaniel Calviño Sánchez2021-04-231-1/+1
| | | | | | | | | | | | Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * | Respect additional user settings not covered by the controllerDaniel Calviño Sánchez2021-04-232-13/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | "AccountManager::updateUser()" wipes previous user data with whichever user data is given (except for some adjustments, like resetting the verified status when needed). As the controller overrode the properties those properties would lose some of their attributes even if they are not affected by the changes made by the controller. Now the controller only modifies the attributes set ("value" and "scope") to prevent that. Note that with this change the controller no longer removes the "verified" status, but this is not a problem because, as mentioned, "AccountManager::updateUser()" resets them when needed (for example, when the value of the website property changes). This change is a previous step to fix overwritting properties with null values, and it will prevent the controller from making unexpected changes if more attributes are added in the future. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * | Add more unit tests for setting user settingsDaniel Calviño Sánchez2021-04-231-0/+145
| | | | | | | | | | | | Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * | Change default test data to values less similar to empty valuesDaniel Calviño Sánchez2021-04-231-12/+12
| | | | | | | | | | | | | | | | | | | | | Right now it makes no difference, but this should make future tests clearer, specially in case of failure. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * | Extract default test data to a helper getterDaniel Calviño Sánchez2021-04-231-42/+46
| | | | | | | | | | | | Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * | Use constants from interface rather than classDaniel Calviño Sánchez2021-04-232-36/+38
| | | | | | | | | | | | Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* | | Merge pull request #26629 from nextcloud/backport/25189/stable19Roeland Jago Douma2021-04-294-0/+135
|\ \ \ | |_|/ |/| | [stable19] add command to repair broken filesystem trees
| * | cast intsRobin Appelman2021-04-191-2/+2
| | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
| * | handle the cache where a cache entry with the correct path has already been ↵Robin Appelman2021-04-191-6/+28
| | | | | | | | | | | | | | | | | | recreated Signed-off-by: Robin Appelman <robin@icewind.nl>
| * | also repair storage idRobin Appelman2021-04-191-0/+3
| | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
| * | add command to repair broken filesystem treesRobin Appelman2021-04-194-0/+110
| | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | | Merge pull request #26825 from nextcloud/backport/26811/stable19Morris Jobke2021-04-297-3/+133
|\ \ \ | | | | | | | | [stable19] Do not try to contact lookup server if not needed
| * | | Do not try to contact lookup server if not neededRoeland Jago Douma2021-04-297-3/+133
| | | | | | | | | | | | | | | | | | | | | | | | | | | | In some cases (for example you never send data to the lookup server) there is no need for this job to even try. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | | | Merge pull request #26787 from nextcloud/backport/26718/stable19Roeland Jago Douma2021-04-294-21/+22
|\ \ \ \ | |/ / / |/| | | [stable19] Fix ratelimit template
| * | | 429 template is NC20+ and fix getDelay for CLIJoas Schilling2021-04-293-4/+12
| | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
| * | | Fix Nextcloud19 compatibilityJoas Schilling2021-04-282-3/+3
| | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
| * | | Do not allow to overwrite some variablesJoas Schilling2021-04-271-1/+3
| | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
| * | | Fix ratelimit templateJoas Schilling2021-04-272-25/+16
| | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | | Merge pull request #26780 from nextcloud/backport/26765/stable19Roeland Jago Douma2021-04-2934-207/+32
|\ \ \ \ | | | | | | | | | | [stable19] No longer add trusted servers on federated share creation
| * | | | Bump composerRoeland Jago Douma2021-04-2828-64/+28
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
| * | | | Run cs:fixLukas Reschke2021-04-271-2/+0
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
| * | | | No longer add trusted servers on federated share creationRoeland Jago Douma2021-04-2711-185/+48
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | It was disabled by default for ages. And often resulted in unwanted behavior. If admins want trusted servers they just have to do it manually. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | | | [tx-robot] updated from transifexNextcloud bot2021-04-29134-204/+214
| | | |
* | | | Merge pull request #26807 from nextcloud/backport/26647/stable19Morris Jobke2021-04-281-0/+3
|\ \ \ \ | | | | | | | | | | [stable19] Fail when creating new files with an empty path
| * | | | Fail when creating new files with an empty pathJulius Härtl2021-04-281-0/+3
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | | | | Merge pull request #26810 from nextcloud/backport/25659/stable19Julius Härtl2021-04-2810-25/+15
|\ \ \ \ \ | |/ / / / |/| | | | [stable19] catch notfound and forbidden exception in smb::getmetadata
| * | | | catch notfound and forbidden exception in smb::getmetadataRobin Appelman2021-04-2810-25/+15
|/ / / / | | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>