1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
/**
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
import { getCurrentUser } from '@nextcloud/auth'
import { emit } from '@nextcloud/event-bus'
import { Permission, Node, View, FileAction } from '@nextcloud/files'
import { t } from '@nextcloud/l10n'
import { encodePath } from '@nextcloud/paths'
import { generateRemoteUrl } from '@nextcloud/router'
import axios from '@nextcloud/axios'
import svgHistory from '@mdi/svg/svg/history.svg?raw'
import { TRASHBIN_VIEW_ID } from '../files_views/trashbinView.ts'
import logger from '../../../files/src/logger.ts'
export const restoreAction = new FileAction({
id: 'restore',
displayName() {
return t('files_trashbin', 'Restore')
},
iconSvgInline: () => svgHistory,
enabled(nodes: Node[], view) {
// Only available in the trashbin view
if (view.id !== TRASHBIN_VIEW_ID) {
return false
}
// Only available if all nodes have read permission
return nodes.length > 0
&& nodes
.map((node) => node.permissions)
.every((permission) => Boolean(permission & Permission.READ))
},
async exec(node: Node) {
try {
const destination = generateRemoteUrl(encodePath(`dav/trashbin/${getCurrentUser()!.uid}/restore/${node.basename}`))
await axios.request({
method: 'MOVE',
url: node.encodedSource,
headers: {
destination,
},
})
// Let's pretend the file is deleted since
// we don't know the restored location
emit('files:node:deleted', node)
return true
} catch (error) {
logger.error('Failed to restore node', { error, node })
return false
}
},
async execBatch(nodes: Node[], view: View, dir: string) {
return Promise.all(nodes.map(node => this.exec(node, view, dir)))
},
order: 1,
inline: () => true,
})
|