blob: 096af1d2a24c6dfd7cfaa1bec182d65ecc473f6f (
plain)
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
|
<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCP\DirectEditing;
use OCP\AppFramework\Http\Response;
/**
* @since 18.0.0
*/
interface IEditor {
/**
* Return a unique identifier for the editor
*
* e.g. richdocuments
*
* @since 18.0.0
* @return string
*/
public function getId(): string;
/**
* Return a readable name for the editor
*
* e.g. Collabora Online
*
* @since 18.0.0
* @return string
*/
public function getName(): string;
/**
* A list of mimetypes that should open the editor by default
*
* @since 18.0.0
* @return string[]
*/
public function getMimetypes(): array;
/**
* A list of mimetypes that can be opened in the editor optionally
*
* @since 18.0.0
* @return string[]
*/
public function getMimetypesOptional(): array;
/**
* Return a list of file creation options to be presented to the user
*
* @since 18.0.0
* @return ACreateFromTemplate[]|ACreateEmpty[]
*/
public function getCreators(): array;
/**
* Return if the view is able to securely view a file without downloading it to the browser
*
* @since 18.0.0
* @return bool
*/
public function isSecure(): bool;
/**
* Return a template response for displaying the editor
*
* open can only be called once when the client requests the editor with a one-time-use token
* For handling editing and later requests, editors need to implement their own token handling and take care of invalidation
*
* This behavior is similar to the current direct editing implementation in collabora where we generate a one-time token and switch over to the regular wopi token for the actual editing/saving process
*
* @since 18.0.0
* @return Response
*/
public function open(IToken $token): Response;
}
|