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 / Confirmation / AddConfirmationController.php

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

77 lines 2.2 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\Confirmation;
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\Common\Exceptions\QueryExecutionException;
13 use IvyForms\Common\Sanitizer\Sanitizer;
14 use IvyForms\Controllers\Controller;
15 use IvyForms\Factory\Confirmation\ConfirmationFactory;
16 use IvyForms\Services\Confirmation\ConfirmationService;
17 use IvyForms\Services\Translations\BackendStrings;
18 use WP_REST_Request;
19 use WP_REST_Response;
20
21 /**
22 * Class AddConfirmationController
23 *
24 * @package IvyForms\Controllers\Confirmation
25 */
26 class AddConfirmationController extends Controller
27 {
28 private ConfirmationService $confirmationService;
29
30 public function __construct(ConfirmationService $confirmationService)
31 {
32 $this->confirmationService = $confirmationService;
33 }
34
35 /**
36 * @param WP_REST_Request $data
37 *
38 * @return WP_REST_Response
39 *
40 * @throws QueryExecutionException
41 * @throws InvalidArgumentException
42 * @throws ForbiddenException
43 */
44 public function handle(WP_REST_Request $data): WP_REST_Response
45 {
46 // Verify the nonce
47 Sanitizer::verifyNonce($data->get_header('X-WP-Nonce'));
48
49 // Validate request data
50 if (empty($data->get_params())) {
51 throw new InvalidArgumentException(
52 BackendStrings::getExceptionStrings()['invalid_request_data']
53 );
54 }
55
56 // Sanitize the input data
57 $params = Sanitizer::sanitizeConfirmationData($data->get_params());
58
59 $confirmation = ConfirmationFactory::create($params);
60
61 $confirmationId = $this->confirmationService->createConfirmation($confirmation);
62
63 if (!$confirmationId) {
64 throw new QueryExecutionException(
65 BackendStrings::getSettingsFormBuilderStrings()['failed_to_create_confirmation']
66 );
67 }
68
69 $confirmation->setId($confirmationId);
70
71 return new WP_REST_Response([
72 'message' => BackendStrings::getCommonStrings()['ok'],
73 'data' => $confirmation->toArray()
74 ], 200);
75 }
76 }
77