Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ImageController.php « Controller « lib - github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b3aa3f111fe60527776e34ad41fe451661aecade (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
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
<?php

declare(strict_types=1);
/**
 * @copyright Copyright (c) 2021 Julien Veyssier <eneiluj@posteo.net>
 *
 * @author Julien Veyssier <eneiluj@posteo.net>
 *
 * @license GNU AGPL version 3 or any later version
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 *
 */

namespace OCA\Text\Controller;

use Exception;
use OCP\AppFramework\Http;
use OCA\Text\Service\ImageService;
use OCP\AppFramework\Controller;
use OCP\AppFramework\Http\DataDisplayResponse;
use OCP\AppFramework\Http\DataResponse;
use OCP\IRequest;
use Psr\Log\LoggerInterface;

class ImageController extends Controller {
	public const IMAGE_MIME_TYPES = [
		'image/png',
		'image/jpeg',
		'image/jpg',
		'image/gif',
		'image/x-xbitmap',
		'image/x-ms-bmp',
		'image/bmp',
		'image/svg+xml',
		'image/webp',
	];

	/**
	 * @var string|null
	 */
	private $userId;
	/**
	 * @var ImageService
	 */
	private $imageService;
	/**
	 * @var LoggerInterface
	 */
	private $logger;

	public function __construct(string $appName,
								IRequest $request,
								LoggerInterface $logger,
								ImageService $imageService,
								?string $userId) {
		parent::__construct($appName, $request);
		$this->userId = $userId;
		$this->imageService = $imageService;
		$this->request = $request;
		$this->logger = $logger;
	}

	/**
	 * @NoAdminRequired
	 *
	 * @param int $textFileId
	 * @param string $imagePath
	 * @return DataResponse
	 */
	public function insertImageFile(int $textFileId, string $imagePath): DataResponse {
		try {
			$insertResult = $this->imageService->insertImageFile($textFileId, $imagePath, $this->userId);
			if (isset($insertResult['error'])) {
				return new DataResponse($insertResult, Http::STATUS_BAD_REQUEST);
			} else {
				return new DataResponse($insertResult);
			}
		} catch (Exception $e) {
			$this->logger->error('File insertion error', ['exception' => $e]);
			return new DataResponse(['error' => 'File insertion error'], Http::STATUS_BAD_REQUEST);
		}
	}

	/**
	 * @NoAdminRequired
	 *
	 * @param int $textFileId
	 * @param string $link
	 * @return DataResponse
	 */
	public function insertImageLink(int $textFileId, string $link): DataResponse {
		try {
			$downloadResult = $this->imageService->insertImageLink($textFileId, $link, $this->userId);
			if (isset($downloadResult['error'])) {
				return new DataResponse($downloadResult, Http::STATUS_BAD_REQUEST);
			} else {
				return new DataResponse($downloadResult);
			}
		} catch (Exception $e) {
			$this->logger->error('Link insertion error', ['exception' => $e]);
			return new DataResponse(['error' => 'Link insertion error'], Http::STATUS_BAD_REQUEST);
		}
	}

	/**
	 * @NoAdminRequired
	 * @PublicPage
	 *
	 * @param int|null $textFileId can be null with public file share
	 * @param string $link
	 * @param string $shareToken
	 * @return DataResponse
	 */
	public function insertImageLinkPublic(?int $textFileId, string $link, string $shareToken): DataResponse {
		try {
			$downloadResult = $this->imageService->insertImageLinkPublic($textFileId, $link, $shareToken);
			if (isset($downloadResult['error'])) {
				return new DataResponse($downloadResult, Http::STATUS_BAD_REQUEST);
			} else {
				return new DataResponse($downloadResult);
			}
		} catch (Exception $e) {
			$this->logger->error('Link insertion error', ['exception' => $e]);
			return new DataResponse(['error' => 'Link insertion error'], Http::STATUS_BAD_REQUEST);
		}
	}

	/**
	 * @NoAdminRequired
	 *
	 * @param int $textFileId
	 * @return DataResponse
	 */
	public function uploadImage(int $textFileId): DataResponse {
		try {
			$file = $this->request->getUploadedFile('image');
			if ($file !== null && isset($file['tmp_name'], $file['name'], $file['type'])) {
				if (!in_array($file['type'], self::IMAGE_MIME_TYPES)) {
					return new DataResponse(['error' => 'Image type not supported'], Http::STATUS_BAD_REQUEST);
				}
				$newFileContent = file_get_contents($file['tmp_name']);
				$newFileName = $file['name'];
				$uploadResult = $this->imageService->uploadImage($textFileId, $newFileName, $newFileContent, $this->userId);
				if (isset($uploadResult['error'])) {
					return new DataResponse($uploadResult, Http::STATUS_BAD_REQUEST);
				} else {
					return new DataResponse($uploadResult);
				}
			} else {
				return new DataResponse(['error' => 'No uploaded file'], Http::STATUS_BAD_REQUEST);
			}
		} catch (Exception $e) {
			$this->logger->error('Upload error', ['exception' => $e]);
			return new DataResponse(['error' => 'Upload error'], Http::STATUS_BAD_REQUEST);
		}
	}

	/**
	 * @NoAdminRequired
	 * @PublicPage
	 *
	 * @param int|null $textFileId can be null with public file share
	 * @param string $shareToken
	 * @return DataResponse
	 */
	public function uploadImagePublic(?int $textFileId, string $shareToken): DataResponse {
		try {
			$file = $this->request->getUploadedFile('image');
			if ($file !== null && isset($file['tmp_name'], $file['name'], $file['type'])) {
				if (!in_array($file['type'], self::IMAGE_MIME_TYPES)) {
					return new DataResponse(['error' => 'Image type not supported'], Http::STATUS_BAD_REQUEST);
				}
				$newFileContent = file_get_contents($file['tmp_name']);
				$newFileName = $file['name'];
				$uploadResult = $this->imageService->uploadImagePublic($textFileId, $newFileName, $newFileContent, $shareToken);
				if (isset($uploadResult['error'])) {
					return new DataResponse($uploadResult, Http::STATUS_BAD_REQUEST);
				} else {
					return new DataResponse($uploadResult);
				}
			} else {
				return new DataResponse(['error' => 'No uploaded file'], Http::STATUS_BAD_REQUEST);
			}
		} catch (Exception $e) {
			$this->logger->error('Upload error', ['exception' => $e]);
			return new DataResponse(['error' => 'Upload error'], Http::STATUS_BAD_REQUEST);
		}
	}

	/**
	 * @NoAdminRequired
	 * @NoCSRFRequired
	 *
	 * Serve the images in the editor
	 * @param int $textFileId
	 * @param int $imageFileId
	 * @return DataDisplayResponse
	 * @throws \OCP\Files\InvalidPathException
	 * @throws \OCP\Files\NotFoundException
	 * @throws \OCP\Files\NotPermittedException
	 * @throws \OCP\Lock\LockedException
	 */
	public function getImage(int $textFileId, int $imageFileId): DataDisplayResponse {
		$imageFile = $this->imageService->getImage($textFileId, $imageFileId, $this->userId);
		if ($imageFile !== null) {
			return new DataDisplayResponse($imageFile->getContent(), Http::STATUS_OK, ['Content-Type' => $imageFile->getMimeType()]);
		} else {
			return new DataDisplayResponse('', Http::STATUS_NOT_FOUND);
		}
	}

	/**
	 * @NoAdminRequired
	 * @NoCSRFRequired
	 * @PublicPage
	 *
	 * @param int $textFileId
	 * @param int $imageFileId
	 * @param string $shareToken
	 * @return DataDisplayResponse
	 * @throws \OCP\Files\InvalidPathException
	 * @throws \OCP\Files\NotFoundException
	 * @throws \OCP\Files\NotPermittedException
	 * @throws \OCP\Lock\LockedException
	 */
	public function getImagePublic(int $textFileId, int $imageFileId, string $shareToken): DataDisplayResponse {
		$imageFile = $this->imageService->getImagePublic($textFileId, $imageFileId, $shareToken);
		if ($imageFile !== null) {
			return new DataDisplayResponse($imageFile->getContent(), Http::STATUS_OK, ['Content-Type' => $imageFile->getMimeType()]);
		} else {
			return new DataDisplayResponse('', Http::STATUS_NOT_FOUND);
		}
	}
}