-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmain.ts
131 lines (111 loc) · 3.34 KB
/
main.ts
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
/**
* SPDX-FileCopyrightText: Ferdinand Thiessen <[email protected]>
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
import Vue from 'vue'
import {
FileAction,
type Node,
Permission,
FileType,
registerFileAction,
} from '@nextcloud/files'
import { translate as t } from '@nextcloud/l10n'
import { emit } from '@nextcloud/event-bus'
import { lockFile, unlockFile } from './api'
import { LockType } from './types'
import {
canLock, canUnlock,
generateAvatarSvg,
getInfoLabel,
getLockStateFromAttributes,
} from './helper'
import { getCurrentUser } from '@nextcloud/auth'
import LockSvg from '@mdi/svg/svg/lock.svg?raw'
import LockOpenSvg from '@mdi/svg/svg/lock-open-variant.svg?raw'
import LockEditSvg from '@mdi/svg/svg/pencil-lock.svg?raw'
const switchLock = async (node: Node) => {
try {
const state = getLockStateFromAttributes(node)
if (!state.isLocked) {
const data = await lockFile(node)
Vue.set(node.attributes, 'lock', '1')
Vue.set(node.attributes, 'lock-owner', data.userId)
Vue.set(node.attributes, 'lock-owner-displayname', data.displayName)
Vue.set(node.attributes, 'lock-owner-type', data.type)
Vue.set(node.attributes, 'lock-time', data.creation)
} else {
await unlockFile(node)
Vue.set(node.attributes, 'lock', '')
Vue.set(node.attributes, 'lock-owner', '')
Vue.set(node.attributes, 'lock-owner-displayname', '')
Vue.set(node.attributes, 'lock-owner-type', '')
Vue.set(node.attributes, 'lock-time', '')
}
emit('files:node:updated', node)
return true
} catch (e) {
console.error('Failed to switch lock', e)
return false
}
}
const inlineAction = new FileAction({
id: 'lock_inline',
title: (nodes: Node[]) => nodes.length === 1 ? getInfoLabel(nodes[0]) : '',
inline: () => true,
displayName: () => '',
exec: async () => null,
order: -10,
iconSvgInline(nodes: Node[]) {
const node = nodes[0]
const state = getLockStateFromAttributes(node)
if (state.isLocked && state.lockOwnerType !== LockType.App && state.lockOwner !== getCurrentUser()?.uid) {
return generateAvatarSvg(state.lockOwner)
}
if (state.lockOwnerType === LockType.App) {
return LockEditSvg
}
return LockSvg
},
enabled(nodes: Node[]) {
// Only works on single node
if (nodes.length !== 1) {
return false
}
const node = nodes[0]
const state = getLockStateFromAttributes(node)
return state.isLocked
},
})
const menuAction = new FileAction({
id: 'lock',
title: (nodes: Node[]) => getInfoLabel(nodes[0]),
order: 25,
iconSvgInline(nodes: Node[]) {
const node = nodes[0]
const state = getLockStateFromAttributes(node)
return state.isLocked ? LockOpenSvg : LockSvg
},
displayName(files) {
if (files.length !== 1) {
return ''
}
const node = files[0]
return getLockStateFromAttributes(node).isLocked ? t('files_lock', 'Unlock file') : t('files_lock', 'Lock file')
},
enabled(nodes: Node[]) {
// Only works on single node
if (nodes.length !== 1) {
return false
}
const canToggleLock = canLock(nodes[0]) || canUnlock(nodes[0])
const isLocked = getLockStateFromAttributes(nodes[0]).isLocked
const isUpdatable = (nodes[0].permissions & Permission.UPDATE) !== 0
return nodes[0].type === FileType.File && canToggleLock && (isUpdatable || isLocked)
},
async exec(node: Node) {
return await switchLock(node)
},
})
registerFileAction(inlineAction)
registerFileAction(menuAction)