container->get('translator'); } /** * @return LoggerInterface $logger */ private function getLogger() { return $this->container->get('logger'); } /** * Adds a "successful" flash message to the stack. * * @param string $translationKey * @param array $parameter */ protected function flashSuccess($translationKey, $parameter = []) { $this->addFlashTranslated('success', $translationKey, $parameter); } /** * Adds a "warning" flash message to the stack. * * @param string $translationKey * @param array $parameter */ protected function flashWarning($translationKey, $parameter = []) { $this->addFlashTranslated('warning', $translationKey, $parameter); } /** * Adds a "error" flash message to the stack. * * @param string $translationKey * @param array $parameter */ protected function flashError($translationKey, $parameter = []) { $this->addFlashTranslated('error', $translationKey, $parameter); } /** * Adds an exception flash message for failed update/create actions. * * @param \Exception $exception */ protected function flashUpdateException(\Exception $exception) { $this->flashException($exception, 'action.update.error'); } /** * Adds an exception flash message for failed delete actions. * * @param \Exception $exception */ protected function flashDeleteException(\Exception $exception) { $this->flashException($exception, 'action.delete.error'); } /** * Adds a "error" flash message and logs the Exception. * * @param \Exception $exception * @param string $translationKey * @param array $parameter */ protected function flashException(\Exception $exception, string $translationKey, array $parameter = []) { $this->logException($exception); if (!\array_key_exists('%reason%', $parameter)) { $parameter['%reason%'] = $exception->getMessage(); } $this->addFlashTranslated('error', $translationKey, $parameter); } /** * Adds a fully translated (both $message and all keys in $parameter) flash message to the stack. * * @param string $type * @param string $message * @param array $parameter */ protected function addFlashTranslated(string $type, string $message, array $parameter = []) { if (!empty($parameter)) { foreach ($parameter as $key => $value) { $parameter[$key] = $this->getTranslator()->trans($value, [], 'flashmessages'); } $message = $this->getTranslator()->trans( $message, $parameter, 'flashmessages' ); } $this->addFlash($type, $message); } protected function logException(\Exception $ex) { $this->getLogger()->critical($ex->getMessage()); } public static function getSubscribedServices() { return array_merge(parent::getSubscribedServices(), [ 'translator' => TranslatorInterface::class, 'logger' => LoggerInterface::class, LanguageFormattings::class => LanguageFormattings::class, ]); } protected function getDateTimeFactory(?User $user = null): DateTimeFactory { if (null === $user) { $user = $this->getUser(); } return new DateTimeFactory(new \DateTimeZone($user->getTimezone())); } protected function getLocaleFormats(string $locale): LocaleFormats { return new LocaleFormats($this->container->get(LanguageFormattings::class), $locale); } protected function handleSearch(FormInterface $form, Request $request): bool { $data = $form->getData(); if (!($data instanceof BaseQuery)) { throw new \InvalidArgumentException('handleSearchForm() requires an instanceof BaseQuery as form data'); } /** @var BookmarkRepository $bookmarkRepo */ $bookmarkRepo = $this->getDoctrine()->getRepository(Bookmark::class); $bookmark = $bookmarkRepo->getSearchDefaultOptions($this->getUser(), $data->getName()); $submitData = $request->query->all(); // remove bookmark if ($bookmark !== null && $request->query->has('removeDefaultQuery')) { $bookmarkRepo->deleteBookmark($bookmark); return true; } // apply bookmark ONLY if search form was not submitted manually if ($bookmark !== null && !$request->query->has('performSearch')) { $data->setBookmark($bookmark); $submitData = array_merge($bookmark->getContent(), $submitData); } // clean up parameters from unknown search values foreach ($submitData as $name => $values) { if (!$form->has($name)) { unset($submitData[$name]); } } $form->submit($submitData, false); if (!$form->isValid()) { $data->resetByFormError($form->getErrors(true)); } elseif ($request->query->has('setDefaultQuery')) { $params = []; foreach ($form->all() as $name => $child) { $params[$name] = $child->getViewData(); } $filter = ['page', 'setDefaultQuery', 'removeDefaultQuery', 'performSearch']; foreach ($filter as $name) { if (isset($params[$name])) { unset($params[$name]); } } if ($bookmark === null) { $bookmark = new Bookmark(); $bookmark->setType(Bookmark::SEARCH_DEFAULT); $bookmark->setUser($this->getUser()); $bookmark->setName(substr($data->getName(), 0, 50)); } $bookmark->setContent($params); $bookmarkRepo->saveBookmark($bookmark); return true; } return false; } }