PluginProbe
The Innovative Form Builder – IvyForms / 0.8
The Innovative Form Builder – IvyForms v0.8
1.4.1 1.4 trunk 0.1.2 0.2 0.2.1 0.3 0.3.1 0.4 0.5 0.6 0.6.1 0.6.1-backup 0.6.1.1 0.7 0.8 0.8.1 0.8.2 0.9 0.9.1 1.0 1.1 1.1.1 1.2 1.3
ivyforms / backend / src / Controllers / Notification / DeleteNotificationsController.php

DeleteNotificationsController.php in The Innovative Form Builder – IvyForms 0.8, at backend/src/Controllers/Notification/DeleteNotificationsController.php

60 lines 1.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace IvyForms\Controllers\Notification;
4
5 // phpcs:disable PSR1.Files.SideEffects
6 if (!defined('ABSPATH')) {
7 exit; // Exit if accessed directly
8 }
9
10 use IvyForms\Common\Exceptions\ForbiddenException;
11 use IvyForms\Common\Exceptions\InvalidArgumentException;
12 use IvyForms\Controllers\Controller;
13 use IvyForms\Common\Sanitizer\Sanitizer;
14 use IvyForms\Services\Notification\NotificationService;
15 use IvyForms\Services\Translations\BackendStrings;
16 use WP_REST_Request;
17 use WP_REST_Response;
18
19 /**
20 * Class DeleteNotificationsController
21 *
22 * @package IvyForms\Controllers\Notification
23 */
24 class DeleteNotificationsController extends Controller
25 {
26 private NotificationService $notificationService;
27
28 public function __construct(NotificationService $notificationService)
29 {
30 $this->notificationService = $notificationService;
31 }
32
33 /**
34 * @param WP_REST_Request $data
35 *
36 * @return WP_REST_Response
37 *
38 * @throws InvalidArgumentException
39 * @throws ForbiddenException
40 */
41 public function handle(WP_REST_Request $data): WP_REST_Response
42 {
43 Sanitizer::verifyNonce($data->get_header('X-WP-Nonce'));
44 $notificationIds = Sanitizer::sanitizeIds($data->get_param('ids'));
45
46 if (empty($notificationIds)) {
47 throw new InvalidArgumentException(
48 BackendStrings::getExceptionStrings()['notification_ids_required']
49 );
50 }
51
52 $this->notificationService->deleteNotifications($notificationIds);
53
54 return new WP_REST_Response([
55 'message' => BackendStrings::getCommonStrings()['ok'],
56 'data' => []
57 ], 200);
58 }
59 }
60