1441 |
ariadna |
1 |
<?php
|
|
|
2 |
// This file is part of Moodle - http://moodle.org/
|
|
|
3 |
//
|
|
|
4 |
// Moodle is free software: you can redistribute it and/or modify
|
|
|
5 |
// it under the terms of the GNU General Public License as published by
|
|
|
6 |
// the Free Software Foundation, either version 3 of the License, or
|
|
|
7 |
// (at your option) any later version.
|
|
|
8 |
//
|
|
|
9 |
// Moodle is distributed in the hope that it will be useful,
|
|
|
10 |
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
11 |
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
12 |
// GNU General Public License for more details.
|
|
|
13 |
//
|
|
|
14 |
// You should have received a copy of the GNU General Public License
|
|
|
15 |
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
16 |
|
|
|
17 |
namespace core_files\redactor\services;
|
|
|
18 |
|
|
|
19 |
/**
|
|
|
20 |
* Class file_redactor_service_interface
|
|
|
21 |
*
|
|
|
22 |
* @package core_files
|
|
|
23 |
* @copyright 2024 Andrew Lyons <andrew@nicols.co.uk>
|
|
|
24 |
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
25 |
*/
|
|
|
26 |
interface file_redactor_service_interface {
|
|
|
27 |
/**
|
|
|
28 |
* Performs redaction on the specified stored_file.
|
|
|
29 |
*
|
|
|
30 |
* @param string $mimetype The mime-type of the file
|
|
|
31 |
* @param string $filepath The path of the file to redact
|
|
|
32 |
* @return string|null The path to the redacted file, or null if redaction was not attempted
|
|
|
33 |
*/
|
|
|
34 |
public function redact_file_by_path(
|
|
|
35 |
string $mimetype,
|
|
|
36 |
string $filepath,
|
|
|
37 |
): ?string;
|
|
|
38 |
|
|
|
39 |
/**
|
|
|
40 |
* Performs redaction on the specified stored_file.
|
|
|
41 |
*
|
|
|
42 |
* @param string $mimetype The mime-type of the file
|
|
|
43 |
* @param string $filecontent The content of the file to redact
|
|
|
44 |
* @return string|null The redacted content, or null if redaction was not attempted
|
|
|
45 |
*/
|
|
|
46 |
public function redact_file_by_content(
|
|
|
47 |
string $mimetype,
|
|
|
48 |
string $filecontent,
|
|
|
49 |
): ?string;
|
|
|
50 |
|
|
|
51 |
/**
|
|
|
52 |
* Determines whether a certain mime-type is supported by the service.
|
|
|
53 |
*
|
|
|
54 |
* @param string $mimetype
|
|
|
55 |
* @return bool
|
|
|
56 |
*/
|
|
|
57 |
public function is_mimetype_supported(string $mimetype): bool;
|
|
|
58 |
}
|