summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* Bump doctrine/dbal from 3.0.0 to 3.1.3Christoph Wurst2021-10-223-5/+5
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* [tx-robot] updated from transifexNextcloud bot2021-10-222-0/+32
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #29362 from nextcloud/fix/groupfolder-copy-aclCarl Schwan2021-10-211-1/+4
|\ | | | | Fix security issues when copying groupfolder with advanced ACL
| * Fix security issues when copying groupfolder with advanced ACLCarl Schwan2021-10-211-1/+4
| | | | | | | | | | | | | | | | | | | | Using advanced ACL, it is possible that an user has access to a directory but not to a subdirectory, so the copying use Common::copyFromStorage instead of Local::copyFromStorage. Fix https://github.com/nextcloud/groupfolders/issues/1692 Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* | Merge pull request #23171 from nextcloud/enh/preview/move_to_bootstrapJohn Molakvoæ2021-10-218-2/+143
|\ \
| * | Move preview provider registration to bootstrapRoeland Jago Douma2021-10-218-2/+143
| |/ | | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl> Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | Merge pull request #29256 from ↵Julien Veyssier2021-10-211-2/+2
|\ \ | |/ |/| | | | | nextcloud/fix/noid/harmonize-appstoreenabled-check Fix appstoreenabled check
| * fix appstoreenabled check in Fetcher so it's coherent with AppSettingsControllerJulien Veyssier2021-10-181-2/+2
| | | | | | | | Signed-off-by: Julien Veyssier <eneiluj@posteo.net>
* | [tx-robot] updated from transifexNextcloud bot2021-10-2116-0/+238
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Merge pull request #29330 from nextcloud/fix/missing-profile-config-defaultsblizzz2021-10-201-44/+53
|\ \ | | | | | | Populate missing profile config defaults
| * | Populate defaults into exising profile configChristopher Ng2021-10-201-39/+49
| | | | | | | | | | | | Signed-off-by: Christopher Ng <chrng8@gmail.com>
| * | CleanupChristopher Ng2021-10-201-5/+4
| | | | | | | | | | | | Signed-off-by: Christopher Ng <chrng8@gmail.com>
* | | Merge pull request #29320 from ↵Christoph Wurst2021-10-201-1/+7
|\ \ \ | | | | | | | | | | | | | | | | nextcloud/bugfix/28261/fix-basic-auth-for-oauth-token-endpoint Fix basic auth for OAuth token endpoint
| * | | Fix basic auth for OAuth token endpointJoas Schilling2021-10-191-1/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Don't try to login when a client is trying to get a OAuth token. OAuth needs to support basic auth too, so the login is not valid inside Nextcloud and the Login exception would ruin it. Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | | Change origin field to appIdJoas Schilling2021-10-206-30/+22
| | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | | Do not remove current user on findOneJohn Molakvoæ2021-10-201-14/+14
| | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
* | | | Add appName to contactsmenu action APIJohn Molakvoæ2021-10-204-5/+42
| | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
* | | | Add an OCS endpoint for the hovercard contact actionsJoas Schilling2021-10-202-0/+2
| | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | | [tx-robot] updated from transifexNextcloud bot2021-10-202-0/+4
| |/ / |/| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | Merge pull request #28541 from nextcloud/path-prefix-index2Robin Appelman2021-10-192-1/+27
|\ \ \ | |/ / |/| | add a prefix index to filecache.path, attempt 2
| * | disable path prefix index on postgresql for nowRobin Appelman2021-10-082-1/+27
| | | | | | | | | | | | | | | | | | | | | having the index work properly for the queries we need it for requires some additional options which dbal does not support at the momement. to prevent making it harder to add the correct index later on we don't create the index for now on postgresql Signed-off-by: Robin Appelman <robin@icewind.nl>
* | | Merge pull request #28751 from nextcloud/feat/28139/profile-pagePytal2021-10-1824-56/+1294
|\ \ \
| * | | Profile backendChristopher Ng2021-10-1920-23/+1208
| | | | | | | | | | | | | | | | Signed-off-by: Christopher Ng <chrng8@gmail.com>
| * | | Add new account propertiesChristopher Ng2021-10-194-33/+86
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - New properties - Organisation - Role - Headline - Biography - Profile Enabled property - Fix errors with building default account properties - Fix L10N factory method `getLanguage` not public error - Update tests Signed-off-by: Christopher Ng <chrng8@gmail.com>
* | | | Merge pull request #28403 from nextcloud/work/statusCarl Schwan2021-10-186-9/+106
|\ \ \ \ | | | | | | | | | | Add an API to set and rollback the user status
| * | | | Add an API to set and rollback the user statusCarl Schwan2021-10-186-9/+106
| | |_|/ | |/| | | | | | | | | | Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* | | | Merge pull request #29259 from nextcloud/bugfix/29257/fix-app-upgradeJoas Schilling2021-10-181-8/+10
|\ \ \ \ | |/ / / |/| | | Fix app upgrade
| * | | Fix app upgradeJoas Schilling2021-10-151-8/+10
| | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | | Merge pull request #28768 from nextcloud/check-file-existsJohn Molakvoæ2021-10-181-1/+1
|\ \ \ \ | |_|/ / |/| | |
| * | | Simplify :)acsfer2021-10-041-1/+1
| | | |
| * | | Replace `file_exists()` method by `is_file()`acsfer2021-10-041-1/+1
| | | |
| * | | Get `filesize()` if `file_exists()`acsfer2021-10-011-1/+1
| | | | | | | | | | | | Should make sense.
* | | | Merge pull request #29243 from nextcloud/bugfix/noid/ipropagator-sizedifferenceVincent Petry2021-10-181-1/+2
|\ \ \ \ | | | | | | | | | | Add already used optional sizeDifference parameter to IPropagator
| * | | | Add already used optional sizeDifference parameter to IPropagatorJulius Härtl2021-10-141-1/+2
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | | | | Merge pull request #29210 from nextcloud/work/status-navbar-vueCarl Schwan2021-10-151-1/+15
|\ \ \ \ \ | | | | | | | | | | | | Add current status in navbar
| * | | | | Add current status in navbarCarl Schwan2021-10-151-1/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This ports the code to vue and if the user_status app is disabled this goes back to the previous behavior. The Avatar vue components detects changes of the status automatically. Signed-off-by: Carl Schwan <carl@carlschwan.eu> Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | | | | Merge pull request #29188 from nextcloud/enhancement/public-write-apiDaniel2021-10-154-0/+78
|\ \ \ \ \ \ | | | | | | | | | | | | | | Add calendar object creation API to OCP
| * | | | | | Add create method to extended calendar implementationAnna Larch2021-10-154-0/+78
| | |/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Anna Larch <anna@nextcloud.com> Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | | | | | Merge pull request #27217 from ↵John Molakvoæ2021-10-154-4/+46
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | nextcloud/techdebt/noid/make-debugging-a-cron-job-easier
| * | | | | | Bump autoloaderJoas Schilling2021-10-142-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
| * | | | | | Bump since versionJoas Schilling2021-10-142-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
| * | | | | | Move queries to the joblistJoas Schilling2021-10-142-4/+44
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | | | | | Merge pull request #29235 from nextcloud/feat/appstore/enterpriseJohn Molakvoæ2021-10-153-5/+22
|\ \ \ \ \ \ \ | |_|_|_|_|/ / |/| | | | | |
| * | | | | | Send the subscription key to the appstore requestsJohn Molakvoæ2021-10-143-5/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
* | | | | | | Merge pull request #29231 from nextcloud/fix/calendar-providers-instancesChristoph Wurst2021-10-141-4/+31
|\ \ \ \ \ \ \ | |_|_|/ / / / |/| | | | | | Build instances of the calendar providers before using them
| * | | | | | Build instances of the calendar providers before using themChristoph Wurst2021-10-141-4/+31
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | What we get from the registration context are only the class names. We still have to load the classes before we can use them. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | | | | | Merge pull request #29157 from nextcloud/enh/opendocumentJulius Härtl2021-10-141-0/+15
|\ \ \ \ \ \ | |/ / / / / |/| | | | |
| * | | | | Add OpenDocument flat mimetypes and x-office/drawing aliasJulius Härtl2021-10-121-0/+15
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | | | | | Merge pull request #27194 from nextcloud/new-ftpJohn Molakvoæ2021-10-141-7/+7
|\ \ \ \ \ \ | |_|/ / / / |/| | | | |
| * | | | | make param names consistent with interface for copy directory polyfillRobin Appelman2021-10-071-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>