aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ApiBundle/Controller/EntryRestController.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Wallabag/ApiBundle/Controller/EntryRestController.php')
-rw-r--r--src/Wallabag/ApiBundle/Controller/EntryRestController.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Wallabag/ApiBundle/Controller/EntryRestController.php b/src/Wallabag/ApiBundle/Controller/EntryRestController.php
index ae6f0e3f..7c3e778e 100644
--- a/src/Wallabag/ApiBundle/Controller/EntryRestController.php
+++ b/src/Wallabag/ApiBundle/Controller/EntryRestController.php
@@ -5,6 +5,7 @@ namespace Wallabag\ApiBundle\Controller;
5use Hateoas\Configuration\Route; 5use Hateoas\Configuration\Route;
6use Hateoas\Representation\Factory\PagerfantaFactory; 6use Hateoas\Representation\Factory\PagerfantaFactory;
7use Nelmio\ApiDocBundle\Annotation\ApiDoc; 7use Nelmio\ApiDocBundle\Annotation\ApiDoc;
8use Symfony\Component\Config\Definition\Exception\Exception;
8use Symfony\Component\HttpFoundation\Request; 9use Symfony\Component\HttpFoundation\Request;
9use Symfony\Component\HttpFoundation\JsonResponse; 10use Symfony\Component\HttpFoundation\JsonResponse;
10use Symfony\Component\Routing\Generator\UrlGeneratorInterface; 11use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
@@ -229,6 +230,8 @@ class EntryRestController extends WallabagRestController
229 * ) 230 * )
230 * 231 *
231 * @return JsonResponse 232 * @return JsonResponse
233 *
234 * @throws Symfony\Component\Config\Definition\Exception\Exception When limit is reached
232 */ 235 */
233 public function postEntriesListAction(Request $request) 236 public function postEntriesListAction(Request $request)
234 { 237 {
@@ -237,6 +240,12 @@ class EntryRestController extends WallabagRestController
237 $urls = json_decode($request->query->get('urls', [])); 240 $urls = json_decode($request->query->get('urls', []));
238 $results = []; 241 $results = [];
239 242
243 $limit = $this->container->getParameter('wallabag_core.api_limit_mass_actions');
244
245 if (count($urls) > $limit) {
246 throw new Exception('API limit reached');
247 }
248
240 // handle multiple urls 249 // handle multiple urls
241 if (!empty($urls)) { 250 if (!empty($urls)) {
242 foreach ($urls as $key => $url) { 251 foreach ($urls as $key => $url) {