18
18
namespace phpMyFAQ \Controller \Administration \Api ;
19
19
20
20
use phpMyFAQ \Category ;
21
- use phpMyFAQ \Category \Image ;
22
- use phpMyFAQ \Category \Order ;
23
21
use phpMyFAQ \Category \Permission ;
24
22
use phpMyFAQ \Category \Relation ;
25
23
use phpMyFAQ \Controller \AbstractController ;
@@ -38,35 +36,34 @@ class CategoryController extends AbstractController
38
36
{
39
37
/**
40
38
* @throws Exception
39
+ * @throws \Exception
41
40
*/
42
- #[Route('admin/api/category/delete ' )]
41
+ #[Route('admin/api/category/delete ' , name: ' admin.api.category.delete ' , methods: [ ' DELETE ' ] )]
43
42
public function delete (Request $ request ): JsonResponse
44
43
{
45
44
$ this ->userHasPermission (PermissionType::CATEGORY_DELETE );
46
45
47
- $ currentUser = CurrentUser::getCurrentUser ($ this ->configuration );
48
-
49
46
$ data = json_decode ($ request ->getContent ());
50
47
51
48
if (!Token::getInstance ($ this ->container ->get ('session ' ))->verifyToken ('category ' , $ data ->csrfToken )) {
52
49
return $ this ->json (['error ' => Translation::get ('msgNoPermission ' )], Response::HTTP_UNAUTHORIZED );
53
50
}
54
51
55
- [ $ currentAdminUser , $ currentAdminGroups ] = CurrentUser::getCurrentUserGroupId ($ currentUser );
52
+ [ $ currentAdminUser , $ currentAdminGroups ] = CurrentUser::getCurrentUserGroupId ($ this -> currentUser );
56
53
57
54
$ category = new Category ($ this ->configuration , [], false );
58
55
$ category ->setUser ($ currentAdminUser );
59
56
$ category ->setGroups ($ currentAdminGroups );
60
57
61
58
$ categoryRelation = new Relation ($ this ->configuration , $ category );
62
59
63
- $ categoryImage = new Image ( $ this ->configuration );
60
+ $ categoryImage = $ this ->container -> get ( ' phpmyfaq.category.image ' );
64
61
$ categoryImage ->setFileName ($ category ->getCategoryData ($ data ->categoryId )->getImage ());
65
62
66
- $ categoryOrder = new Order ( $ this ->configuration );
63
+ $ categoryOrder = $ this ->container -> get ( ' phpmyfaq.category.order ' );
67
64
$ categoryOrder ->remove ($ data ->categoryId );
68
65
69
- $ categoryPermission = new Permission ( $ this ->configuration );
66
+ $ categoryPermission = $ this ->container -> get ( ' phpmyfaq.category.permission ' );
70
67
71
68
if (
72
69
(
@@ -92,15 +89,12 @@ public function delete(Request $request): JsonResponse
92
89
}
93
90
}
94
91
95
- /**
96
- * @throws Exception
97
- */
98
- #[Route('admin/api/category/permissions ' , methods: ['GET ' ])]
92
+ #[Route('admin/api/category/permissions ' , name: 'admin.api.category.permissions ' , methods: ['GET ' ])]
99
93
public function permissions (Request $ request ): JsonResponse
100
94
{
101
95
$ this ->userIsAuthenticated ();
102
96
103
- $ categoryPermission = new Permission ( $ this ->configuration );
97
+ $ categoryPermission = $ this ->container -> get ( ' phpmyfaq.category.permission ' );
104
98
105
99
$ categoryData = $ request ->get ('categories ' );
106
100
@@ -123,10 +117,7 @@ public function permissions(Request $request): JsonResponse
123
117
);
124
118
}
125
119
126
- /**
127
- * @throws Exception
128
- */
129
- #[Route('admin/api/category/translations ' )]
120
+ #[Route('admin/api/category/translations ' , name: 'admin.api.category.translations ' , methods: ['GET ' ])]
130
121
public function translations (Request $ request ): JsonResponse
131
122
{
132
123
$ this ->userIsAuthenticated ();
@@ -141,9 +132,9 @@ public function translations(Request $request): JsonResponse
141
132
}
142
133
143
134
/**
144
- * @throws Exception
135
+ * @throws \ Exception
145
136
*/
146
- #[Route('admin/api/category/update-order ' )]
137
+ #[Route('admin/api/category/update-order ' , name: ' admin.api.category.update-order ' , methods: [ ' POST ' ] )]
147
138
public function updateOrder (Request $ request ): JsonResponse
148
139
{
149
140
$ this ->userHasPermission (PermissionType::CATEGORY_EDIT );
@@ -154,11 +145,9 @@ public function updateOrder(Request $request): JsonResponse
154
145
return $ this ->json (['error ' => Translation::get ('msgNoPermission ' )], Response::HTTP_UNAUTHORIZED );
155
146
}
156
147
157
- $ user = CurrentUser::getCurrentUser ($ this ->configuration );
158
-
159
- [ $ currentAdminUser , $ currentAdminGroups ] = CurrentUser::getCurrentUserGroupId ($ user );
148
+ [ $ currentAdminUser , $ currentAdminGroups ] = CurrentUser::getCurrentUserGroupId ($ this ->currentUser );
160
149
161
- $ categoryOrder = new Order ( $ this ->configuration );
150
+ $ categoryOrder = $ this ->container -> get ( ' phpmyfaq.category.order ' );
162
151
$ categoryOrder ->setCategoryTree ($ data ->categoryTree );
163
152
164
153
$ parentId = $ categoryOrder ->getParentId ($ data ->categoryTree , (int )$ data ->categoryId );
0 commit comments