32
32
use OC \Files \Storage \Wrapper \Wrapper ;
33
33
use OCA \Files_Trashbin \Events \MoveToTrashEvent ;
34
34
use OCA \Files_Trashbin \Trash \ITrashManager ;
35
+ use OCP \App \IAppManager ;
35
36
use OCP \Encryption \Exceptions \GenericEncryptionException ;
36
37
use OCP \EventDispatcher \IEventDispatcher ;
37
38
use OCP \Files \IRootFolder ;
38
39
use OCP \Files \Node ;
39
40
use OCP \Files \Storage \IStorage ;
41
+ use OCP \IRequest ;
40
42
use OCP \IUserManager ;
43
+ use OCP \Server ;
41
44
use Psr \Log \LoggerInterface ;
42
45
43
46
class Storage extends Wrapper {
@@ -65,7 +68,8 @@ public function __construct(
65
68
?IUserManager $ userManager = null ,
66
69
?LoggerInterface $ logger = null ,
67
70
?IEventDispatcher $ eventDispatcher = null ,
68
- ?IRootFolder $ rootFolder = null
71
+ ?IRootFolder $ rootFolder = null ,
72
+ private ?IRequest $ request = null ,
69
73
) {
70
74
$ this ->mountPoint = $ parameters ['mountPoint ' ];
71
75
$ this ->trashManager = $ trashManager ;
@@ -173,26 +177,26 @@ protected function createMoveToTrashEvent(Node $node) {
173
177
* @return bool true if the operation succeeded, false otherwise
174
178
*/
175
179
private function doDelete ($ path , $ method ) {
176
- if (
177
- !\OC ::$ server ->getAppManager ()->isEnabledForUser ('files_trashbin ' )
178
- || (pathinfo ($ path , PATHINFO_EXTENSION ) === 'part ' )
179
- || $ this ->shouldMoveToTrash ($ path ) === false
180
- ) {
181
- return call_user_func ([$ this ->storage , $ method ], $ path );
182
- }
180
+ $ isTrashbinEnabled = Server::get (IAppManager::class)->isEnabledForUser ('files_trashbin ' );
181
+ $ isPartFile = pathinfo ($ path , PATHINFO_EXTENSION ) === 'part ' ;
182
+ $ isSkipTrashHeaderSet = $ this ->request !== null && $ this ->request ->getHeader ('X-NC-Skip-Trashbin ' ) === 'true ' ;
183
+ // We keep the shouldMoveToTrash call at the end to prevent emitting unnecessary event.
184
+ $ shouldMoveToTrash = $ isTrashbinEnabled && !$ isPartFile && !$ isSkipTrashHeaderSet && $ this ->shouldMoveToTrash ($ path );
183
185
184
- // check permissions before we continue, this is especially important for
185
- // shared files
186
- if (!$ this ->isDeletable ($ path )) {
187
- return false ;
188
- }
186
+ if ($ shouldMoveToTrash ) {
187
+ // check permissions before we continue, this is especially important for
188
+ // shared files
189
+ if (!$ this ->isDeletable ($ path )) {
190
+ return false ;
191
+ }
189
192
190
- $ isMovedToTrash = $ this ->trashManager ->moveToTrash ($ this , $ path );
191
- if (!$ isMovedToTrash ) {
192
- return call_user_func ([$ this ->storage , $ method ], $ path );
193
- } else {
194
- return true ;
193
+ $ isMovedToTrash = $ this ->trashManager ->moveToTrash ($ this , $ path );
194
+ if ($ isMovedToTrash ) {
195
+ return true ;
196
+ }
195
197
}
198
+
199
+ return call_user_func ([$ this ->storage , $ method ], $ path );
196
200
}
197
201
198
202
/**
@@ -204,16 +208,18 @@ public static function setupStorage() {
204
208
$ logger = \OC ::$ server ->get (LoggerInterface::class);
205
209
$ eventDispatcher = \OC ::$ server ->get (IEventDispatcher::class);
206
210
$ rootFolder = \OC ::$ server ->get (IRootFolder::class);
211
+ $ request = \OC ::$ server ->get (IRequest::class);
207
212
Filesystem::addStorageWrapper (
208
213
'oc_trashbin ' ,
209
- function (string $ mountPoint , IStorage $ storage ) use ($ trashManager , $ userManager , $ logger , $ eventDispatcher , $ rootFolder ) {
214
+ function (string $ mountPoint , IStorage $ storage ) use ($ trashManager , $ userManager , $ logger , $ eventDispatcher , $ rootFolder, $ request ) {
210
215
return new Storage (
211
216
['storage ' => $ storage , 'mountPoint ' => $ mountPoint ],
212
217
$ trashManager ,
213
218
$ userManager ,
214
219
$ logger ,
215
220
$ eventDispatcher ,
216
221
$ rootFolder ,
222
+ $ request ,
217
223
);
218
224
},
219
225
1 );
0 commit comments