summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing
Commit message (Collapse)AuthorAgeFilesLines
* A shared storage is never a home storage - fixes #25582Thomas Müller2016-08-291-0/+10
|
* Sharee API to AppFrameworkRoeland Jago Douma2016-08-263-93/+79
| | | | | | | | * Move to OCSController * Move to Controller folder * Use automatic DI * Use function parameters * Updated tests
* Fix testsRoeland Jago Douma2016-08-241-13/+44
|
* HTTPHelper is deprecatedRoeland Jago Douma2016-08-244-16/+30
| | | | Use the IClientService instead
* Do not error on NotFoundExceptionRoeland Jago Douma2016-08-241-0/+4
| | | | | | | Since this exception can be thrown when a shared file is in the trashbin there is no need to spam the log like crazy. Fixes #938
* prevent infinite recursion while getting storage from mountRobin Appelman2016-08-231-0/+4
|
* handle failed sharesRobin Appelman2016-08-221-1/+3
|
* Lazy init shared storageRobin Appelman2016-08-221-17/+9
|
* reuse existing root idRobin Appelman2016-08-221-1/+1
|
* Cleanup TestsRoeland Jago Douma2016-08-172-173/+80
|
* Move updateShare and getShares over to use proper parametersRoeland Jago Douma2016-08-173-156/+81
| | | | * Update tests
* Use parameters in createShareRoeland Jago Douma2016-08-173-280/+80
| | | | * Fix tests
* Merge pull request #905 from nextcloud/invisible_iconsMorris Jobke2016-08-171-0/+1
|\ | | | | Fix icons on App page in FF
| * Add viewBox to app iconsRoeland Jago Douma2016-08-171-0/+1
| | | | | | | | | | If we don't add a viewbox a lot of browsers will just say NOPE!!! when we ask them to scale.
* | [tx-robot] updated from transifexNextcloud bot2016-08-174-4/+10
|/
* [tx-robot] updated from transifexNextcloud bot2016-08-172-2/+56
|
* [tx-robot] updated from transifexNextcloud bot2016-08-162-2/+68
|
* Merge pull request #855 from nextcloud/files_drop_capabilityRoeland Jago Douma2016-08-152-0/+3
|\ | | | | Add files drop capability for clients
| * Add files drop capability for clientsRoeland Jago Douma2016-08-132-0/+3
| |
* | [tx-robot] updated from transifexNextcloud bot2016-08-152-2/+62
|/
* [tx-robot] updated from transifexNextcloud bot2016-08-134-2/+88
|
* [tx-robot] updated from transifexNextcloud bot2016-08-126-6/+116
|
* [tx-robot] updated from transifexNextcloud bot2016-08-112-2/+2
|
* [tx-robot] updated from transifexNextcloud bot2016-08-1112-0/+36
|
* Merge pull request #807 from nextcloud/ocs_dataresponseRoeland Jago Douma2016-08-103-57/+56
|\ | | | | OCSController requires DataResponse
| * Move the Share20OCS code over to use the proper DataResponseRoeland Jago Douma2016-08-103-57/+56
| |
* | Merge pull request #810 from nextcloud/shared-cachethepropagatorinstanceLukas Reschke2016-08-101-1/+6
|\ \ | | | | | | Store the shared propagator instance
| * | Store the shared propagator instanceVincent Petry2016-08-101-1/+6
| |/ | | | | | | This instead of recreating it for every call.
* | Merge pull request #820 from nextcloud/shared-storage-lazy-numeric-idBjörn Schießle2016-08-101-0/+13
|\ \ | |/ |/| get shared storage storage id without setting up the storage
| * get shared storage storage id without setting up the storageRobin Appelman2016-08-091-0/+13
| |
* | [tx-robot] updated from transifexNextcloud bot2016-08-102-0/+36
|/
* [tx-robot] updated from transifexNextcloud bot2016-08-0938-76/+76
|
* More casingJoas Schilling2016-08-081-1/+1
|
* Increment the versions and adjust the capitilizationJoas Schilling2016-08-081-2/+2
|
* Merge pull request #445 from nextcloud/ocs_share_to_appframeworkLukas Reschke2016-08-088-606/+693
|\ | | | | OCS Share API to appframework
| * Fix testsRoeland Jago Douma2016-08-053-399/+365
| |
| * Add OCSShareAPIMiddleware testsRoeland Jago Douma2016-08-052-1/+115
| |
| * DataResponse required ['data' => DATA]Roeland Jago Douma2016-08-051-9/+9
| |
| * More exceptionsRoeland Jago Douma2016-08-051-57/+24
| |
| * Add OCSShareAPIMiddlewareRoeland Jago Douma2016-08-053-75/+86
| | | | | | | | | | * This will cleanup the locks after each request * Move check for enabled share api to the middleware
| * Throw OCSNotFoundExceptionsRoeland Jago Douma2016-08-051-91/+40
| |
| * Remove unneeded wrapperRoeland Jago Douma2016-08-051-64/+0
| |
| * Convert Share API to use the AppFrameworkRoeland Jago Douma2016-08-053-87/+231
| |
* | [tx-robot] updated from transifexNextcloud bot2016-08-062-26/+54
| |
* | Move Share backends to PSR-4 instead of using class path (#24941)Joas Schilling2016-08-054-7/+9
|/
* [tx-robot] updated from transifexNextcloud bot2016-08-054-4/+4
|
* [tx-robot] updated from transifexNextcloud bot2016-08-042-4/+4
|
* Make share target consistent when grouping group share with user shareVincent Petry2016-08-032-12/+55
| | | | | | | | | | | | | | | | In some situations, a group share is created before a user share, and the recipient renamed the received share before the latter is created. In this situation, the "file_target" was already modified and the second created share must align to the already renamed share. To achieve this, the MountProvider now groups only by "item_source" value and sorts by share time. This makes it so that the least recent share is selected as super-share and its "file_target" value is then adjusted in all grouped shares. This fixes the issue where this situation would have different "file_target" values resulting in two shared folders appearing instead of one.
* Added more tests for sharing's MountProviderVincent Petry2016-08-031-0/+158
|
* Improved share grouping readability + fixed testVincent Petry2016-08-032-60/+64
|