Server IP : 192.158.238.246 / Your IP : 3.22.242.110 Web Server : LiteSpeed System : Linux uniform.iwebfusion.net 4.18.0-553.27.1.lve.1.el8.x86_64 #1 SMP Wed Nov 20 15:58:00 UTC 2024 x86_64 User : jenniferflocom ( 1321) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/7779/task/7779/cwd/plugins/give/src/DonationForms/V2/Endpoints/ |
Upload File : |
<?php namespace Give\DonationForms\V2\Endpoints; use WP_Error; use WP_REST_Request; use WP_REST_Response; /** * @since 3.14.0 updated to validate form id is a donation form post type * @since 2.19.0 */ class FormActions extends Endpoint { /** * @var string */ protected $endpoint = 'admin/forms/(?P<action>[\S]+)'; /** * @inheritDoc */ public function registerRoute() { register_rest_route( 'give-api/v2', $this->endpoint, [ [ 'methods' => ['POST', 'UPDATE', 'DELETE'], 'callback' => [$this, 'handleRequest'], 'permission_callback' => [$this, 'permissionsCheck'], ], 'args' => [ 'action' => [ 'type' => 'string', 'required' => true, 'enum' => [ 'trash', 'restore', 'delete', 'duplicate', 'edit', ], ], 'ids' => [ 'type' => 'string', 'required' => true, 'validate_callback' => function ($ids) { foreach ($this->splitString($ids) as $id) { if ( ! $this->validateInt($id) || !$this->validatePostType($id)) { return false; } } return true; }, ], 'author' => [ 'type' => 'string', 'required' => 'false', ], 'status' => [ 'type' => 'string', 'required' => 'false', ], ], ] ); } /** * @since 2.25.2 * * @inheritDoc */ public function permissionsCheck() { if ( ! current_user_can('edit_give_forms')) { return new WP_Error( 'rest_forbidden', esc_html__('You don\'t have permission to edit Donation Forms', 'give'), ['status' => $this->authorizationStatusCode()] ); } return true; } /** * @since 2.19.0 * * @param WP_REST_Request $request * * @return WP_REST_Response */ public function handleRequest(WP_REST_Request $request) { $ids = $this->splitString($request->get_param('ids')); $errors = []; $successes = []; $form = false; switch ($request->get_param('action')) { case 'trash': foreach ($ids as $id) { $form = wp_trash_post($id); !empty($form) ? $successes[] = $id : $errors[] = $id; } break; case 'restore': foreach ($ids as $id) { $form = wp_untrash_post($id); !empty($form) ? $successes[] = $id : $errors[] = $id; } break; case 'delete': foreach ($ids as $id) { $form = wp_delete_post($id); give()->form_meta->delete_all_meta($id); !empty($form) ? $successes[] = $form : $errors[] = $form; } break; case 'duplicate': require_once(GIVE_PLUGIN_DIR . '/includes/admin/forms/class-give-form-duplicator.php'); foreach ($ids as $id) { $form = \Give_Form_Duplicator::handler($id); $form ? $successes[] = $form : $errors[] = $form; } break; case 'edit': $author = $request->get_param('author'); $status = $request->get_param('status'); $update_args = []; $author ? $update_args['post_author'] = $author : null; $status ? $update_args['post_status'] = $status : null; foreach ($ids as $id) { $form = wp_update_post(array_merge($update_args, ['ID' => $id])); !empty($form) ? $successes[] = $id : $errors[] = $id; } break; } return new WP_REST_Response(array('errors' => $errors, 'successes' => $successes)); } /** * Split string * * @param string $ids * * @return string[] */ protected function splitString($ids) { if (strpos($ids, ',')) { return array_map('trim', explode(',', $ids)); } return [trim($ids)]; } }