* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShopBundle\Controller\Admin\Improve\International; use PrestaShop\PrestaShop\Core\Form\FormHandlerInterface; use PrestaShopBundle\Controller\Admin\FrameworkBundleAdminController; use PrestaShopBundle\Security\Annotation\AdminSecurity; use PrestaShopBundle\Security\Annotation\DemoRestricted; use Symfony\Component\HttpFoundation\RedirectResponse; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; /** * Class GeolocationController is responsible for "Improve > International > Localization > Geolocation" page. */ class GeolocationController extends FrameworkBundleAdminController { /** * Show geolocation page. * * @AdminSecurity("is_granted('read', request.get('_legacy_controller'))", message="Access denied.") * * @param Request $request * * @return Response */ public function indexAction(Request $request) { $legacyController = $request->attributes->get('_legacy_controller'); $geolocationByIpAddressForm = $this->getGeolocationByIpAddressFormHandler()->getForm(); $geolocationIpAddressWhitelistForm = $this->getGeolocationWhitelistFormHandler()->getForm(); $geolocationOptionsForm = $this->getGeolocationOptionsFormHandler()->getForm(); $geoLiteCityChecker = $this->get('prestashop.core.geolocation.geo_lite_city.checker'); return $this->render('@PrestaShop/Admin/Improve/International/Geolocation/index.html.twig', [ 'layoutTitle' => $this->trans('Geolocation', 'Admin.Navigation.Menu'), 'enableSidebar' => true, 'help_link' => $this->generateSidebarLink($legacyController), 'geolocationByIpAddressForm' => $geolocationByIpAddressForm->createView(), 'geolocationIpAddressWhitelistForm' => $geolocationIpAddressWhitelistForm->createView(), 'geolocationOptionsForm' => $geolocationOptionsForm->createView(), 'geolocationDatabaseAvailable' => $geoLiteCityChecker->isAvailable(), ]); } /** * Process the Geolocation ByIpAddress configuration form. * * @AdminSecurity( * "is_granted('update', request.get('_legacy_controller')) && is_granted('create', request.get('_legacy_controller')) && is_granted('delete', request.get('_legacy_controller'))", * message="You do not have permission to edit this.", * redirectRoute="admin_geolocation_index" * ) * @DemoRestricted(redirectRoute="admin_geolocation_index") * * @param Request $request * * @return RedirectResponse */ public function processByIpAddressFormAction(Request $request) { return $this->processForm( $request, $this->getGeolocationByIpAddressFormHandler(), 'ByIpAddress' ); } /** * Process the Geolocation Whitelist configuration form. * * @AdminSecurity( * "is_granted('read', request.get('_legacy_controller')) && is_granted('update', request.get('_legacy_controller')) && is_granted('create', request.get('_legacy_controller')) && is_granted('delete', request.get('_legacy_controller'))", * message="You do not have permission to edit this.", * redirectRoute="admin_geolocation_index" * ) * @DemoRestricted(redirectRoute="admin_geolocation_index") * * @param Request $request * * @return RedirectResponse */ public function processWhitelistFormAction(Request $request) { return $this->processForm( $request, $this->getGeolocationWhitelistFormHandler(), 'Whitelist' ); } /** * Process the Geolocation Options configuration form. * * @AdminSecurity( * "is_granted('read', request.get('_legacy_controller')) && is_granted('update', request.get('_legacy_controller')) && is_granted('create', request.get('_legacy_controller')) && is_granted('delete', request.get('_legacy_controller'))", * message="You do not have permission to edit this.", * redirectRoute="admin_geolocation_index" * ) * @DemoRestricted(redirectRoute="admin_geolocation_index") * * @param Request $request * * @return RedirectResponse */ public function processOptionsFormAction(Request $request) { return $this->processForm( $request, $this->getGeolocationOptionsFormHandler(), 'Options' ); } /** * Process the Performance configuration form. * * @param Request $request * @param FormHandlerInterface $formHandler * @param string $hookName * * @return RedirectResponse */ protected function processForm(Request $request, FormHandlerInterface $formHandler, string $hookName) { $this->dispatchHook( 'actionAdminInternationalGeolocationControllerPostProcess' . $hookName . 'Before', ['controller' => $this] ); $this->dispatchHook('actionAdminInternationalGeolocationControllerPostProcessBefore', ['controller' => $this]); $form = $formHandler->getForm(); $form->handleRequest($request); if ($form->isSubmitted()) { $data = $form->getData(); $saveErrors = $formHandler->save($data); if (0 === count($saveErrors)) { $this->addFlash('success', $this->trans('Update successful', 'Admin.Notifications.Success')); } else { $this->flashErrors($saveErrors); } } return $this->redirectToRoute('admin_geolocation_index'); } /** * @return FormHandlerInterface */ protected function getGeolocationByIpAddressFormHandler(): FormHandlerInterface { return $this->get('prestashop.admin.geolocation.by_ip_address.form_handler'); } /** * @return FormHandlerInterface */ protected function getGeolocationWhitelistFormHandler(): FormHandlerInterface { return $this->get('prestashop.admin.geolocation.whitelist.form_handler'); } /** * @return FormHandlerInterface */ protected function getGeolocationOptionsFormHandler(): FormHandlerInterface { return $this->get('prestashop.admin.geolocation.options.form_handler'); } }