-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathEditorController.php
279 lines (242 loc) · 10.3 KB
/
EditorController.php
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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
<?php
declare(strict_types=1);
namespace TYPO3\CMS\FrontendEditing\Controller;
/*
* This file is part of the TYPO3 CMS project.
*
* It is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, either version 2
* of the License, or any later version.
*
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*
* The TYPO3 project - inspiring people to share!
*/
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;
use TYPO3\CMS\Backend\Form\FormDataCompiler;
use TYPO3\CMS\Backend\Form\FormDataGroup\TcaDatabaseRecord;
use TYPO3\CMS\Backend\Routing\UriBuilder;
use TYPO3\CMS\Core\Http\Response;
use TYPO3\CMS\Core\Localization\Locales;
use TYPO3\CMS\Core\Utility\GeneralUtility;
use TYPO3\CMS\Core\Utility\PathUtility;
use TYPO3\CMS\FrontendEditing\Service\ExtensionManagerConfigurationService;
use TYPO3\CMS\FrontendEditing\Utility\ConfigurationUtility;
/**
* Class for fetching the proper RTE configuration of a given field
*/
class EditorController
{
/**
* Processed values from FormEngine
* @var array
*/
protected $formData;
/**
* @var array
*/
protected $rteConfiguration;
/**
* Loads the CKEditor configuration for a specific field of a record
* kicks FormEngine in since this is used to resolve the proper record type
*
* @param ServerRequestInterface $request
* @param ResponseInterface $response
* @return ResponseInterface
*/
public function getConfigurationAction(ServerRequestInterface $request, ResponseInterface $response = null)
{
if ($response === null) {
$response = new Response();
}
/** @var TcaDatabaseRecord $formDataGroup */
$formDataGroup = GeneralUtility::makeInstance(TcaDatabaseRecord::class);
/** @var FormDataCompiler $formDataCompiler */
$formDataCompiler = GeneralUtility::makeInstance(FormDataCompiler::class, $formDataGroup);
$queryParameters = $request->getParsedBody();
$configurations = [];
$elements = [];
foreach ($queryParameters['elements'] as $element) {
$table = $element['table'];
$uid = (int)$element['uid'];
$fieldName = $element['field'];
$formDataCompilerInput = [
'vanillaUid' => (int)$uid,
'tableName' => $table,
'command' => 'edit',
// done intentionally to speed up the compilation of the processedTca
'disabledWizards' => true
];
$this->formData = $formDataCompiler->compile($formDataCompilerInput);
$formDataFieldName = $this->formData['processedTca']['columns'][$fieldName];
$this->rteConfiguration = $formDataFieldName['config']['richtextConfiguration']['editor'];
$hasCkeditorConfiguration = $this->rteConfiguration !== null;
$editorConfiguration = $this->prepareConfigurationForEditor();
$externalPlugins = '';
foreach ($this->getExtraPlugins() as $pluginName => $config) {
$editorConfiguration[$pluginName] = $config['config'];
if ($editorConfiguration['extraPlugins'] !== null && $editorConfiguration['extraPlugins'] !== '') {
$editorConfiguration['extraPlugins'] .= ',';
}
$editorConfiguration['extraPlugins'] .= $pluginName;
$externalPlugins .= 'CKEDITOR.plugins.addExternal(';
$externalPlugins .= GeneralUtility::quoteJSvalue($pluginName) . ',';
$externalPlugins .= GeneralUtility::quoteJSvalue($config['resource']) . ',';
$externalPlugins .= '\'\');';
}
$configuration = [
'configuration' => $editorConfiguration,
'hasCkeditorConfiguration' => $hasCkeditorConfiguration,
'externalPlugins' => $externalPlugins,
];
$configurationKey = '';
foreach ($configurations as $existingConfigurationKey => $existingConfiguration) {
if (json_encode($existingConfiguration) === json_encode($configuration)) {
$configurationKey = $existingConfigurationKey;
break;
}
}
if ($configurationKey === '') {
$configurationKey = count($configurations);
$configurations[$configurationKey] = $configuration;
}
$elements[$uid . '_' . $table . '_' . $fieldName] = $configurationKey;
}
$response->getBody()->write(json_encode([
'elementToConfiguration' => $elements,
'configurations' => $configurations,
]));
return $response;
}
/**
* Get configuration of external/additional plugins
*
* @return array
*/
protected function getExtraPlugins(): array
{
$urlParameters = [
'P' => [
'table' => $this->formData['tableName'],
'uid' => $this->formData['databaseRow']['uid'],
'fieldName' => $this->formData['fieldName'] ?? '',
'recordType' => $this->formData['recordTypeValue'],
'pid' => $this->formData['effectivePid'],
]
];
if (!isset($this->rteConfiguration['externalPlugins'])
|| !is_array($this->rteConfiguration['externalPlugins'])) {
$this->rteConfiguration['externalPlugins'] = [];
}
if (ConfigurationUtility::getExtensionConfiguration()['enablePlaceholders']) {
$this->rteConfiguration['externalPlugins']['confighelper'] = [
'resource' => 'EXT:frontend_editing/Resources/Public/JavaScript/Plugins/confighelper/plugin.js'
];
}
$pluginConfiguration = [];
$uriBuilder = GeneralUtility::makeInstance(UriBuilder::class);
foreach ($this->rteConfiguration['externalPlugins'] as $pluginName => $configuration) {
$pluginConfiguration[$pluginName] = [
'resource' => $this->resolveUrlPath($configuration['resource'])
];
unset($configuration['resource']);
if ($configuration['route']) {
$configuration['routeUrl'] = (string)$uriBuilder->buildUriFromRoute(
$configuration['route'],
$urlParameters
);
}
$pluginConfiguration[$pluginName]['config'] = $configuration;
}
return $pluginConfiguration;
}
/**
* Add configuration to replace absolute EXT: paths with relative ones
* @param array $configuration
*
* @return array
*/
protected function replaceAbsolutePathsToRelativeResourcesPath(array $configuration): array
{
foreach ($configuration as $key => $value) {
if (is_array($value)) {
$configuration[$key] = $this->replaceAbsolutePathsToRelativeResourcesPath($value);
} elseif (is_string($value) && substr($value, 0, 4) === 'EXT:') {
$configuration[$key] = $this->resolveUrlPath($value);
}
}
return $configuration;
}
/**
* Resolves an EXT: syntax file to an absolute web URL
*
* @param string $value
* @return string
*/
protected function resolveUrlPath(string $value): string
{
$value = GeneralUtility::getFileAbsFileName($value);
return PathUtility::getAbsoluteWebPath($value);
}
/**
* Compiles the configuration set from the outside
* to have it easily injected into the CKEditor.
*
* @return array the configuration
*/
protected function prepareConfigurationForEditor(): array
{
// Ensure custom config is empty so nothing additional is loaded
// Of course this can be overriden by the editor configuration below
$configuration = [
'customConfig' => '',
];
if (is_array($this->rteConfiguration['config'])) {
$configuration = array_replace_recursive($configuration, $this->rteConfiguration['config']);
}
$configuration['contentsLanguage'] = $this->getLanguageIsoCodeOfContent();
// replace all paths
$configuration = $this->replaceAbsolutePathsToRelativeResourcesPath($configuration);
// there are some places where we define an array, but it needs to be a list in order to work
if (is_array($configuration['extraPlugins'])) {
$configuration['extraPlugins'] = implode(',', array_filter($configuration['extraPlugins']));
}
if (is_array($configuration['removePlugins'])) {
$configuration['removePlugins'] = implode(',', array_filter($configuration['removePlugins']));
}
if (is_array($configuration['removeButtons'])) {
$configuration['removeButtons'] = implode(',', array_filter($configuration['removeButtons']));
}
return $configuration;
}
/**
* Determine the contents language iso code
*
* @return string
*/
protected function getLanguageIsoCodeOfContent(): string
{
$currentLanguageUid = $this->formData['databaseRow']['sys_language_uid'];
if (is_array($currentLanguageUid)) {
$currentLanguageUid = $currentLanguageUid[0];
}
$contentLanguageUid = (int)max($currentLanguageUid, 0);
if ($contentLanguageUid) {
$contentLanguage = $this->formData['systemLanguageRows'][$currentLanguageUid]['iso'];
} else {
$contentLanguage = $this->rteConfiguration['config']['defaultContentLanguage'] ?? 'en_US';
$languageCodeParts = explode('_', $contentLanguage);
$contentLanguage = strtolower($languageCodeParts[0]) . ($languageCodeParts[1]
? '_' . strtoupper($languageCodeParts[1]) : '');
// Find the configured language in the list of localization locales
$locales = GeneralUtility::makeInstance(Locales::class);
// If not found, default to 'en'
if (!in_array($contentLanguage, $locales->getLocales(), true)) {
$contentLanguage = 'en';
}
}
return $contentLanguage;
}
}