aboutsummaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #17941 from nextcloud/search-by-ownerRoeland Jago Douma2019-12-055-19/+56
|\ | | | | Allow filtering the search results to the users home storage
| * add @since to limitToHomeRobin Appelman2019-12-031-0/+1
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
| * remove old 'owner' filterRobin Appelman2019-12-031-5/+0
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
| * Allow filtering the search results to the users home storageRobin Appelman2019-12-035-19/+60
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is done by adding a ```xml <d:eq> <d:prop> <oc:owner-id/> </d:prop> <d:literal>$userId</d:literal> </d:eq> ``` clause to the search query. Searching by `owner-id` can only be done with the current user id and the comparison can not be inside a `<d:not>` or `<d:or>` statement Signed-off-by: Robin Appelman <robin@icewind.nl>
* | Merge pull request #18130 from ↵Roeland Jago Douma2019-12-051-7/+19
|\ \ | | | | | | | | | | | | nextcloud/bugfix/noid/prevent-creating-users-with-existing-files Prevent creating users with existing files
| * | Prevent creating users with existing filesJoas Schilling2019-12-041-7/+19
| | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | [tx-robot] updated from transifexNextcloud bot2019-12-052-2/+2
| | |
* | | Merge pull request #18163 from nextcloud/fix_file_sizeRoeland Jago Douma2019-12-041-1/+3
|\ \ \ | | | | | | | | fix filename size
| * | | fix filename size, add commentGreta Doci2019-12-041-1/+3
| | | | | | | | | | | | | | | | Signed-off-by: Greta Doci <gretadoci@gmail.com>
* | | | Merge pull request #17833 from nextcloud/propagator-no-negative-sizesRoeland Jago Douma2019-12-044-2/+52
|\ \ \ \ | | | | | | | | | | dont set folder size to negative values during propagation
| * | | | dont set folder size to negative values during propagationRobin Appelman2019-11-261-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | normally this shouldn't be a problem, but cache/storage desync might cause this so this adds some failsafe to ensure we dont corrupt the cache further the minimum value is set to -1 instead of 0 in order to triger a background scan on the folder and figure out the size properly Signed-off-by: Robin Appelman <robin@icewind.nl>
| * | | | add LEAST and GREATER to db function builderRobin Appelman2019-11-263-0/+47
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | | | | Merge pull request #18161 from nextcloud/fix/noid/absocsroute-subfolderRoeland Jago Douma2019-12-041-2/+3
|\ \ \ \ \ | | | | | | | | | | | | fix generation of an url to an absolute ocs route when NC in subfolder
| * | | | | fix generation of an url to an absolute ocs route when NC in subfolderArthur Schiwon2019-11-291-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* | | | | | [tx-robot] updated from transifexNextcloud bot2019-12-042-0/+4
| |_|_|/ / |/| | | |
* | | | | Merge pull request #17949 from nextcloud/debt/deprecated-constJoas Schilling2019-12-041-1/+2
|\ \ \ \ \ | | | | | | | | | | | | Connection::TRANSACTION_READ_COMMITTED is deprecated
| * | | | | Connection::TRANSACTION_READ_COMMITTED is deprecatedDaniel Kesselberg2019-11-141-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* | | | | | Merge pull request #18209 from nextcloud/bugfix/noid/directediting-token-getuserRoeland Jago Douma2019-12-041-0/+6
|\ \ \ \ \ \ | | | | | | | | | | | | | | Add missing getUser method to direct editing IToken interface
| * | | | | | Add missing getUser method to direct editing IToken interfaceJulius Härtl2019-12-031-0/+6
| | |_|_|_|/ | |/| | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | | | | | Merge pull request #18215 from nextcloud/fix/setup/password_confirmationRoeland Jago Douma2019-12-041-0/+4
|\ \ \ \ \ \ | | | | | | | | | | | | | | Set last-password-confirmation for setup
| * | | | | | Set last-password-confirmation for setupRoeland Jago Douma2019-12-031-0/+4
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Else you have to enter your password directly after setup if you do anything admin worthy. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* / / / / / [tx-robot] updated from transifexNextcloud bot2019-12-042-24/+24
|/ / / / /
* | | | | Merge pull request #17443 from nextcloud/enh/expired_token_on_invalid_passRoeland Jago Douma2019-12-034-0/+42
|\ \ \ \ \ | | | | | | | | | | | | Throw an invalid token exception is token is marked outdated
| * | | | | Throw an invalid token exception is token is marked outdatedRoeland Jago Douma2019-12-024-0/+42
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This avoids hitting the backend with multiple requests for the same token. And will help avoid quick LDAP lockouts. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | | | | | Merge pull request #18028 from nextcloud/enhancement/user-create-eventsRoeland Jago Douma2019-12-036-8/+155
|\ \ \ \ \ \ | | | | | | | | | | | | | | Add typed create user events
| * | | | | | Add typed create user eventsChristoph Wurst2019-12-036-8/+155
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at> Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | | | | | | Merge pull request #18151 from nextcloud/bugfix/noid/overwrite-host-proxyRoeland Jago Douma2019-12-031-0/+5
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Always return overwritehost if configured
| * | | | | | | Always return overwritehost if configuredJulius Härtl2019-11-281-0/+5
| | |_|_|_|_|/ | |/| | | | | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | | | | | | Merge pull request #18167 from nextcloud/simplify-versioncheckRoeland Jago Douma2019-12-021-2/+2
|\ \ \ \ \ \ \ | |_|_|/ / / / |/| | | | | | Use PHP_VERSION_ID to check for the current php version
| * | | | | | Use PHP_VERSION_ID to check for the current php versionDaniel Kesselberg2019-12-021-2/+2
| | |_|_|/ / | |/| | | | | | | | | | | | | | | | Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* / | | | | [tx-robot] updated from transifexNextcloud bot2019-12-022-0/+16
|/ / / / /
* | | | | Merge pull request #18149 from nextcloud/fix/18148/dont-create-bundle-too-earlyRoeland Jago Douma2019-11-291-11/+17
|\ \ \ \ \ | | | | | | | | | | | | delay creation of the cert bundle
| * | | | | delay creation of the cert bundleArthur Schiwon2019-11-281-11/+17
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | fixes #18148 Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* | | | | Merge pull request #18062 from nextcloud/drop/php71Roeland Jago Douma2019-11-291-3/+3
|\ \ \ \ \ | | | | | | | | | | | | Drop php 7.1 support
| * | | | | Drop php 7.1 supportRoeland Jago Douma2019-11-281-3/+3
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | 18 will be relased when php7.1 is EOL already. So lets kill it! Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | / / / [tx-robot] updated from transifexNextcloud bot2019-11-292-22/+22
| |/ / / |/| | |
* | | | Merge pull request #18134 from nextcloud/enh/noid/flow-extend-scopeRoeland Jago Douma2019-11-288-0/+227
|\ \ \ \ | | | | | | | | | | allow user flows when the acting user is legitimate, but not its owner
| * | | | add convenience interfaces so entities can provide presentable detailsArthur Schiwon2019-11-287-0/+188
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the File entity starts with a display text (used by talk) Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
| * | | | allow user flows when the acting user is legitimate, but not its ownerArthur Schiwon2019-11-282-0/+39
| |/ / / | | | | | | | | | | | | | | | | | | | | for instance, when a sharee changes a file, the owner can act upon Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* | | | Merge pull request #18150 from nextcloud/docs/noid/files-api-exceptionsRoeland Jago Douma2019-11-285-31/+73
|\ \ \ \ | | | | | | | | | | Properly annotate LockedException in files node api
| * | | | Properly anotate LockedException in files node apiJulius Härtl2019-11-285-31/+73
| |/ / / | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* / / / Check for boolean valueJulius Härtl2019-11-281-1/+1
|/ / / | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | | Merge pull request #17625 from nextcloud/enh/noid/direct-editingRoeland Jago Douma2019-11-2812-0/+844
|\ \ \ | | | | | | | | Direct editing API to allow file editing using a one-time token
| * | | Add mimetype to creatorsJulius Härtl2019-11-271-0/+8
| | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
| * | | Code style fixes and cleanupJulius Härtl2019-11-273-8/+5
| | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
| * | | Move editor list to capabilitiesJulius Härtl2019-11-271-2/+7
| | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
| * | | encapsulate templatestobiasKaminsky2019-11-271-1/+3
| | | | | | | | | | | | | | | | Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
| * | | Direct editing API to allow file editing using a one-time token forJulius Härtl2019-11-2712-0/+832
| | | | | | | | | | | | | | | | | | | | | | | | mobile apps Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | | | Merge pull request #17725 from nextcloud/enh/share_exp_internalRoeland Jago Douma2019-11-283-6/+145
|\ \ \ \ | | | | | | | | | | Allow internal shares to have a default expiration date
| * | | | Expose internal expiration dates to JSRoeland Jago Douma2019-11-271-1/+11
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>