| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Remove delete permissions for read-only federated reshares
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
An incomming federated share is just a mount point. Therefor if we
request the permissions on the mountpoint DELETE permissions will be
returned (among others). Since we can always remove a mountpoint, update
a mount point.
However now when trying to reshare we will try to reshare with DELETE
permissions. Which is false.
This PR removes the delete permissions if it is a shared storage.
Basically a quick hack.
Fixes #22587
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Rename system tags app to collaborative tags
|
| | |/ / / /
| |/| | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Allow theming of actions
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Action icons now appear properly in public link page.
More actions are now CSS icons.
|
| | | | | | | |
|
| | |_|_|_|/
| |/| | | |
| | | | | |
| | | | | | |
This makes theming of file actions possible
|
|\ \ \ \ \ \
| |_|/ / / /
|/| | | | | |
Fix verifyExpirationDate passwordSet argument
|
| | |/ / /
| |/| | |
| | | | |
| | | | |
| | | | |
| | | | | |
Password set should be false if the password is null.
Also updated the unit tests to tests this now.
|
| |/ / /
|/| | | |
|
|\ \ \ \
| | | | |
| | | | | |
Before installing new shipped apps we need to load authentication apps
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
fixes #22508
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Add integration test for CSRF protection on DAV
|
| | | | | | |
|
| | |_|/ /
| |/| | |
| | | | |
| | | | |
| | | | |
| | | | | |
This adds the integration tests for the CSRF protection on the DAV backend introduced with 9.0.
Fixes https://github.com/owncloud/core/issues/22598
|
|\ \ \ \ \
| | | | | |
| | | | | | |
add download icon for image detail view, ref gallery issue 51
|
| | |_|_|/
| |/| | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Fix formatting of response
|
| | |/ / /
| |/| | |
| | | | |
| | | | | |
The elements are expected to be within a `service` array as per specification.
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
Exclude ocs-provider from rewrite rule
|
|/ / / /
| | | |
| | | |
| | | |
| | | | |
Otherwise `localhost/ocs-provider/` cannot be accessed if mod_rewrite is install
ed. Only affects master.
|
|\ \ \ \
| | | | |
| | | | | |
inject the correct external share manager into the storage
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Fix addUserToGroup hook of the share code
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
* sets up the filesystem of the user that is added to a group
to properly accept shares
* fixes #18499
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Skip users with no trashbin
|
| | |_|/ / /
| |/| | | | |
|
|\ \ \ \ \ \
| |_|_|/ / /
|/| | | | | |
Add the uid on hover for sharing autocomplete
|
| | | | | | |
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Fix HTTPS support on external storages
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
The current logic is checking whether:
1. The returned value is a boolen
2. The returned value is a string and then matches for "true"
Since the config is now written to the database the data is now a string with the value "1" if HTTPS is set to true. Effectively this option was thus always disabled at the moment, falling back to plain HTTP.
This change casts the data to a boolean if it is defined as boolean.
Fixes https://github.com/owncloud/core/issues/22605
Fixes https://github.com/owncloud/core/issues/22016
|
| | |/ / / /
| |/| | | |
| | | | | |
| | | | | | |
Otherwise debugging issues is a PITA
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Copy into local file
|
| | | | | | | |
|
| | |_|_|_|/
| |/| | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Using the Guzzle stream directly here will only return 1739 characters for `fread` instead of all data. This leads to the problem that the stream is read incorrectly and thus the data cannot be properly decrypted => :bomb:
This approach copies the data into a local temporary file, as done before in all stable releases as well as other storage connectors.
While this approach will load the whole file into memory, this is already was has happened before in any stable release as well. See https://github.com/owncloud/core/commit/d608c37c90c308d0518d854de908ec4be5f462dc for the breaking change.
To test this enable Google Drive as external storage and upload some files with encryption enabled. Reading the file should fail now.
Fixes https://github.com/owncloud/core/issues/22590
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Disable sharing by default for external storage mounts
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
This is for newly created mount points.
Migrated mount points will have sharing enabled as before.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
take the first result of that array, if present. Fixes 2nd display na…
|
| | |_|/ / / /
| |/| | | | |
| | | | | | |
| | | | | | | |
be 'Array', if cache is configured and enabled.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Heal unencrypted file sizes at download time (second approach)
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
not correct
|
|\ \ \ \ \ \ \ \
| |_|_|_|/ / / /
|/| | | | | | | |
Don't show PCNTL warning if --no-warnings is passed
|
|/ / / / / / /
| | | | | | |
| | | | | | |
| | | | | | | |
* fixes owncloud/updater#252
|
| |/ / / / /
|/| | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Enable upstream entrypoint changes with Ceph Docker
|