InvoicesRestServiceProvider.php
| 1 | <?php |
| 2 | |
| 3 | namespace SureCart\Rest; |
| 4 | |
| 5 | use SureCart\Controllers\Rest\InvoicesController; |
| 6 | use SureCart\Rest\RestServiceInterface; |
| 7 | |
| 8 | /** |
| 9 | * Service provider for Invoice Rest Requests |
| 10 | */ |
| 11 | class InvoicesRestServiceProvider extends RestServiceProvider implements RestServiceInterface { |
| 12 | /** |
| 13 | * Endpoint. |
| 14 | * |
| 15 | * @var string |
| 16 | */ |
| 17 | protected $endpoint = 'invoices'; |
| 18 | |
| 19 | /** |
| 20 | * Rest Controller |
| 21 | * |
| 22 | * @var string |
| 23 | */ |
| 24 | protected $controller = InvoicesController::class; |
| 25 | |
| 26 | /** |
| 27 | * Register REST Routes |
| 28 | * |
| 29 | * @return void |
| 30 | */ |
| 31 | public function registerRoutes() { |
| 32 | parent::registerRoutes(); |
| 33 | |
| 34 | register_rest_route( |
| 35 | "$this->name/v$this->version", |
| 36 | $this->endpoint . '/(?P<id>\S+)/make_draft/', |
| 37 | [ |
| 38 | [ |
| 39 | 'methods' => \WP_REST_Server::EDITABLE, |
| 40 | 'callback' => $this->callback( $this->controller, 'makeDraft' ), |
| 41 | 'permission_callback' => [ $this, 'draft_permissions_check' ], |
| 42 | ], |
| 43 | // Register our schema callback. |
| 44 | 'schema' => [ $this, 'get_item_schema' ], |
| 45 | ] |
| 46 | ); |
| 47 | |
| 48 | register_rest_route( |
| 49 | "$this->name/v$this->version", |
| 50 | $this->endpoint . '/(?P<id>\S+)/open/', |
| 51 | [ |
| 52 | [ |
| 53 | 'methods' => \WP_REST_Server::EDITABLE, |
| 54 | 'callback' => $this->callback( $this->controller, 'open' ), |
| 55 | 'permission_callback' => [ $this, 'open_permissions_check' ], |
| 56 | ], |
| 57 | // Register our schema callback. |
| 58 | 'schema' => [ $this, 'get_item_schema' ], |
| 59 | ] |
| 60 | ); |
| 61 | |
| 62 | register_rest_route( |
| 63 | "$this->name/v$this->version", |
| 64 | $this->endpoint . '/(?P<id>\S+)/resend_notification/', |
| 65 | array( |
| 66 | array( |
| 67 | 'methods' => \WP_REST_Server::EDITABLE, |
| 68 | 'callback' => $this->callback( $this->controller, 'resend_notification' ), |
| 69 | 'permission_callback' => array( $this, 'resend_notification_permissions_check' ), |
| 70 | ), |
| 71 | // Register our schema callback. |
| 72 | 'schema' => array( $this, 'get_item_schema' ), |
| 73 | ) |
| 74 | ); |
| 75 | } |
| 76 | |
| 77 | /** |
| 78 | * Get permissions. |
| 79 | * |
| 80 | * @param \WP_REST_Request $request Full details about the request. |
| 81 | * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. |
| 82 | */ |
| 83 | public function get_item_permissions_check( $request ) { |
| 84 | return current_user_can( 'read_sc_invoice', $request['id'], $request->get_params() ); |
| 85 | } |
| 86 | |
| 87 | /** |
| 88 | * List permissions. |
| 89 | * |
| 90 | * @param \WP_REST_Request $request Full details about the request. |
| 91 | * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. |
| 92 | */ |
| 93 | public function get_items_permissions_check( $request ) { |
| 94 | return current_user_can( 'read_sc_invoices', $request->get_params() ); |
| 95 | } |
| 96 | |
| 97 | /** |
| 98 | * Create permissions. |
| 99 | * |
| 100 | * @param \WP_REST_Request $request Full details about the request. |
| 101 | * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. |
| 102 | */ |
| 103 | public function create_item_permissions_check( $request ) { |
| 104 | return current_user_can( 'publish_sc_invoices' ); |
| 105 | } |
| 106 | |
| 107 | /** |
| 108 | * Update permissions. |
| 109 | * |
| 110 | * @param \WP_REST_Request $request Full details about the request. |
| 111 | * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. |
| 112 | */ |
| 113 | public function update_item_permissions_check( $request ) { |
| 114 | return current_user_can( 'edit_sc_invoices' ); |
| 115 | } |
| 116 | |
| 117 | /** |
| 118 | * Delete permissions. |
| 119 | * |
| 120 | * @param \WP_REST_Request $request Full details about the request. |
| 121 | * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. |
| 122 | */ |
| 123 | public function delete_item_permissions_check( $request ) { |
| 124 | return current_user_can( 'delete_sc_invoices' ); |
| 125 | } |
| 126 | |
| 127 | /** |
| 128 | * Draft permissions. |
| 129 | * |
| 130 | * @param \WP_REST_Request $request Full details about the request. |
| 131 | * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. |
| 132 | */ |
| 133 | public function draft_permissions_check( $request ) { |
| 134 | return current_user_can( 'edit_sc_invoices', $request['id'], $request->get_params() ); |
| 135 | } |
| 136 | |
| 137 | /** |
| 138 | * Open permissions. |
| 139 | * |
| 140 | * @param \WP_REST_Request $request Full details about the request. |
| 141 | * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. |
| 142 | */ |
| 143 | public function open_permissions_check( $request ) { |
| 144 | return current_user_can( 'edit_sc_invoices', $request['id'], $request->get_params() ); |
| 145 | } |
| 146 | |
| 147 | /** |
| 148 | * Resend notification permissions. |
| 149 | * |
| 150 | * @param \WP_REST_Request $request Full details about the request. |
| 151 | * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. |
| 152 | */ |
| 153 | public function resend_notification_permissions_check( $request ) { |
| 154 | return current_user_can( 'edit_sc_invoices', $request['id'], $request->get_params() ); |
| 155 | } |
| 156 | } |
| 157 |