@@ -28,25 +28,25 @@ discard block |
||
28 | 28 | use Symfony\Component\HttpFoundation\Request; |
29 | 29 | |
30 | 30 | class RelatedArticleController extends AbstractController { |
31 | - private RelatedArticleRepositoryInterface $relatedArticleRepository; |
|
32 | - private ArticleProviderInterface $articleProvider; |
|
33 | - private EventDispatcherInterface $eventDispatcher; |
|
31 | + private RelatedArticleRepositoryInterface $relatedArticleRepository; |
|
32 | + private ArticleProviderInterface $articleProvider; |
|
33 | + private EventDispatcherInterface $eventDispatcher; |
|
34 | 34 | |
35 | - /** |
|
36 | - * @param RelatedArticleRepositoryInterface $relatedArticleRepository |
|
37 | - * @param ArticleProviderInterface $articleProvider |
|
38 | - * @param EventDispatcherInterface $eventDispatcher |
|
39 | - */ |
|
40 | - public function __construct(RelatedArticleRepositoryInterface $relatedArticleRepository, |
|
41 | - ArticleProviderInterface $articleProvider, |
|
42 | - EventDispatcherInterface $eventDispatcher) { |
|
35 | + /** |
|
36 | + * @param RelatedArticleRepositoryInterface $relatedArticleRepository |
|
37 | + * @param ArticleProviderInterface $articleProvider |
|
38 | + * @param EventDispatcherInterface $eventDispatcher |
|
39 | + */ |
|
40 | + public function __construct(RelatedArticleRepositoryInterface $relatedArticleRepository, |
|
41 | + ArticleProviderInterface $articleProvider, |
|
42 | + EventDispatcherInterface $eventDispatcher) { |
|
43 | 43 | $this->relatedArticleRepository = $relatedArticleRepository; |
44 | 44 | $this->articleProvider = $articleProvider; |
45 | 45 | $this->eventDispatcher = $eventDispatcher; |
46 | - } |
|
46 | + } |
|
47 | 47 | |
48 | 48 | |
49 | - public function listAction(Request $request, string $id) { |
|
49 | + public function listAction(Request $request, string $id) { |
|
50 | 50 | $article = $this->findOr404($id); |
51 | 51 | |
52 | 52 | $repository = $this->relatedArticleRepository; |
@@ -61,15 +61,15 @@ discard block |
||
61 | 61 | ); |
62 | 62 | |
63 | 63 | return new ResourcesListResponse($items); |
64 | - } |
|
64 | + } |
|
65 | 65 | |
66 | - private function findOr404(string $id): ArticleInterface { |
|
66 | + private function findOr404(string $id): ArticleInterface { |
|
67 | 67 | $article = $this->articleProvider->getOneById($id); |
68 | 68 | |
69 | 69 | if (null === $article) { |
70 | - throw new NotFoundHttpException(sprintf('Article "%s" was not found.', $id)); |
|
70 | + throw new NotFoundHttpException(sprintf('Article "%s" was not found.', $id)); |
|
71 | 71 | } |
72 | 72 | |
73 | 73 | return $article; |
74 | - } |
|
74 | + } |
|
75 | 75 | } |
@@ -36,27 +36,27 @@ discard block |
||
36 | 36 | |
37 | 37 | class ArticleController extends AbstractController { |
38 | 38 | |
39 | - private FormFactoryInterface $formFactory; |
|
40 | - private RouteProviderInterface $routeProvider; // swp.provider.route |
|
41 | - private ArticleRepositoryInterface $articleRepository; //swp.repository.article |
|
42 | - private ArticleProviderInterface $articleProvider; //swp.provider.article |
|
43 | - private EventDispatcherInterface $eventDispatcher; |
|
44 | - private EntityManagerInterface $entityManager; // swp.object_manager.article |
|
45 | - private ArticleServiceInterface $articleService; // swp.service.article |
|
46 | - |
|
47 | - /** |
|
48 | - * @param FormFactoryInterface $formFactory |
|
49 | - * @param RouteProviderInterface $routeProvider |
|
50 | - * @param ArticleRepositoryInterface $articleRepository |
|
51 | - * @param ArticleProviderInterface $articleProvider |
|
52 | - * @param EventDispatcherInterface $eventDispatcher |
|
53 | - * @param EntityManagerInterface $entityManager |
|
54 | - * @param ArticleServiceInterface $articleService |
|
55 | - */ |
|
56 | - public function __construct(FormFactoryInterface $formFactory, RouteProviderInterface $routeProvider, |
|
57 | - ArticleRepositoryInterface $articleRepository, ArticleProviderInterface $articleProvider, |
|
58 | - EventDispatcherInterface $eventDispatcher, EntityManagerInterface $entityManager, |
|
59 | - ArticleServiceInterface $articleService) { |
|
39 | + private FormFactoryInterface $formFactory; |
|
40 | + private RouteProviderInterface $routeProvider; // swp.provider.route |
|
41 | + private ArticleRepositoryInterface $articleRepository; //swp.repository.article |
|
42 | + private ArticleProviderInterface $articleProvider; //swp.provider.article |
|
43 | + private EventDispatcherInterface $eventDispatcher; |
|
44 | + private EntityManagerInterface $entityManager; // swp.object_manager.article |
|
45 | + private ArticleServiceInterface $articleService; // swp.service.article |
|
46 | + |
|
47 | + /** |
|
48 | + * @param FormFactoryInterface $formFactory |
|
49 | + * @param RouteProviderInterface $routeProvider |
|
50 | + * @param ArticleRepositoryInterface $articleRepository |
|
51 | + * @param ArticleProviderInterface $articleProvider |
|
52 | + * @param EventDispatcherInterface $eventDispatcher |
|
53 | + * @param EntityManagerInterface $entityManager |
|
54 | + * @param ArticleServiceInterface $articleService |
|
55 | + */ |
|
56 | + public function __construct(FormFactoryInterface $formFactory, RouteProviderInterface $routeProvider, |
|
57 | + ArticleRepositoryInterface $articleRepository, ArticleProviderInterface $articleProvider, |
|
58 | + EventDispatcherInterface $eventDispatcher, EntityManagerInterface $entityManager, |
|
59 | + ArticleServiceInterface $articleService) { |
|
60 | 60 | $this->formFactory = $formFactory; |
61 | 61 | $this->routeProvider = $routeProvider; |
62 | 62 | $this->articleRepository = $articleRepository; |
@@ -64,30 +64,30 @@ discard block |
||
64 | 64 | $this->eventDispatcher = $eventDispatcher; |
65 | 65 | $this->entityManager = $entityManager; |
66 | 66 | $this->articleService = $articleService; |
67 | - } |
|
67 | + } |
|
68 | 68 | |
69 | 69 | |
70 | - /** |
|
71 | - * @Route("/api/{version}/content/articles/", methods={"GET"}, options={"expose"=true}, defaults={"version"="v2"}, name="swp_api_content_list_articles") |
|
72 | - * |
|
73 | - * @throws \Exception |
|
74 | - */ |
|
75 | - public function listAction(Request $request): ResourcesListResponseInterface { |
|
70 | + /** |
|
71 | + * @Route("/api/{version}/content/articles/", methods={"GET"}, options={"expose"=true}, defaults={"version"="v2"}, name="swp_api_content_list_articles") |
|
72 | + * |
|
73 | + * @throws \Exception |
|
74 | + */ |
|
75 | + public function listAction(Request $request): ResourcesListResponseInterface { |
|
76 | 76 | $authors = ''; |
77 | 77 | if (null !== $request->query->get('author', null)) { |
78 | - $authors = explode(', ', $request->query->get('author')); |
|
78 | + $authors = explode(', ', $request->query->get('author')); |
|
79 | 79 | } |
80 | 80 | |
81 | 81 | if ($request->query->get('route', false) && $request->query->get('includeSubRoutes', false)) { |
82 | - $routeObject = $this->routeProvider->getOneById($request->query->get('route')); |
|
82 | + $routeObject = $this->routeProvider->getOneById($request->query->get('route')); |
|
83 | 83 | |
84 | - if (null !== $routeObject) { |
|
84 | + if (null !== $routeObject) { |
|
85 | 85 | $ids = [$routeObject->getId()]; |
86 | 86 | foreach ($routeObject->getChildren() as $child) { |
87 | - $ids[] = $child->getId(); |
|
87 | + $ids[] = $child->getId(); |
|
88 | 88 | } |
89 | 89 | $request->query->set('route', $ids); |
90 | - } |
|
90 | + } |
|
91 | 91 | } |
92 | 92 | |
93 | 93 | $articles = $this->articleRepository |
@@ -102,25 +102,25 @@ discard block |
||
102 | 102 | ]), $request->query->all('sorting'), new PaginationData($request)); |
103 | 103 | |
104 | 104 | return new ResourcesListResponse($articles); |
105 | - } |
|
105 | + } |
|
106 | 106 | |
107 | - /** |
|
108 | - * @Route("/api/{version}/content/articles/{id}", methods={"GET"}, options={"expose"=true}, defaults={"version"="v2"}, name="swp_api_content_show_articles", requirements={"id"=".+"}) |
|
109 | - */ |
|
110 | - public function getAction($id): SingleResourceResponseInterface { |
|
107 | + /** |
|
108 | + * @Route("/api/{version}/content/articles/{id}", methods={"GET"}, options={"expose"=true}, defaults={"version"="v2"}, name="swp_api_content_show_articles", requirements={"id"=".+"}) |
|
109 | + */ |
|
110 | + public function getAction($id): SingleResourceResponseInterface { |
|
111 | 111 | $article = $this->articleProvider->getOneById($id); |
112 | 112 | |
113 | 113 | if (null === $article) { |
114 | - throw new NotFoundHttpException('Article was not found.'); |
|
114 | + throw new NotFoundHttpException('Article was not found.'); |
|
115 | 115 | } |
116 | 116 | |
117 | 117 | return new SingleResourceResponse($article); |
118 | - } |
|
118 | + } |
|
119 | 119 | |
120 | - /** |
|
121 | - * @Route("/api/{version}/content/articles/{id}", methods={"PATCH"}, options={"expose"=true}, defaults={"version"="v2"}, name="swp_api_content_update_articles", requirements={"id"=".+"}) |
|
122 | - */ |
|
123 | - public function updateAction(Request $request, $id): SingleResourceResponseInterface { |
|
120 | + /** |
|
121 | + * @Route("/api/{version}/content/articles/{id}", methods={"PATCH"}, options={"expose"=true}, defaults={"version"="v2"}, name="swp_api_content_update_articles", requirements={"id"=".+"}) |
|
122 | + */ |
|
123 | + public function updateAction(Request $request, $id): SingleResourceResponseInterface { |
|
124 | 124 | $objectManager = $this->entityManager; |
125 | 125 | $article = $this->findOr404($id); |
126 | 126 | $originalArticleStatus = $article->getStatus(); |
@@ -129,32 +129,32 @@ discard block |
||
129 | 129 | |
130 | 130 | $form->handleRequest($request); |
131 | 131 | if ($form->isSubmitted() && $form->isValid()) { |
132 | - $this->articleService->reactOnStatusChange($originalArticleStatus, $article); |
|
133 | - $objectManager->flush(); |
|
134 | - $objectManager->refresh($article); |
|
132 | + $this->articleService->reactOnStatusChange($originalArticleStatus, $article); |
|
133 | + $objectManager->flush(); |
|
134 | + $objectManager->refresh($article); |
|
135 | 135 | |
136 | - return new SingleResourceResponse($article); |
|
136 | + return new SingleResourceResponse($article); |
|
137 | 137 | } |
138 | 138 | |
139 | 139 | return new SingleResourceResponse($form, new ResponseContext(500)); |
140 | - } |
|
140 | + } |
|
141 | 141 | |
142 | - /** |
|
143 | - * @Route("/api/{version}/content/articles/{id}", methods={"DELETE"}, options={"expose"=true}, defaults={"version"="v2"}, name="swp_api_content_delete_articles", requirements={"id"=".+"}) |
|
144 | - */ |
|
145 | - public function deleteAction($id): SingleResourceResponseInterface { |
|
142 | + /** |
|
143 | + * @Route("/api/{version}/content/articles/{id}", methods={"DELETE"}, options={"expose"=true}, defaults={"version"="v2"}, name="swp_api_content_delete_articles", requirements={"id"=".+"}) |
|
144 | + */ |
|
145 | + public function deleteAction($id): SingleResourceResponseInterface { |
|
146 | 146 | $objectManager = $this->entityManager; |
147 | 147 | $objectManager->remove($this->findOr404($id)); |
148 | 148 | $objectManager->flush(); |
149 | 149 | |
150 | 150 | return new SingleResourceResponse(null, new ResponseContext(204)); |
151 | - } |
|
151 | + } |
|
152 | 152 | |
153 | - private function findOr404($id) { |
|
153 | + private function findOr404($id) { |
|
154 | 154 | if (null === $article = $this->articleProvider->getOneById($id)) { |
155 | - throw new NotFoundHttpException('Article was not found.'); |
|
155 | + throw new NotFoundHttpException('Article was not found.'); |
|
156 | 156 | } |
157 | 157 | |
158 | 158 | return $article; |
159 | - } |
|
159 | + } |
|
160 | 160 | } |
@@ -32,59 +32,59 @@ |
||
32 | 32 | use Symfony\Component\HttpFoundation\Request; |
33 | 33 | |
34 | 34 | abstract class AbstractAPIController extends Controller { |
35 | - public function listWebhooks(EventDispatcherInterface $eventDispatcher, RepositoryInterface $repository, |
|
36 | - Request $request): ResourcesListResponse { |
|
35 | + public function listWebhooks(EventDispatcherInterface $eventDispatcher, RepositoryInterface $repository, |
|
36 | + Request $request): ResourcesListResponse { |
|
37 | 37 | $webhooks = $repository->getPaginatedByCriteria($eventDispatcher, new Criteria(), $request->query->all('sorting',), new PaginationData($request)); |
38 | 38 | |
39 | 39 | return new ResourcesListResponse($webhooks); |
40 | - } |
|
40 | + } |
|
41 | 41 | |
42 | - public function getSingleWebhook(WebhookInterface $webhook): SingleResourceResponse { |
|
42 | + public function getSingleWebhook(WebhookInterface $webhook): SingleResourceResponse { |
|
43 | 43 | return new SingleResourceResponse($webhook); |
44 | - } |
|
45 | - |
|
46 | - public function createWebhook( |
|
47 | - RepositoryInterface $ruleRepository, |
|
48 | - FactoryInterface $ruleFactory, |
|
49 | - Request $request, |
|
50 | - FormFactoryInterface $formFactory |
|
51 | - ): SingleResourceResponse { |
|
44 | + } |
|
45 | + |
|
46 | + public function createWebhook( |
|
47 | + RepositoryInterface $ruleRepository, |
|
48 | + FactoryInterface $ruleFactory, |
|
49 | + Request $request, |
|
50 | + FormFactoryInterface $formFactory |
|
51 | + ): SingleResourceResponse { |
|
52 | 52 | $webhook = $ruleFactory->create(); |
53 | 53 | $form = $formFactory->createNamed('', WebhookType::class, $webhook); |
54 | 54 | $form->handleRequest($request); |
55 | 55 | |
56 | 56 | if ($form->isSubmitted() && $form->isValid()) { |
57 | - $ruleRepository->add($webhook); |
|
57 | + $ruleRepository->add($webhook); |
|
58 | 58 | |
59 | - return new SingleResourceResponse($webhook, new ResponseContext(201)); |
|
59 | + return new SingleResourceResponse($webhook, new ResponseContext(201)); |
|
60 | 60 | } |
61 | 61 | |
62 | 62 | return new SingleResourceResponse($form, new ResponseContext(400)); |
63 | - } |
|
63 | + } |
|
64 | 64 | |
65 | - public function deleteWebhook(RepositoryInterface $webhookRepository, |
|
65 | + public function deleteWebhook(RepositoryInterface $webhookRepository, |
|
66 | 66 | WebhookInterface $webhook): SingleResourceResponse { |
67 | 67 | $webhookRepository->remove($webhook); |
68 | 68 | |
69 | 69 | return new SingleResourceResponse(null, new ResponseContext(204)); |
70 | - } |
|
71 | - |
|
72 | - public function updateWebhook( |
|
73 | - ObjectManager $objectManager, |
|
74 | - Request $request, |
|
75 | - WebhookInterface $webhook, |
|
76 | - FormFactoryInterface $formFactory |
|
77 | - ): SingleResourceResponse { |
|
70 | + } |
|
71 | + |
|
72 | + public function updateWebhook( |
|
73 | + ObjectManager $objectManager, |
|
74 | + Request $request, |
|
75 | + WebhookInterface $webhook, |
|
76 | + FormFactoryInterface $formFactory |
|
77 | + ): SingleResourceResponse { |
|
78 | 78 | $form = $formFactory->createNamed('', WebhookType::class, $webhook, ['method' => $request->getMethod()]); |
79 | 79 | |
80 | 80 | $form->handleRequest($request); |
81 | 81 | if ($form->isSubmitted() && $form->isValid()) { |
82 | - $objectManager->flush(); |
|
83 | - $objectManager->refresh($webhook); |
|
82 | + $objectManager->flush(); |
|
83 | + $objectManager->refresh($webhook); |
|
84 | 84 | |
85 | - return new SingleResourceResponse($webhook); |
|
85 | + return new SingleResourceResponse($webhook); |
|
86 | 86 | } |
87 | 87 | |
88 | 88 | return new SingleResourceResponse($form, new ResponseContext(400)); |
89 | - } |
|
89 | + } |
|
90 | 90 | } |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | /** |
103 | 103 | * {@inheritdoc} |
104 | 104 | */ |
105 | - public function findChildrenAsTree(EventDispatcherInterface $eventDispatcher,MenuItemInterface $menuItem) |
|
105 | + public function findChildrenAsTree(EventDispatcherInterface $eventDispatcher, MenuItemInterface $menuItem) |
|
106 | 106 | { |
107 | 107 | $queryBuilder = $this->createQueryBuilder('m'); |
108 | 108 | $queryBuilder |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | ->orderBy('m.lft', 'asc') |
115 | 115 | ; |
116 | 116 | |
117 | - return $this->getPaginator($eventDispatcher,$queryBuilder, new PaginationData()); |
|
117 | + return $this->getPaginator($eventDispatcher, $queryBuilder, new PaginationData()); |
|
118 | 118 | } |
119 | 119 | |
120 | 120 | /** |
@@ -32,122 +32,122 @@ |
||
32 | 32 | use Symfony\Component\EventDispatcher\EventDispatcherInterface; |
33 | 33 | |
34 | 34 | class ContentListsItemLoader extends PaginatedLoader implements LoaderInterface { |
35 | - protected ContentListRepositoryInterface $contentListRepository; |
|
36 | - protected ContentListItemRepositoryInterface $contentListItemsRepository; |
|
37 | - protected MetaFactoryInterface $metaFactory; |
|
38 | - private CacheBlockTagsCollectorInterface $cacheBlocksTagsCollector; |
|
39 | - private EventDispatcherInterface $eventDispatcher; |
|
40 | - |
|
41 | - public function __construct( |
|
42 | - ContentListRepositoryInterface $contentListRepository, |
|
43 | - ContentListItemRepositoryInterface $contentListItemRepository, |
|
44 | - MetaFactoryInterface $metaFactory, |
|
45 | - CacheBlockTagsCollectorInterface $cacheBlocksTagsCollector, |
|
46 | - EventDispatcherInterface $eventDispatcher |
|
47 | - ) { |
|
35 | + protected ContentListRepositoryInterface $contentListRepository; |
|
36 | + protected ContentListItemRepositoryInterface $contentListItemsRepository; |
|
37 | + protected MetaFactoryInterface $metaFactory; |
|
38 | + private CacheBlockTagsCollectorInterface $cacheBlocksTagsCollector; |
|
39 | + private EventDispatcherInterface $eventDispatcher; |
|
40 | + |
|
41 | + public function __construct( |
|
42 | + ContentListRepositoryInterface $contentListRepository, |
|
43 | + ContentListItemRepositoryInterface $contentListItemRepository, |
|
44 | + MetaFactoryInterface $metaFactory, |
|
45 | + CacheBlockTagsCollectorInterface $cacheBlocksTagsCollector, |
|
46 | + EventDispatcherInterface $eventDispatcher |
|
47 | + ) { |
|
48 | 48 | $this->contentListRepository = $contentListRepository; |
49 | 49 | $this->contentListItemsRepository = $contentListItemRepository; |
50 | 50 | $this->metaFactory = $metaFactory; |
51 | 51 | $this->cacheBlocksTagsCollector = $cacheBlocksTagsCollector; |
52 | 52 | $this->eventDispatcher = $eventDispatcher; |
53 | - } |
|
53 | + } |
|
54 | 54 | |
55 | - public function load($type, $parameters = [], $withoutParameters = [], $responseType = LoaderInterface::SINGLE) { |
|
55 | + public function load($type, $parameters = [], $withoutParameters = [], $responseType = LoaderInterface::SINGLE) { |
|
56 | 56 | $criteria = new Criteria(); |
57 | 57 | if (LoaderInterface::COLLECTION === $responseType) { |
58 | - if (array_key_exists('contentListId', $parameters) && is_numeric($parameters['contentListId'])) { |
|
58 | + if (array_key_exists('contentListId', $parameters) && is_numeric($parameters['contentListId'])) { |
|
59 | 59 | $contentList = $this->contentListRepository->findOneBy(['id' => $parameters['contentListId']]); |
60 | 60 | $criteria->set('contentList', $contentList); |
61 | - } elseif (array_key_exists('contentListName', $parameters) && is_string($parameters['contentListName'])) { |
|
61 | + } elseif (array_key_exists('contentListName', $parameters) && is_string($parameters['contentListName'])) { |
|
62 | 62 | $contentList = $this->contentListRepository->findOneBy(['name' => $parameters['contentListName']]); |
63 | 63 | $criteria->set('contentList', $contentList); |
64 | - } elseif ( |
|
65 | - array_key_exists('contentList', $parameters) && |
|
64 | + } elseif ( |
|
65 | + array_key_exists('contentList', $parameters) && |
|
66 | 66 | $parameters['contentList'] instanceof Meta && |
67 | 67 | $parameters['contentList']->getValues() instanceof ContentListInterface |
68 | - ) { |
|
68 | + ) { |
|
69 | 69 | $criteria->set('contentList', $parameters['contentList']->getValues()); |
70 | - } |
|
70 | + } |
|
71 | 71 | |
72 | - if (!$criteria->has('contentList')) { |
|
72 | + if (!$criteria->has('contentList')) { |
|
73 | 73 | return false; |
74 | - } |
|
74 | + } |
|
75 | 75 | |
76 | - if (array_key_exists('sticky', $parameters) && is_bool($parameters['sticky'])) { |
|
76 | + if (array_key_exists('sticky', $parameters) && is_bool($parameters['sticky'])) { |
|
77 | 77 | $criteria->set('sticky', $parameters['sticky']); |
78 | - } |
|
78 | + } |
|
79 | 79 | |
80 | - if (isset($withoutParameters['content']) && !empty($withoutParameters['content'])) { |
|
80 | + if (isset($withoutParameters['content']) && !empty($withoutParameters['content'])) { |
|
81 | 81 | $criteria->set('exclude_content', $withoutParameters['content']); |
82 | - } |
|
83 | - |
|
84 | - $criteria = $this->applyPaginationToCriteria($criteria, $parameters); |
|
85 | - $contentListItems = $this->contentListItemsRepository->getPaginatedByCriteria($this->eventDispatcher, $criteria, $criteria->get('order', [ |
|
86 | - 'sticky' => 'desc', |
|
87 | - ])); |
|
88 | - $itemsCollection = new ArrayCollection($contentListItems->getItems()); |
|
89 | - if ($itemsCollection->count() > 0) { |
|
82 | + } |
|
83 | + |
|
84 | + $criteria = $this->applyPaginationToCriteria($criteria, $parameters); |
|
85 | + $contentListItems = $this->contentListItemsRepository->getPaginatedByCriteria($this->eventDispatcher, $criteria, $criteria->get('order', [ |
|
86 | + 'sticky' => 'desc', |
|
87 | + ])); |
|
88 | + $itemsCollection = new ArrayCollection($contentListItems->getItems()); |
|
89 | + if ($itemsCollection->count() > 0) { |
|
90 | 90 | $metaCollection = new MetaCollection(); |
91 | 91 | $metaCollection->setTotalItemsCount($contentListItems->getTotalItemCount()); |
92 | 92 | foreach ($itemsCollection as $item) { |
93 | - $itemMeta = $this->getItemMeta($item); |
|
94 | - if (null !== $itemMeta) { |
|
93 | + $itemMeta = $this->getItemMeta($item); |
|
94 | + if (null !== $itemMeta) { |
|
95 | 95 | $metaCollection->add($itemMeta); |
96 | - } |
|
96 | + } |
|
97 | 97 | } |
98 | 98 | unset($itemsCollection, $criteria); |
99 | 99 | |
100 | 100 | return $metaCollection; |
101 | - } |
|
101 | + } |
|
102 | 102 | } elseif (LoaderInterface::SINGLE === $responseType) { |
103 | - if (array_key_exists('contentListName', $parameters) && is_string($parameters['contentListName'])) { |
|
103 | + if (array_key_exists('contentListName', $parameters) && is_string($parameters['contentListName'])) { |
|
104 | 104 | $contentList = $this->contentListRepository->findOneBy(['name' => $parameters['contentListName']]); |
105 | 105 | $criteria->set('contentList', $contentList); |
106 | - } elseif ( |
|
107 | - array_key_exists('contentList', $parameters) && |
|
106 | + } elseif ( |
|
107 | + array_key_exists('contentList', $parameters) && |
|
108 | 108 | $parameters['contentList'] instanceof Meta && |
109 | 109 | $parameters['contentList']->getValues() instanceof ContentListInterface |
110 | - ) { |
|
110 | + ) { |
|
111 | 111 | $criteria->set('contentList', $parameters['contentList']->getValues()); |
112 | - } |
|
112 | + } |
|
113 | 113 | |
114 | - if ( |
|
115 | - isset($contentList) |
|
114 | + if ( |
|
115 | + isset($contentList) |
|
116 | 116 | && array_key_exists('article', $parameters) |
117 | 117 | && $parameters['article'] instanceof Meta |
118 | 118 | && $parameters['article']->getValues() instanceof ArticleInterface |
119 | - ) { |
|
119 | + ) { |
|
120 | 120 | /** @var ContentListItemInterface $currentContentListItem */ |
121 | 121 | $currentContentListItem = $this->contentListItemsRepository->getQueryByCriteria(new Criteria([ |
122 | 122 | 'contentList' => $contentList, |
123 | 123 | 'content' => $parameters['article']->getValues(), |
124 | 124 | ]), [], 'n')->getQuery()->getOneOrNullResult(); |
125 | 125 | $position = $currentContentListItem->getPosition(); |
126 | - } |
|
126 | + } |
|
127 | 127 | |
128 | - if (isset($position) && array_key_exists('prev', $parameters) && true === $parameters['prev']) { |
|
128 | + if (isset($position) && array_key_exists('prev', $parameters) && true === $parameters['prev']) { |
|
129 | 129 | ++$position; |
130 | - } elseif (isset($position) && array_key_exists('next', $parameters) && true === $parameters['next']) { |
|
130 | + } elseif (isset($position) && array_key_exists('next', $parameters) && true === $parameters['next']) { |
|
131 | 131 | --$position; |
132 | - } else { |
|
132 | + } else { |
|
133 | 133 | return null; |
134 | - } |
|
134 | + } |
|
135 | 135 | |
136 | - return $this->getItemMeta($this->contentListItemsRepository->getOneOrNullByPosition($criteria, $position)); |
|
136 | + return $this->getItemMeta($this->contentListItemsRepository->getOneOrNullByPosition($criteria, $position)); |
|
137 | + } |
|
137 | 138 | } |
138 | - } |
|
139 | 139 | |
140 | - public function isSupported(string $type): bool { |
|
140 | + public function isSupported(string $type): bool { |
|
141 | 141 | return in_array($type, ['contentListItems', 'contentListItem']); |
142 | - } |
|
142 | + } |
|
143 | 143 | |
144 | - private function getItemMeta($item) { |
|
144 | + private function getItemMeta($item) { |
|
145 | 145 | if (null !== $item) { |
146 | - if ($item instanceof ContentListItemInterface) { |
|
146 | + if ($item instanceof ContentListItemInterface) { |
|
147 | 147 | $this->cacheBlocksTagsCollector->addTagToCurrentCacheBlock('a-' . $item->getContent()->getId()); |
148 | - } |
|
148 | + } |
|
149 | 149 | |
150 | - return $this->metaFactory->create($item); |
|
150 | + return $this->metaFactory->create($item); |
|
151 | + } |
|
151 | 152 | } |
152 | - } |
|
153 | 153 | } |
@@ -144,7 +144,7 @@ |
||
144 | 144 | private function getItemMeta($item) { |
145 | 145 | if (null !== $item) { |
146 | 146 | if ($item instanceof ContentListItemInterface) { |
147 | - $this->cacheBlocksTagsCollector->addTagToCurrentCacheBlock('a-' . $item->getContent()->getId()); |
|
147 | + $this->cacheBlocksTagsCollector->addTagToCurrentCacheBlock('a-'.$item->getContent()->getId()); |
|
148 | 148 | } |
149 | 149 | |
150 | 150 | return $this->metaFactory->create($item); |
@@ -121,7 +121,7 @@ |
||
121 | 121 | */ |
122 | 122 | public function verifyUserEmail(Request $request, GuardAuthenticatorHandler $guardHandler, |
123 | 123 | LoginAuthenticator $authenticator): Response { |
124 | - $id = (int)$request->get('id'); // retrieve the user id from the url |
|
124 | + $id = (int) $request->get('id'); // retrieve the user id from the url |
|
125 | 125 | |
126 | 126 | if ($request->isXmlHttpRequest()) { |
127 | 127 | return $this->verifyUserEmailFromPWA($id, $request); |
@@ -41,43 +41,43 @@ discard block |
||
41 | 41 | |
42 | 42 | class RegistrationController extends AbstractController { |
43 | 43 | |
44 | - private SettingsManagerInterface $settingsManager; |
|
45 | - private ScopeContextInterface $scopeContext; |
|
46 | - private EmailVerifier $emailVerifier; |
|
47 | - private UserManagerInterface $userManager; |
|
48 | - private EntityManagerInterface $entityManager; |
|
49 | - |
|
50 | - /** |
|
51 | - * @param SettingsManagerInterface $settingsManager |
|
52 | - * @param ScopeContextInterface $scopeContext |
|
53 | - * @param EmailVerifier $emailVerifier |
|
54 | - * @param UserManagerInterface $userManager |
|
55 | - * @param EntityManagerInterface $entityManager |
|
56 | - */ |
|
57 | - public function __construct(SettingsManagerInterface $settingsManager, ScopeContextInterface $scopeContext, |
|
58 | - EmailVerifier $emailVerifier, UserManagerInterface $userManager, |
|
59 | - EntityManagerInterface $entityManager) { |
|
44 | + private SettingsManagerInterface $settingsManager; |
|
45 | + private ScopeContextInterface $scopeContext; |
|
46 | + private EmailVerifier $emailVerifier; |
|
47 | + private UserManagerInterface $userManager; |
|
48 | + private EntityManagerInterface $entityManager; |
|
49 | + |
|
50 | + /** |
|
51 | + * @param SettingsManagerInterface $settingsManager |
|
52 | + * @param ScopeContextInterface $scopeContext |
|
53 | + * @param EmailVerifier $emailVerifier |
|
54 | + * @param UserManagerInterface $userManager |
|
55 | + * @param EntityManagerInterface $entityManager |
|
56 | + */ |
|
57 | + public function __construct(SettingsManagerInterface $settingsManager, ScopeContextInterface $scopeContext, |
|
58 | + EmailVerifier $emailVerifier, UserManagerInterface $userManager, |
|
59 | + EntityManagerInterface $entityManager) { |
|
60 | 60 | $this->settingsManager = $settingsManager; |
61 | 61 | $this->scopeContext = $scopeContext; |
62 | 62 | $this->emailVerifier = $emailVerifier; |
63 | 63 | $this->userManager = $userManager; |
64 | 64 | $this->entityManager = $entityManager; |
65 | - } |
|
66 | - |
|
67 | - |
|
68 | - /** |
|
69 | - * @FOSRoute("/api/{version}/users/register/", methods={"POST"}, options={"expose"=true}, defaults={"version"="v2"}, name="swp_api_core_register_user") |
|
70 | - */ |
|
71 | - public function registerAction( |
|
72 | - Request $request, |
|
73 | - UserPasswordHasherInterface $passwordEncoder, |
|
74 | - UserManagerInterface $userManager, |
|
75 | - MailerInterface $mailer |
|
76 | - ) { |
|
65 | + } |
|
66 | + |
|
67 | + |
|
68 | + /** |
|
69 | + * @FOSRoute("/api/{version}/users/register/", methods={"POST"}, options={"expose"=true}, defaults={"version"="v2"}, name="swp_api_core_register_user") |
|
70 | + */ |
|
71 | + public function registerAction( |
|
72 | + Request $request, |
|
73 | + UserPasswordHasherInterface $passwordEncoder, |
|
74 | + UserManagerInterface $userManager, |
|
75 | + MailerInterface $mailer |
|
76 | + ) { |
|
77 | 77 | try { |
78 | - $this->ensureThatRegistrationIsEnabled(); |
|
78 | + $this->ensureThatRegistrationIsEnabled(); |
|
79 | 79 | } catch (NotFoundHttpException $e) { |
80 | - return new SingleResourceResponse(null, new ResponseContext(404)); |
|
80 | + return new SingleResourceResponse(null, new ResponseContext(404)); |
|
81 | 81 | } |
82 | 82 | |
83 | 83 | $user = $userManager->createUser(); |
@@ -86,66 +86,66 @@ discard block |
||
86 | 86 | $form->handleRequest($request); |
87 | 87 | |
88 | 88 | if ($form->isSubmitted() && $form->isValid()) { |
89 | - $user->addRole('ROLE_USER'); |
|
90 | - // encode the plain password |
|
91 | - $user->setPassword( |
|
92 | - $passwordEncoder->hashPassword( |
|
93 | - $user, |
|
94 | - $form->get('plainPassword')->getData() |
|
95 | - ) |
|
96 | - ); |
|
97 | - |
|
98 | - $entityManager = $this->entityManager; |
|
99 | - $entityManager->persist($user); |
|
100 | - $entityManager->flush(); |
|
101 | - |
|
102 | - $signatureComponents = $this->emailVerifier->getSignatureComponents('swp_user_verify_email', $user); |
|
103 | - $url = $signatureComponents->getSignedUrl(); |
|
104 | - |
|
105 | - $mailer->sendConfirmationEmail($user, $url); |
|
106 | - |
|
107 | - return new JsonResponse([ |
|
108 | - 'message' => sprintf( |
|
109 | - 'The user has been created successfully. |
|
89 | + $user->addRole('ROLE_USER'); |
|
90 | + // encode the plain password |
|
91 | + $user->setPassword( |
|
92 | + $passwordEncoder->hashPassword( |
|
93 | + $user, |
|
94 | + $form->get('plainPassword')->getData() |
|
95 | + ) |
|
96 | + ); |
|
97 | + |
|
98 | + $entityManager = $this->entityManager; |
|
99 | + $entityManager->persist($user); |
|
100 | + $entityManager->flush(); |
|
101 | + |
|
102 | + $signatureComponents = $this->emailVerifier->getSignatureComponents('swp_user_verify_email', $user); |
|
103 | + $url = $signatureComponents->getSignedUrl(); |
|
104 | + |
|
105 | + $mailer->sendConfirmationEmail($user, $url); |
|
106 | + |
|
107 | + return new JsonResponse([ |
|
108 | + 'message' => sprintf( |
|
109 | + 'The user has been created successfully. |
|
110 | 110 | An email has been sent to %s. It contains an activation link you must click to activate your account.', |
111 | - $user->getEmail() |
|
112 | - ), |
|
113 | - 'url' => $url, |
|
114 | - ]); |
|
111 | + $user->getEmail() |
|
112 | + ), |
|
113 | + 'url' => $url, |
|
114 | + ]); |
|
115 | 115 | } |
116 | 116 | |
117 | 117 | return new SingleResourceResponse($form, new ResponseContext(400)); |
118 | - } |
|
118 | + } |
|
119 | 119 | |
120 | - /** |
|
121 | - * @Route("/verify/email", name="swp_user_verify_email") |
|
122 | - */ |
|
123 | - public function verifyUserEmail(Request $request, GuardAuthenticatorHandler $guardHandler, |
|
124 | - LoginAuthenticator $authenticator): Response { |
|
120 | + /** |
|
121 | + * @Route("/verify/email", name="swp_user_verify_email") |
|
122 | + */ |
|
123 | + public function verifyUserEmail(Request $request, GuardAuthenticatorHandler $guardHandler, |
|
124 | + LoginAuthenticator $authenticator): Response { |
|
125 | 125 | $id = (int)$request->get('id'); // retrieve the user id from the url |
126 | 126 | |
127 | 127 | if ($request->isXmlHttpRequest()) { |
128 | - return $this->verifyUserEmailFromPWA($id, $request); |
|
128 | + return $this->verifyUserEmailFromPWA($id, $request); |
|
129 | 129 | } |
130 | 130 | |
131 | 131 | // Verify the user id exists and is not null |
132 | 132 | if (null === $id) { |
133 | - return $this->redirectToRoute('homepage'); |
|
133 | + return $this->redirectToRoute('homepage'); |
|
134 | 134 | } |
135 | 135 | |
136 | 136 | $user = $this->userManager->find($id); |
137 | 137 | |
138 | 138 | // Ensure the user exists in persistence |
139 | 139 | if (null === $user) { |
140 | - return $this->redirectToRoute('homepage'); |
|
140 | + return $this->redirectToRoute('homepage'); |
|
141 | 141 | } |
142 | 142 | // validate email confirmation link, sets User::isVerified=true and persists |
143 | 143 | try { |
144 | - $this->emailVerifier->handleEmailConfirmation($request, $user); |
|
144 | + $this->emailVerifier->handleEmailConfirmation($request, $user); |
|
145 | 145 | } catch (VerifyEmailExceptionInterface $exception) { |
146 | - $this->addFlash('verify_email_error', $exception->getReason()); |
|
146 | + $this->addFlash('verify_email_error', $exception->getReason()); |
|
147 | 147 | |
148 | - return $this->redirectToRoute('homepage'); |
|
148 | + return $this->redirectToRoute('homepage'); |
|
149 | 149 | } |
150 | 150 | |
151 | 151 | $guardHandler->authenticateUserAndHandleSuccess( |
@@ -158,63 +158,63 @@ discard block |
||
158 | 158 | $this->addFlash('success', 'The user has been created successfully.'); |
159 | 159 | |
160 | 160 | return $this->redirectToRoute('swp_user_registration_confirmed'); |
161 | - } |
|
161 | + } |
|
162 | 162 | |
163 | - /** |
|
164 | - * Tell the user his account is now confirmed. |
|
165 | - */ |
|
166 | - public function confirmedAction(Request $request) { |
|
163 | + /** |
|
164 | + * Tell the user his account is now confirmed. |
|
165 | + */ |
|
166 | + public function confirmedAction(Request $request) { |
|
167 | 167 | $user = $this->getUser(); |
168 | 168 | if (!is_object($user) || !$user instanceof UserInterface) { |
169 | - $this->createAccessDeniedException('This user does not have access to this section.'); |
|
169 | + $this->createAccessDeniedException('This user does not have access to this section.'); |
|
170 | 170 | } |
171 | 171 | |
172 | 172 | return $this->render('@SWPUser/Registration/confirmed.html.twig', [ |
173 | 173 | 'user' => $user, |
174 | 174 | ]); |
175 | - } |
|
175 | + } |
|
176 | 176 | |
177 | - /** |
|
178 | - * @throws NotFoundHttpException |
|
179 | - */ |
|
180 | - private function ensureThatRegistrationIsEnabled() { |
|
177 | + /** |
|
178 | + * @throws NotFoundHttpException |
|
179 | + */ |
|
180 | + private function ensureThatRegistrationIsEnabled() { |
|
181 | 181 | $settingName = 'registration_enabled'; |
182 | 182 | $setting = $this->settingsManager->getOneSettingByName($settingName); |
183 | 183 | $registrationEnabled = $this->settingsManager |
184 | 184 | ->get($settingName, $setting['scope'], $this->scopeContext->getScopeOwner($setting['scope'])); |
185 | 185 | if (!$registrationEnabled) { |
186 | - throw new NotFoundHttpException('Registration is disabled.'); |
|
186 | + throw new NotFoundHttpException('Registration is disabled.'); |
|
187 | + } |
|
187 | 188 | } |
188 | - } |
|
189 | 189 | |
190 | - private function verifyUserEmailFromPWA(int $id, Request $request): JsonResponse { |
|
190 | + private function verifyUserEmailFromPWA(int $id, Request $request): JsonResponse { |
|
191 | 191 | // Verify the user id exists and is not null |
192 | 192 | if (null === $id) { |
193 | - return new JsonResponse( |
|
194 | - ['error' => 'User does not exist'] |
|
195 | - ); |
|
193 | + return new JsonResponse( |
|
194 | + ['error' => 'User does not exist'] |
|
195 | + ); |
|
196 | 196 | } |
197 | 197 | |
198 | 198 | $user = $this->userManager->find($id); |
199 | 199 | |
200 | 200 | // Ensure the user exists in persistence |
201 | 201 | if (null === $user) { |
202 | - return new JsonResponse( |
|
203 | - ['error' => 'User does not exist'] |
|
204 | - ); |
|
202 | + return new JsonResponse( |
|
203 | + ['error' => 'User does not exist'] |
|
204 | + ); |
|
205 | 205 | } |
206 | 206 | |
207 | 207 | // validate email confirmation link, sets User::isVerified=true and persists |
208 | 208 | try { |
209 | - $this->emailVerifier->handleEmailConfirmation($request, $user); |
|
209 | + $this->emailVerifier->handleEmailConfirmation($request, $user); |
|
210 | 210 | } catch (VerifyEmailExceptionInterface $exception) { |
211 | - return new JsonResponse( |
|
212 | - ['error' => 'Registration confirmation invalid'] |
|
213 | - ); |
|
211 | + return new JsonResponse( |
|
212 | + ['error' => 'Registration confirmation invalid'] |
|
213 | + ); |
|
214 | 214 | } |
215 | 215 | |
216 | 216 | return new JsonResponse( |
217 | 217 | ['message' => 'The user has been created successfully.'] |
218 | 218 | ); |
219 | - } |
|
219 | + } |
|
220 | 220 | } |
@@ -32,44 +32,44 @@ discard block |
||
32 | 32 | |
33 | 33 | class ProfileController extends AbstractController { |
34 | 34 | |
35 | - private EntityManagerInterface $entityManager; |
|
36 | - private AuthorizationCheckerInterface $authorizationChecker; |
|
37 | - private UserRepository $userRepository; |
|
38 | - |
|
39 | - /** |
|
40 | - * @param EntityManagerInterface $entityManager |
|
41 | - * @param AuthorizationCheckerInterface $authorizationChecker |
|
42 | - * @param UserRepository $userRepository |
|
43 | - */ |
|
44 | - public function __construct(EntityManagerInterface $entityManager, |
|
45 | - AuthorizationCheckerInterface $authorizationChecker, UserRepository $userRepository) { |
|
35 | + private EntityManagerInterface $entityManager; |
|
36 | + private AuthorizationCheckerInterface $authorizationChecker; |
|
37 | + private UserRepository $userRepository; |
|
38 | + |
|
39 | + /** |
|
40 | + * @param EntityManagerInterface $entityManager |
|
41 | + * @param AuthorizationCheckerInterface $authorizationChecker |
|
42 | + * @param UserRepository $userRepository |
|
43 | + */ |
|
44 | + public function __construct(EntityManagerInterface $entityManager, |
|
45 | + AuthorizationCheckerInterface $authorizationChecker, UserRepository $userRepository) { |
|
46 | 46 | $this->entityManager = $entityManager; |
47 | 47 | $this->authorizationChecker = $authorizationChecker; |
48 | 48 | $this->userRepository = $userRepository; |
49 | - } |
|
49 | + } |
|
50 | 50 | |
51 | 51 | |
52 | - /** |
|
53 | - * @Route("/api/{version}/users/profile/{id}", methods={"GET"}, options={"expose"=true}, defaults={"version"="v2"}, name="swp_api_user_get_user_profile") |
|
54 | - */ |
|
55 | - public function getAction($id) { |
|
52 | + /** |
|
53 | + * @Route("/api/{version}/users/profile/{id}", methods={"GET"}, options={"expose"=true}, defaults={"version"="v2"}, name="swp_api_user_get_user_profile") |
|
54 | + */ |
|
55 | + public function getAction($id) { |
|
56 | 56 | $requestedUser = $this->userRepository->find($id); |
57 | 57 | if (!is_object($requestedUser) || !$requestedUser instanceof UserInterface) { |
58 | - throw new NotFoundHttpException('Requested user don\'t exists'); |
|
58 | + throw new NotFoundHttpException('Requested user don\'t exists'); |
|
59 | 59 | } |
60 | 60 | |
61 | 61 | $this->checkIfCanAccess($requestedUser); |
62 | 62 | |
63 | 63 | return new SingleResourceResponse($requestedUser); |
64 | - } |
|
64 | + } |
|
65 | 65 | |
66 | - /** |
|
67 | - * @Route("/api/{version}/users/profile/{id}", methods={"PATCH"}, options={"expose"=true}, defaults={"version"="v2"}, name="swp_api_user_edit_user_profile") |
|
68 | - */ |
|
69 | - public function editAction(Request $request, $id, UserPasswordEncoderInterface $passwordEncoder) { |
|
66 | + /** |
|
67 | + * @Route("/api/{version}/users/profile/{id}", methods={"PATCH"}, options={"expose"=true}, defaults={"version"="v2"}, name="swp_api_user_edit_user_profile") |
|
68 | + */ |
|
69 | + public function editAction(Request $request, $id, UserPasswordEncoderInterface $passwordEncoder) { |
|
70 | 70 | $requestedUser = $this->userRepository->find($id); |
71 | 71 | if (!is_object($requestedUser) || !$requestedUser instanceof UserInterface) { |
72 | - throw new NotFoundHttpException('Requested user don\'t exists'); |
|
72 | + throw new NotFoundHttpException('Requested user don\'t exists'); |
|
73 | 73 | } |
74 | 74 | |
75 | 75 | $this->checkIfCanAccess($requestedUser); |
@@ -80,32 +80,32 @@ discard block |
||
80 | 80 | $form->handleRequest($request); |
81 | 81 | |
82 | 82 | if ($form->isSubmitted() && $form->isValid()) { |
83 | - if (!empty($form->get('plainPassword')->getData())) { |
|
83 | + if (!empty($form->get('plainPassword')->getData())) { |
|
84 | 84 | $requestedUser->setPassword( |
85 | 85 | $passwordEncoder->encodePassword( |
86 | 86 | $requestedUser, |
87 | 87 | $form->get('plainPassword')->getData() |
88 | 88 | ) |
89 | 89 | ); |
90 | - } |
|
90 | + } |
|
91 | 91 | |
92 | - $entityManager = $this->entityManager; |
|
93 | - $entityManager->flush(); |
|
92 | + $entityManager = $this->entityManager; |
|
93 | + $entityManager->flush(); |
|
94 | 94 | |
95 | - return new SingleResourceResponse($requestedUser); |
|
95 | + return new SingleResourceResponse($requestedUser); |
|
96 | 96 | } |
97 | 97 | |
98 | 98 | return new SingleResourceResponse($form, new ResponseContext(400)); |
99 | - } |
|
99 | + } |
|
100 | 100 | |
101 | - private function checkIfCanAccess($requestedUser) { |
|
101 | + private function checkIfCanAccess($requestedUser) { |
|
102 | 102 | /** @var UserInterface $currentUser */ |
103 | 103 | $currentUser = $this->getUser(); |
104 | 104 | if ( |
105 | 105 | !$this->authorizationChecker->isGranted('ROLE_ADMIN') && |
106 | 106 | $requestedUser->getId() !== $currentUser->getId() |
107 | 107 | ) { |
108 | - throw new AccessDeniedException('This user does not have access to this section. profile'); |
|
108 | + throw new AccessDeniedException('This user does not have access to this section. profile'); |
|
109 | + } |
|
109 | 110 | } |
110 | - } |
|
111 | 111 | } |
@@ -36,88 +36,88 @@ discard block |
||
36 | 36 | * @Route("/reset-password") |
37 | 37 | */ |
38 | 38 | class ResetPasswordController extends AbstractController { |
39 | - use ResetPasswordControllerTrait; |
|
39 | + use ResetPasswordControllerTrait; |
|
40 | 40 | |
41 | - private ResetPasswordHelperInterface $resetPasswordHelper; |
|
42 | - private EntityManagerInterface $entityManager; |
|
41 | + private ResetPasswordHelperInterface $resetPasswordHelper; |
|
42 | + private EntityManagerInterface $entityManager; |
|
43 | 43 | |
44 | - /** |
|
45 | - * @param ResetPasswordHelperInterface $resetPasswordHelper |
|
46 | - * @param EntityManagerInterface $entityManager |
|
47 | - */ |
|
48 | - public function __construct(ResetPasswordHelperInterface $resetPasswordHelper, |
|
49 | - EntityManagerInterface $entityManager) { |
|
44 | + /** |
|
45 | + * @param ResetPasswordHelperInterface $resetPasswordHelper |
|
46 | + * @param EntityManagerInterface $entityManager |
|
47 | + */ |
|
48 | + public function __construct(ResetPasswordHelperInterface $resetPasswordHelper, |
|
49 | + EntityManagerInterface $entityManager) { |
|
50 | 50 | $this->resetPasswordHelper = $resetPasswordHelper; |
51 | 51 | $this->entityManager = $entityManager; |
52 | - } |
|
52 | + } |
|
53 | 53 | |
54 | 54 | |
55 | - /** |
|
56 | - * Display & process form to request a password reset. |
|
57 | - * |
|
58 | - * @Route("", name="swp_user_forgot_password_request") |
|
59 | - */ |
|
60 | - public function request(Request $request, MailerInterface $mailer): Response { |
|
55 | + /** |
|
56 | + * Display & process form to request a password reset. |
|
57 | + * |
|
58 | + * @Route("", name="swp_user_forgot_password_request") |
|
59 | + */ |
|
60 | + public function request(Request $request, MailerInterface $mailer): Response { |
|
61 | 61 | $form = $this->createForm(ResetPasswordRequestFormType::class); |
62 | 62 | $form->handleRequest($request); |
63 | 63 | |
64 | 64 | if ($form->isSubmitted() && $form->isValid()) { |
65 | - return $this->processSendingPasswordResetEmail( |
|
66 | - $form->get('email')->getData(), |
|
67 | - $mailer |
|
68 | - ); |
|
65 | + return $this->processSendingPasswordResetEmail( |
|
66 | + $form->get('email')->getData(), |
|
67 | + $mailer |
|
68 | + ); |
|
69 | 69 | } |
70 | 70 | |
71 | 71 | return $this->render('@SWPUser/reset_password/request.html.twig', [ |
72 | 72 | 'requestForm' => $form->createView(), |
73 | 73 | ]); |
74 | - } |
|
75 | - |
|
76 | - /** |
|
77 | - * Confirmation page after a user has requested a password reset. |
|
78 | - * |
|
79 | - * @Route("/check-email", name="swp_user_check_email") |
|
80 | - */ |
|
81 | - public function checkEmail(): Response { |
|
74 | + } |
|
75 | + |
|
76 | + /** |
|
77 | + * Confirmation page after a user has requested a password reset. |
|
78 | + * |
|
79 | + * @Route("/check-email", name="swp_user_check_email") |
|
80 | + */ |
|
81 | + public function checkEmail(): Response { |
|
82 | 82 | // We prevent users from directly accessing this page |
83 | 83 | if (!$this->canCheckEmail()) { |
84 | - return $this->redirectToRoute('swp_user_forgot_password_request'); |
|
84 | + return $this->redirectToRoute('swp_user_forgot_password_request'); |
|
85 | 85 | } |
86 | 86 | |
87 | 87 | return $this->render('@SWPUser/reset_password/check_email.html.twig', [ |
88 | 88 | 'tokenLifetime' => $this->resetPasswordHelper->getTokenLifetime(), |
89 | 89 | ]); |
90 | - } |
|
91 | - |
|
92 | - /** |
|
93 | - * Validates and process the reset URL that the user clicked in their email. |
|
94 | - * |
|
95 | - * @Route("/reset/{token}", name="swp_user_reset_password") |
|
96 | - */ |
|
97 | - public function reset(Request $request, UserPasswordHasherInterface $passwordEncoder, |
|
90 | + } |
|
91 | + |
|
92 | + /** |
|
93 | + * Validates and process the reset URL that the user clicked in their email. |
|
94 | + * |
|
95 | + * @Route("/reset/{token}", name="swp_user_reset_password") |
|
96 | + */ |
|
97 | + public function reset(Request $request, UserPasswordHasherInterface $passwordEncoder, |
|
98 | 98 | string $token = null): Response { |
99 | 99 | if ($token) { |
100 | - // We store the token in session and remove it from the URL, to avoid the URL being |
|
101 | - // loaded in a browser and potentially leaking the token to 3rd party JavaScript. |
|
102 | - $this->storeTokenInSession($token); |
|
100 | + // We store the token in session and remove it from the URL, to avoid the URL being |
|
101 | + // loaded in a browser and potentially leaking the token to 3rd party JavaScript. |
|
102 | + $this->storeTokenInSession($token); |
|
103 | 103 | |
104 | - return $this->redirectToRoute('swp_user_reset_password'); |
|
104 | + return $this->redirectToRoute('swp_user_reset_password'); |
|
105 | 105 | } |
106 | 106 | |
107 | 107 | $token = $this->getTokenFromSession(); |
108 | 108 | if (null === $token) { |
109 | - throw $this->createNotFoundException('No reset password token found in the URL or in the session.'); |
|
109 | + throw $this->createNotFoundException('No reset password token found in the URL or in the session.'); |
|
110 | 110 | } |
111 | 111 | |
112 | 112 | try { |
113 | - $user = $this->resetPasswordHelper->validateTokenAndFetchUser($token); |
|
113 | + $user = $this->resetPasswordHelper->validateTokenAndFetchUser($token); |
|
114 | 114 | } catch (ResetPasswordExceptionInterface $e) { |
115 | - $this->addFlash('reset_password_error', sprintf( |
|
116 | - 'There was a problem validating your reset request - %s', |
|
117 | - $e->getReason() |
|
118 | - )); |
|
115 | + $this->addFlash('reset_password_error', sprintf( |
|
116 | + 'There was a problem validating your reset request - %s', |
|
117 | + $e->getReason() |
|
118 | + )); |
|
119 | 119 | |
120 | - return $this->redirectToRoute('swp_user_forgot_password_request'); |
|
120 | + return $this->redirectToRoute('swp_user_forgot_password_request'); |
|
121 | 121 | } |
122 | 122 | |
123 | 123 | // The token is valid; allow the user to change their password. |
@@ -125,30 +125,30 @@ discard block |
||
125 | 125 | $form->handleRequest($request); |
126 | 126 | |
127 | 127 | if ($form->isSubmitted() && $form->isValid()) { |
128 | - // A password reset token should be used only once, remove it. |
|
129 | - $this->resetPasswordHelper->removeResetRequest($token); |
|
128 | + // A password reset token should be used only once, remove it. |
|
129 | + $this->resetPasswordHelper->removeResetRequest($token); |
|
130 | 130 | |
131 | - // Encode the plain password, and set it. |
|
132 | - $encodedPassword = $passwordEncoder->hashPassword( |
|
133 | - $user, |
|
134 | - $form->get('plainPassword')->getData() |
|
135 | - ); |
|
131 | + // Encode the plain password, and set it. |
|
132 | + $encodedPassword = $passwordEncoder->hashPassword( |
|
133 | + $user, |
|
134 | + $form->get('plainPassword')->getData() |
|
135 | + ); |
|
136 | 136 | |
137 | - $user->setPassword($encodedPassword); |
|
138 | - $this->entityManager->flush(); |
|
137 | + $user->setPassword($encodedPassword); |
|
138 | + $this->entityManager->flush(); |
|
139 | 139 | |
140 | - // The session is cleaned up after the password has been changed. |
|
141 | - $this->cleanSessionAfterReset(); |
|
140 | + // The session is cleaned up after the password has been changed. |
|
141 | + $this->cleanSessionAfterReset(); |
|
142 | 142 | |
143 | - return $this->redirectToRoute('homepage'); |
|
143 | + return $this->redirectToRoute('homepage'); |
|
144 | 144 | } |
145 | 145 | |
146 | 146 | return $this->render('@SWPUser/reset_password/reset.html.twig', [ |
147 | 147 | 'resetForm' => $form->createView(), |
148 | 148 | ]); |
149 | - } |
|
149 | + } |
|
150 | 150 | |
151 | - private function processSendingPasswordResetEmail(string $emailFormData, MailerInterface $mailer): RedirectResponse { |
|
151 | + private function processSendingPasswordResetEmail(string $emailFormData, MailerInterface $mailer): RedirectResponse { |
|
152 | 152 | $user = $this->entityManager->getRepository(User::class)->findOneBy([ |
153 | 153 | 'email' => $emailFormData, |
154 | 154 | ]); |
@@ -158,22 +158,22 @@ discard block |
||
158 | 158 | |
159 | 159 | // Do not reveal whether a user account was found or not. |
160 | 160 | if (!$user) { |
161 | - return $this->redirectToRoute('swp_user_check_email'); |
|
161 | + return $this->redirectToRoute('swp_user_check_email'); |
|
162 | 162 | } |
163 | 163 | |
164 | 164 | try { |
165 | - $resetToken = $this->resetPasswordHelper->generateResetToken($user); |
|
165 | + $resetToken = $this->resetPasswordHelper->generateResetToken($user); |
|
166 | 166 | } catch (ResetPasswordExceptionInterface $e) { |
167 | - $this->addFlash('reset_password_error', sprintf( |
|
168 | - 'There was a problem handling your password reset request - %s', |
|
169 | - $e->getReason() |
|
170 | - )); |
|
167 | + $this->addFlash('reset_password_error', sprintf( |
|
168 | + 'There was a problem handling your password reset request - %s', |
|
169 | + $e->getReason() |
|
170 | + )); |
|
171 | 171 | |
172 | - return $this->redirectToRoute('swp_user_check_email'); |
|
172 | + return $this->redirectToRoute('swp_user_check_email'); |
|
173 | 173 | } |
174 | 174 | |
175 | 175 | $mailer->sendResetPasswordEmail($user, $resetToken); |
176 | 176 | |
177 | 177 | return $this->redirectToRoute('swp_user_check_email'); |
178 | - } |
|
178 | + } |
|
179 | 179 | } |
@@ -24,33 +24,33 @@ discard block |
||
24 | 24 | * Class OrganizationAwareThemeUploader. |
25 | 25 | */ |
26 | 26 | final class OrganizationAwareThemeUploader implements ThemeUploaderInterface { |
27 | - /** |
|
28 | - * @var TenantContextInterface |
|
29 | - */ |
|
30 | - private $tenantContext; |
|
31 | - |
|
32 | - /** |
|
33 | - * @var string |
|
34 | - */ |
|
35 | - private $baseDir; |
|
36 | - |
|
37 | - /** |
|
38 | - * OrganizationAwareThemeUploader constructor. |
|
39 | - * |
|
40 | - * @param TenantContextInterface $tenantContext |
|
41 | - * @param string $baseDir |
|
42 | - */ |
|
43 | - public function __construct(TenantContextInterface $tenantContext, string $baseDir) { |
|
27 | + /** |
|
28 | + * @var TenantContextInterface |
|
29 | + */ |
|
30 | + private $tenantContext; |
|
31 | + |
|
32 | + /** |
|
33 | + * @var string |
|
34 | + */ |
|
35 | + private $baseDir; |
|
36 | + |
|
37 | + /** |
|
38 | + * OrganizationAwareThemeUploader constructor. |
|
39 | + * |
|
40 | + * @param TenantContextInterface $tenantContext |
|
41 | + * @param string $baseDir |
|
42 | + */ |
|
43 | + public function __construct(TenantContextInterface $tenantContext, string $baseDir) { |
|
44 | 44 | $this->tenantContext = $tenantContext; |
45 | 45 | $this->baseDir = $baseDir; |
46 | - } |
|
46 | + } |
|
47 | 47 | |
48 | - /** |
|
49 | - * {@inheritdoc} |
|
50 | - */ |
|
51 | - public function upload(UploadedFile $file) { |
|
48 | + /** |
|
49 | + * {@inheritdoc} |
|
50 | + */ |
|
51 | + public function upload(UploadedFile $file) { |
|
52 | 52 | if (null === $this->tenantContext->getTenant()) { |
53 | - throw new \Exception('Tenant was not found in context!'); |
|
53 | + throw new \Exception('Tenant was not found in context!'); |
|
54 | 54 | } |
55 | 55 | |
56 | 56 | $destinationFolder = $this->getAvailableThemesPath(); |
@@ -59,48 +59,48 @@ discard block |
||
59 | 59 | |
60 | 60 | $zip = new \ZipArchive(); |
61 | 61 | if (true === $zip->open($filePath)) { |
62 | - if (!$filesystem->exists($destinationFolder)) { |
|
62 | + if (!$filesystem->exists($destinationFolder)) { |
|
63 | 63 | $filesystem->mkdir($destinationFolder); |
64 | - } |
|
65 | - $pathInArray = explode('/', $zip->getNameIndex(0)); |
|
66 | - $themeDirInZip = array_shift($pathInArray); |
|
64 | + } |
|
65 | + $pathInArray = explode('/', $zip->getNameIndex(0)); |
|
66 | + $themeDirInZip = array_shift($pathInArray); |
|
67 | 67 | |
68 | - $themeConfiguration = $zip->getFromName($themeDirInZip . DIRECTORY_SEPARATOR . 'theme.json'); |
|
69 | - if (false === $themeConfiguration) { |
|
68 | + $themeConfiguration = $zip->getFromName($themeDirInZip . DIRECTORY_SEPARATOR . 'theme.json'); |
|
69 | + if (false === $themeConfiguration) { |
|
70 | 70 | throw new \Exception('In ZIP file we expect one directory and theme.json file inside'); |
71 | - } |
|
71 | + } |
|
72 | 72 | |
73 | - $themeConfiguration = \json_decode($themeConfiguration, true); |
|
74 | - if (\JSON_ERROR_NONE !== json_last_error()) { |
|
73 | + $themeConfiguration = \json_decode($themeConfiguration, true); |
|
74 | + if (\JSON_ERROR_NONE !== json_last_error()) { |
|
75 | 75 | throw new \Exception('Theme configuration is not valid. Syntax error in theme.json'); |
76 | - } |
|
76 | + } |
|
77 | 77 | |
78 | - $themeName = $themeConfiguration['name']; |
|
79 | - $unpackedThemePath = $destinationFolder . DIRECTORY_SEPARATOR . $themeDirInZip; |
|
78 | + $themeName = $themeConfiguration['name']; |
|
79 | + $unpackedThemePath = $destinationFolder . DIRECTORY_SEPARATOR . $themeDirInZip; |
|
80 | 80 | |
81 | - if ($filesystem->exists($unpackedThemePath)) { |
|
81 | + if ($filesystem->exists($unpackedThemePath)) { |
|
82 | 82 | $filesystem->remove($unpackedThemePath); |
83 | - } |
|
83 | + } |
|
84 | 84 | |
85 | - $zip->extractTo($destinationFolder); |
|
86 | - $zip->close(); |
|
85 | + $zip->extractTo($destinationFolder); |
|
86 | + $zip->close(); |
|
87 | 87 | |
88 | - $finalPath = $destinationFolder . DIRECTORY_SEPARATOR . str_replace('/', '__', $themeName); |
|
89 | - $filesystem->rename($unpackedThemePath, $finalPath, true); |
|
88 | + $finalPath = $destinationFolder . DIRECTORY_SEPARATOR . str_replace('/', '__', $themeName); |
|
89 | + $filesystem->rename($unpackedThemePath, $finalPath, true); |
|
90 | 90 | |
91 | - return $finalPath; |
|
91 | + return $finalPath; |
|
92 | 92 | } |
93 | 93 | |
94 | 94 | return false; |
95 | - } |
|
95 | + } |
|
96 | 96 | |
97 | - /** |
|
98 | - * @return string |
|
99 | - */ |
|
100 | - public function getAvailableThemesPath() { |
|
97 | + /** |
|
98 | + * @return string |
|
99 | + */ |
|
100 | + public function getAvailableThemesPath() { |
|
101 | 101 | $tenant = $this->tenantContext->getTenant(); |
102 | 102 | $organization = $tenant->getOrganization(); |
103 | 103 | $organizationCode = $organization->getCode(); |
104 | 104 | return sprintf($this->baseDir . DIRECTORY_SEPARATOR . ThemeUploaderInterface::AVAILABLE_THEMES_PATH, $organizationCode); |
105 | - } |
|
105 | + } |
|
106 | 106 | } |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | $pathInArray = explode('/', $zip->getNameIndex(0)); |
66 | 66 | $themeDirInZip = array_shift($pathInArray); |
67 | 67 | |
68 | - $themeConfiguration = $zip->getFromName($themeDirInZip . DIRECTORY_SEPARATOR . 'theme.json'); |
|
68 | + $themeConfiguration = $zip->getFromName($themeDirInZip.DIRECTORY_SEPARATOR.'theme.json'); |
|
69 | 69 | if (false === $themeConfiguration) { |
70 | 70 | throw new \Exception('In ZIP file we expect one directory and theme.json file inside'); |
71 | 71 | } |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | } |
77 | 77 | |
78 | 78 | $themeName = $themeConfiguration['name']; |
79 | - $unpackedThemePath = $destinationFolder . DIRECTORY_SEPARATOR . $themeDirInZip; |
|
79 | + $unpackedThemePath = $destinationFolder.DIRECTORY_SEPARATOR.$themeDirInZip; |
|
80 | 80 | |
81 | 81 | if ($filesystem->exists($unpackedThemePath)) { |
82 | 82 | $filesystem->remove($unpackedThemePath); |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | $zip->extractTo($destinationFolder); |
86 | 86 | $zip->close(); |
87 | 87 | |
88 | - $finalPath = $destinationFolder . DIRECTORY_SEPARATOR . str_replace('/', '__', $themeName); |
|
88 | + $finalPath = $destinationFolder.DIRECTORY_SEPARATOR.str_replace('/', '__', $themeName); |
|
89 | 89 | $filesystem->rename($unpackedThemePath, $finalPath, true); |
90 | 90 | |
91 | 91 | return $finalPath; |
@@ -101,6 +101,6 @@ discard block |
||
101 | 101 | $tenant = $this->tenantContext->getTenant(); |
102 | 102 | $organization = $tenant->getOrganization(); |
103 | 103 | $organizationCode = $organization->getCode(); |
104 | - return sprintf($this->baseDir . DIRECTORY_SEPARATOR . ThemeUploaderInterface::AVAILABLE_THEMES_PATH, $organizationCode); |
|
104 | + return sprintf($this->baseDir.DIRECTORY_SEPARATOR.ThemeUploaderInterface::AVAILABLE_THEMES_PATH, $organizationCode); |
|
105 | 105 | } |
106 | 106 | } |