AbandonedCheckoutProtocolRestServiceProvider.php
3 years ago
AbandonedCheckoutRestServiceProvider.php
2 years ago
AccountRestServiceProvider.php
3 years ago
ActivationRestServiceProvider.php
1 year ago
AffiliationProductsRestServiceProvider.php
2 years ago
AffiliationProtocolRestServiceProvider.php
2 years ago
AffiliationRequestsRestServiceProvider.php
2 years ago
AffiliationsRestServiceProvider.php
11 months ago
AutoFeeProtocolRestServiceProvider.php
5 months ago
AutoFeeRestServiceProvider.php
5 months ago
BalanceTransactionRestServiceProvider.php
3 years ago
BatchesRestServiceProvider.php
4 days ago
BlockPatternsRestServiceProvider.php
3 years ago
BrandRestServiceProvider.php
4 months ago
BumpRestServiceProvider.php
1 year ago
CancellationActRestServiceProvider.php
1 year ago
CancellationReasonRestServiceProvider.php
1 year ago
ChargesRestServiceProvider.php
3 years ago
CheckEmailRestServiceProvider.php
3 years ago
CheckoutRestServiceProvider.php
1 year ago
ClicksRestServiceProvider.php
2 years ago
CouponRestServiceProvider.php
3 years ago
CustomerNotificationProtocolRestServiceProvider.php
3 years ago
CustomerPortalProtocolRestServiceProvider.php
1 year ago
CustomerRestServiceProvider.php
1 month ago
DisplayCurrencyRestServiceProvider.php
1 year ago
DisputesRestServiceProvider.php
9 months ago
DownloadRestServiceProvider.php
2 months ago
DraftCheckoutRestServiceProvider.php
1 year ago
ExportsRestServiceProvider.php
2 years ago
FulfillmentRestServiceProvider.php
3 years ago
ImportRowsRestServiceProvider.php
2 months ago
IncomingWebhooksRestServiceProvider.php
2 years ago
IntegrationProvidersRestServiceProvider.php
3 years ago
IntegrationsCatalogRestServiceProvider.php
1 year ago
IntegrationsRestServiceProvider.php
3 years ago
InvoicesRestServiceProvider.php
1 year ago
LicenseRestServiceProvider.php
1 year ago
LineItemsRestServiceProvider.php
1 year ago
LoginRestServiceProvider.php
1 month ago
ManualPaymentMethodsRestServiceProvider.php
3 years ago
MediaRestServiceProvider.php
1 year ago
OrderProtocolRestServiceProvider.php
1 year ago
OrderRestServiceProvider.php
1 year ago
ParcelTemplateRestServiceProvider.php
3 months ago
PaymentIntentsRestServiceProvider.php
3 years ago
PaymentMethodsRestServiceProvider.php
2 years ago
PayoutGroupsRestServiceProvider.php
2 years ago
PayoutsRestServiceProvider.php
4 months ago
PeriodRestServiceProvider.php
3 years ago
PluginInstallerRestServiceProvider.php
4 days ago
PriceRestServiceProvider.php
1 year ago
ProcessorRestServiceProvider.php
3 years ago
ProductCollectionsRestServiceProvider.php
4 days ago
ProductGroupsRestServiceProvider.php
3 years ago
ProductMediaRestServiceProvider.php
1 year ago
ProductsRestServiceProvider.php
4 days ago
PromotionRestServiceProvider.php
3 years ago
ProvisionalAccountRestServiceProvider.php
3 years ago
PurchasesRestServiceProvider.php
3 years ago
ReferralItemsRestServiceProvider.php
2 years ago
ReferralsRestServiceProvider.php
2 years ago
RefundsRestServiceProvider.php
3 years ago
RegisteredWebhookRestServiceProvider.php
2 years ago
RestServiceInterface.php
3 years ago
RestServiceProvider.php
1 year ago
ReturnItemsRestServiceProvider.php
2 years ago
ReturnReasonsRestServiceProvider.php
2 years ago
ReturnRequestsRestServiceProvider.php
2 years ago
ReviewProtocolRestServiceProvider.php
4 months ago
ReviewsRestServiceProvider.php
4 days ago
RuleSchemaRestServiceProvider.php
5 months ago
SettingsRestServiceProvider.php
1 year ago
ShippingMethodRestServiceProvider.php
3 years ago
ShippingProfileRestServiceProvider.php
3 years ago
ShippingProtocolRestServiceProvider.php
1 year ago
ShippingRateRestServiceProvider.php
3 years ago
ShippingZoneRestServiceProvider.php
3 years ago
SiteHealthRestServiceProvider.php
2 years ago
StatisticRestServiceProvider.php
3 years ago
SubscriptionProtocolRestServiceProvider.php
5 months ago
SubscriptionRestServiceProvider.php
2 years ago
SwapRestServiceProvider.php
1 year ago
TaxOverrideRestServiceProvider.php
1 year ago
TaxProtocolRestServiceProvider.php
1 year ago
TaxRegistrationRestServiceProvider.php
1 year ago
TaxZoneRestServiceProvider.php
1 year ago
UploadsRestServiceProvider.php
3 years ago
UpsellFunnelRestServiceProvider.php
1 year ago
UpsellRestServiceProvider.php
1 year ago
VariantOptionsRestServiceProvider.php
2 years ago
VariantValuesRestServiceProvider.php
2 years ago
VariantsRestServiceProvider.php
2 years ago
VerificationCodeRestServiceProvider.php
3 years ago
WebhooksRestServiceProvider.php
3 years ago
InvoicesRestServiceProvider.php
157 lines
| 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 |