Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2022-04-25Only need to setup root for groupfoldersbackport/32084/stable24Robin Appelman
Signed-off-by: Robin Appelman <robin@icewind.nl>
2022-04-25Merge pull request #32138 from ↵Vincent Petry
nextcloud/stable24-directory-listing-optimize-add-submount [stable24] optimize adding submount info to directory content
2022-04-25Merge pull request #32134 from nextcloud/backport/32033/stable24Carl Schwan
[stable24] Fix scanning app data with metadata
2022-04-25optimize adding submount info to directory contentRobin Appelman
no need to loop when we can do a hashtable lookup Signed-off-by: Robin Appelman <robin@icewind.nl>
2022-04-25Merge pull request #32118 from nextcloud/backport/32082/stable24Vincent Petry
[stable24] use a lazy user for the file owner when listing a directory
2022-04-25Merge pull request #32087 from nextcloud/backport/32076/stable24Vincent Petry
[stable24] use and cache root storage info if a share can't be resolved
2022-04-25Merge pull request #32119 from nextcloud/backport/32112/stable24Vincent Petry
[stable24] Add missing index for oc_mounts queries
2022-04-25Fix scanning app data with metadataCarl Schwan
Previously we were listening to change in the appdata folder but an appdata scan didn't setup the file system, so the view was unavailable. **Test plan:** 1. rm -rf data/appdata_...../preview data/<user>/Media 2. occ files:scan-app-data 3. occ files:scan <user> No errors and the files and metadata are correctly removed from the database too. Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-04-25Merge pull request #32116 from nextcloud/backport/32109/stable24Vincent Petry
[stable24] Get not only time-sensitive next job from list but any when not in cron-mode
2022-04-25Use a lazy user for the file owner when listing a directoryRobin Appelman
Only getUID and getDisplayName are called on the file owner objects anyway and we can get this information often without DB request Signed-off-by: Robin Appelman <robin@icewind.nl>
2022-04-25Merge pull request #32065 from nextcloud/backport/32047/stable24Vincent Petry
[stable24] Cache display name
2022-04-25Fix older migrations to the version patternJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-04-25Add missing indexJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-04-25Get not only time-sensitive next job from list but anyKirill Popov
Before the change webcron used to select **only** time-sensitive tasks. Signed-off-by: Kirill Popov <kirill.s.popov@gmail.com>
2022-04-22use and cache root storage info if a share can't be resolvedRobin Appelman
as is a broken share will never be cached Signed-off-by: Robin Appelman <robin@icewind.nl>
2022-04-22only register mounts that are new from providers that are new during a full ↵Robin Appelman
setup this fixes cases where during the (partial) setup of a shared mount a full setup is triggered Signed-off-by: Robin Appelman <robin@icewind.nl>
2022-04-22Merge pull request #32062 from nextcloud/backport/32048/stable24blizzz
[stable24] cache storage info in memcache for 5m
2022-04-22Merge pull request #32066 from nextcloud/backport/32045/stable24blizzz
[stable24] cache fullSetupRequired locally
2022-04-22cache display names in local memory before external memcachebackport/32047/stable24Robin Appelman
Signed-off-by: Robin Appelman <robin@icewind.nl>
2022-04-22Update cache when display name changeCarl Schwan
This improve the correctness of the data Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-04-22Cache display nameCarl Schwan
This should saves some query in the share backend when displaying the owner and it's not important if the display name is 10 minutes outdated as it is very rare that this gets changed. Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-04-22Merge pull request #32027 from nextcloud/backport/32024/stable24blizzz
[stable24] ignore forbidden files while scanning local storage
2022-04-22cache fullSetupRequired locallyRobin Appelman
no need to hit redis every time Signed-off-by: Robin Appelman <robin@icewind.nl>
2022-04-22cache storage info in memcache for 5mRobin Appelman
Signed-off-by: Robin Appelman <robin@icewind.nl>
2022-04-20ignore forbidden files while scanning local storageRobin Appelman
Signed-off-by: Robin Appelman <robin@icewind.nl>
2022-04-20log stacktrace for 'Backends provided no user object'Arthur Schiwon
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
2022-04-14Merge pull request #31826 from nextcloud/fix/log-why-credential-token-invalidVincent Petry
Log why the login token can't be used for credentials
2022-04-14Merge pull request #31975 from ↵Vincent Petry
nextcloud/bugfix/31952/fix-mail-link-share-password-expiration-settings Adjust settings for mail link password
2022-04-14Adjust settings for mail link passwordVincent Petry
Rename the settings and invert the meaning. Increase default interval to one hour. Changed the interval to be a number of seconds, to align with other setting styles. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2022-04-14Merge pull request #31839 from nextcloud/feat/metadata-serverVincent Petry
Add a metadata service to store file metadata
2022-04-14Fix an issue with the search backend updateCarl Schwan
And update autoloader Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-04-13Merge pull request #31945 from nextcloud/fix/user_migration-use-exceptionsVincent Petry
Adapt user_migration APIs to have information about failures
2022-04-13Fix migrators according to exceptionsVincent Petry
Fixed syntax errors. Removed if condition for copyToFolder since it's void now. Change signature of setMigratorVersions to also be void. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2022-04-13Adapt user_migration APIs to have information about failuresCôme Chilliet
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2022-04-13Default to permanent link passwordsVincent Petry
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2022-04-13Properly reset pw expirationVincent Petry
When requesting a new password for share by mail link, now we correctly reset the expiration date. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2022-04-13Add a metadata service to store file metadataCarl Schwan
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-04-13Merge pull request #31932 from nextcloud/feat/ignore_second_dnVincent Petry
Add settings to ignore second display name in search
2022-04-12Add settings to ignore second display name in searchLouis Chemineau
Signed-off-by: Louis Chemineau <louis@chmn.me>
2022-04-12Merge pull request #31929 from nextcloud/enh/noid/zip-expose-statCôme Chilliet
Expose ZIP stat information
2022-04-12Merge pull request #31907 from nextcloud/enh/noid/tag-remote-as-globalscaleMaxence Lange
confirm user is internal to globalscale
2022-04-12confirm user is internal to globalscaleMaxence Lange
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
2022-04-12Merge pull request #31934 from nextcloud/getbyid-setup-fallbackJulius Härtl
perform a setup if we can't find any mounts containing a file
2022-04-12Merge pull request #31220 from nextcloud/enhancement/31005/temporary-passwordsVincent Petry
Temporary passwords for public non-anonymous protected shares (ie: files shared with an email recipient).
2022-04-11Adds a "Request password" button to the public share authentication page for ↵Cyrille Bollu
shares of type TYPE_EMAIL, when the "video verification" checkbox isn't checked. Users accessing non-anonymous public shares (TYPE_EMAIL shares) can now request a temporary password themselves. - Creates a migration step for the files_sharing app to add the 'password_expiration_time' attribute to the oc_shares table. - Makes share temporary passwords' expiration time configurable via a system value. - Adds a system config value to allow permanent share passwords -Fixes a typo in a comment in apps/files_sharing/src/components/SharingEntryLink.vue See https://github.com/nextcloud/server/issues/31005 Signed-off-by: Cyrille Bollu <cyrpub@bollu.be>
2022-04-11perform a setup if we can't find any mounts containing a fileRobin Appelman
Signed-off-by: Robin Appelman <robin@icewind.nl>
2022-04-11Expose ZIP stat informationVincent Petry
Add getStat to OC\Archive\Zip Required to be able to read the mtime and other metadata. To give direct access to mtime Signed-off-by: Vincent Petry <vincent@nextcloud.com> Co-authored-by: Côme Chilliet <come.chilliet@nextcloud.com>
2022-04-11Use Migrators id instead of class namesCôme Chilliet
This will help with UI and means migrators can move in namespaces without changing export format. Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2022-04-11Merge pull request #31848 from ↵Carl Schwan
nextcloud/performance/trottling-capability-frontent Don't inject Bruteforce capability info in the webui
2022-04-11Merge pull request #31610 from nextcloud/shares-in-folder-mountsVincent Petry
fix shared mount roots not being returned from `getSharesInFolder`