Spaces:
No application file
No application file
File size: 12,219 Bytes
d2897cd |
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 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 |
<?php
namespace Mautic\ConfigBundle\Controller;
use Mautic\ConfigBundle\ConfigEvents;
use Mautic\ConfigBundle\Event\ConfigBuilderEvent;
use Mautic\ConfigBundle\Event\ConfigEvent;
use Mautic\ConfigBundle\Form\Type\ConfigType;
use Mautic\ConfigBundle\Mapper\ConfigMapper;
use Mautic\CoreBundle\Configurator\Configurator;
use Mautic\CoreBundle\Controller\FormController;
use Mautic\CoreBundle\Helper\BundleHelper;
use Mautic\CoreBundle\Helper\CacheHelper;
use Mautic\CoreBundle\Helper\EncryptionHelper;
use Mautic\CoreBundle\Helper\PathsHelper;
use Mautic\UserBundle\Entity\User;
use Symfony\Component\Form\FormError;
use Symfony\Component\HttpFoundation\JsonResponse;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface;
class ConfigController extends FormController
{
/**
* Controller action for editing the application configuration.
*
* @return JsonResponse|Response
*/
public function editAction(Request $request, BundleHelper $bundleHelper, Configurator $configurator, CacheHelper $cacheHelper, PathsHelper $pathsHelper, ConfigMapper $configMapper, TokenStorageInterface $tokenStorage)
{
// admin only allowed
if (!$this->user->isAdmin()) {
return $this->accessDenied();
}
$event = new ConfigBuilderEvent($bundleHelper);
$dispatcher = $this->dispatcher;
$dispatcher->dispatch($event, ConfigEvents::CONFIG_ON_GENERATE);
$fileFields = $event->getFileFields();
$formThemes = $event->getFormThemes();
$formConfigs = $configMapper->bindFormConfigsWithRealValues($event->getForms());
$this->mergeParamsWithLocal($formConfigs, $pathsHelper);
// Create the form
$action = $this->generateUrl('mautic_config_action', ['objectAction' => 'edit']);
$form = $this->formFactory->create(
ConfigType::class,
$formConfigs,
[
'action' => $action,
'fileFields' => $fileFields,
]
);
$originalNormData = $form->getNormData();
$isWritable = $configurator->isFileWritable();
$openTab = null;
// Check for a submitted form and process it
if ('POST' == $request->getMethod()) {
if (!$cancelled = $this->isFormCancelled($form)) {
$isValid = false;
if ($isWritable && $isValid = $this->isFormValid($form)) {
// Bind request to the form
$post = $request->request;
/** @var mixed[] $formData */
$formData = $form->getData();
// Dispatch pre-save event. Bundles may need to modify some field values like passwords before save
$configEvent = new ConfigEvent($formData, $post);
$configEvent
->setOriginalNormData($originalNormData)
->setNormData($form->getNormData());
$dispatcher->dispatch($configEvent, ConfigEvents::CONFIG_PRE_SAVE);
$formValues = $configEvent->getConfig();
$errors = $configEvent->getErrors();
$fieldErrors = $configEvent->getFieldErrors();
if ($errors || $fieldErrors) {
foreach ($errors as $message => $messageVars) {
$form->addError(
new FormError($this->translator->trans($message, $messageVars, 'validators'))
);
}
foreach ($fieldErrors as $key => $fields) {
foreach ($fields as $field => $fieldError) {
$form[$key][$field]->addError(
new FormError($this->translator->trans($fieldError[0], $fieldError[1], 'validators'))
);
}
}
$isValid = false;
} else {
// Prevent these from getting overwritten with empty values
$unsetIfEmpty = $configEvent->getPreservedFields();
$unsetIfEmpty = array_merge($unsetIfEmpty, $fileFields);
// Merge each bundle's updated configuration into the local configuration
foreach ($formValues as $object) {
$checkThese = array_intersect(array_keys($object), $unsetIfEmpty);
foreach ($checkThese as $checkMe) {
if (empty($object[$checkMe])) {
unset($object[$checkMe]);
}
}
$configurator->mergeParameters($object);
}
try {
// Ensure the config has a secret key
$params = $configurator->getParameters();
if (empty($params['secret_key'])) {
$configurator->mergeParameters(['secret_key' => EncryptionHelper::generateKey()]);
}
$configurator->write();
$dispatcher->dispatch($configEvent, ConfigEvents::CONFIG_POST_SAVE);
$this->addFlashMessage('mautic.config.config.notice.updated');
$cacheHelper->refreshConfig();
if ($isValid && !empty($formData['coreconfig']['last_shown_tab'])) {
$openTab = $formData['coreconfig']['last_shown_tab'];
}
} catch (\RuntimeException $exception) {
$this->addFlashMessage('mautic.config.config.error.not.updated', ['%exception%' => $exception->getMessage()], 'error');
}
$this->setLocale($request, $tokenStorage, $params);
}
} elseif (!$isWritable) {
$form->addError(
new FormError(
$this->translator->trans('mautic.config.notwritable')
)
);
}
}
// If the form is saved or cancelled, redirect back to the dashboard
if ($cancelled || $isValid) {
if (!$cancelled && $this->isFormApplied($form)) {
$redirectParameters = ['objectAction' => 'edit'];
if ($openTab) {
$redirectParameters['tab'] = $openTab;
}
return $this->delegateRedirect($this->generateUrl('mautic_config_action', $redirectParameters));
} else {
return $this->delegateRedirect($this->generateUrl('mautic_dashboard_index'));
}
}
}
$tmpl = $request->isXmlHttpRequest() ? $request->get('tmpl', 'index') : 'index';
return $this->delegateView(
[
'viewParameters' => [
'tmpl' => $tmpl,
'security' => $this->security,
'form' => $form->createView(),
'formThemes' => $formThemes,
'formConfigs' => $formConfigs,
'isWritable' => $isWritable,
],
'contentTemplate' => '@MauticConfig/Config/form.html.twig',
'passthroughVars' => [
'activeLink' => '#mautic_config_index',
'mauticContent' => 'config',
'route' => $this->generateUrl('mautic_config_action', ['objectAction' => 'edit']),
],
]
);
}
/**
* @return array|JsonResponse|\Symfony\Component\HttpFoundation\RedirectResponse|Response
*/
public function downloadAction(Request $request, BundleHelper $bundleHelper, $objectId)
{
// admin only allowed
if (!$this->user->isAdmin()) {
return $this->accessDenied();
}
$event = new ConfigBuilderEvent($bundleHelper);
$dispatcher = $this->dispatcher;
$dispatcher->dispatch($event, ConfigEvents::CONFIG_ON_GENERATE);
// Extract and base64 encode file contents
$fileFields = $event->getFileFields();
if (!in_array($objectId, $fileFields)) {
return $this->accessDenied();
}
$content = $this->coreParametersHelper->get($objectId);
$filename = $request->get('filename', $objectId);
if ($decoded = base64_decode($content)) {
$response = new Response($decoded);
$response->headers->set('Content-Type', 'application/force-download');
$response->headers->set('Content-Type', 'application/octet-stream');
$response->headers->set('Content-Disposition', 'attachment; filename="'.$filename);
$response->headers->set('Expires', '0');
$response->headers->set('Cache-Control', 'must-revalidate');
$response->headers->set('Pragma', 'public');
return $response;
}
return $this->notFound();
}
/**
* @return array|JsonResponse|\Symfony\Component\HttpFoundation\RedirectResponse|Response
*/
public function removeAction(BundleHelper $bundleHelper, Configurator $configurator, CacheHelper $cacheHelper, $objectId)
{
// admin only allowed
if (!$this->user->isAdmin()) {
return $this->accessDenied();
}
$success = 0;
$event = new ConfigBuilderEvent($bundleHelper);
$dispatcher = $this->dispatcher;
$dispatcher->dispatch($event, ConfigEvents::CONFIG_ON_GENERATE);
// Extract and base64 encode file contents
$fileFields = $event->getFileFields();
if (in_array($objectId, $fileFields)) {
$configurator->mergeParameters([$objectId => null]);
try {
$configurator->write();
$cacheHelper->refreshConfig();
$success = 1;
} catch (\Exception) {
}
}
return new JsonResponse(['success' => $success]);
}
/**
* Merges default parameters from each subscribed bundle with the local (real) params.
*/
private function mergeParamsWithLocal(array &$forms, PathsHelper $pathsHelper): void
{
$doNotChange = $this->coreParametersHelper->get('mautic.security.restrictedConfigFields');
$localConfigFile = $pathsHelper->getLocalConfigurationFile();
// Import the current local configuration, $parameters is defined in this file
$parameters = [];
include $localConfigFile;
/** @var mixed[] $parameters */
$localParams = $parameters;
foreach ($forms as &$form) {
// Merge the bundle params with the local params
foreach ($form['parameters'] as $key => $value) {
if (in_array($key, $doNotChange)) {
unset($form['parameters'][$key]);
} elseif (array_key_exists($key, $localParams)) {
$paramValue = $localParams[$key];
$form['parameters'][$key] = $paramValue;
}
}
}
}
/**
* @param array<string, string> $params
*/
private function setLocale(Request $request, TokenStorageInterface $tokenStorage, array $params): void
{
$me = $tokenStorage->getToken()->getUser();
assert($me instanceof User);
$locale = $me->getLocale();
if (empty($locale)) {
$locale = $params['locale'] ?? $this->coreParametersHelper->get('locale');
}
$request->getSession()->set('_locale', $locale);
}
}
|