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
2 years ago
BalanceTransactionRestServiceProvider.php
3 years ago
BlockPatternsRestServiceProvider.php
3 years ago
BrandRestServiceProvider.php
1 year 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
CustomerRestServiceProvider.php
1 year ago
DownloadRestServiceProvider.php
3 years ago
DraftCheckoutRestServiceProvider.php
1 year ago
ExportsRestServiceProvider.php
2 years ago
FulfillmentRestServiceProvider.php
3 years ago
IncomingWebhooksRestServiceProvider.php
2 years ago
IntegrationProvidersRestServiceProvider.php
3 years ago
IntegrationsRestServiceProvider.php
3 years ago
InvoicesRestServiceProvider.php
1 year ago
LicenseRestServiceProvider.php
2 years ago
LineItemsRestServiceProvider.php
1 year ago
LoginRestServiceProvider.php
3 years ago
ManualPaymentMethodsRestServiceProvider.php
3 years ago
MediaRestServiceProvider.php
1 year ago
OrderProtocolRestServiceProvider.php
1 year ago
OrderRestServiceProvider.php
3 years ago
PaymentIntentsRestServiceProvider.php
3 years ago
PaymentMethodsRestServiceProvider.php
2 years ago
PayoutGroupsRestServiceProvider.php
2 years ago
PayoutsRestServiceProvider.php
2 years ago
PeriodRestServiceProvider.php
3 years ago
PortalProtocolRestServiceProvider.php
3 years ago
PriceRestServiceProvider.php
3 years ago
ProcessorRestServiceProvider.php
3 years ago
ProductCollectionsRestServiceProvider.php
2 years ago
ProductGroupsRestServiceProvider.php
3 years ago
ProductMediaRestServiceProvider.php
1 year ago
ProductsRestServiceProvider.php
1 year 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
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
1 year ago
SubscriptionRestServiceProvider.php
2 years 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
133 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 | |
| 63 | /** |
| 64 | * Get permissions. |
| 65 | * |
| 66 | * @param \WP_REST_Request $request Full details about the request. |
| 67 | * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. |
| 68 | */ |
| 69 | public function get_item_permissions_check( $request ) { |
| 70 | return current_user_can( 'read_sc_invoice', $request['id'], $request->get_params() ); |
| 71 | } |
| 72 | |
| 73 | /** |
| 74 | * List permissions. |
| 75 | * |
| 76 | * @param \WP_REST_Request $request Full details about the request. |
| 77 | * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. |
| 78 | */ |
| 79 | public function get_items_permissions_check( $request ) { |
| 80 | return current_user_can( 'read_sc_invoices', $request->get_params() ); |
| 81 | } |
| 82 | |
| 83 | /** |
| 84 | * Create permissions. |
| 85 | * |
| 86 | * @param \WP_REST_Request $request Full details about the request. |
| 87 | * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. |
| 88 | */ |
| 89 | public function create_item_permissions_check( $request ) { |
| 90 | return current_user_can( 'publish_sc_invoices' ); |
| 91 | } |
| 92 | |
| 93 | /** |
| 94 | * Update permissions. |
| 95 | * |
| 96 | * @param \WP_REST_Request $request Full details about the request. |
| 97 | * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. |
| 98 | */ |
| 99 | public function update_item_permissions_check( $request ) { |
| 100 | return current_user_can( 'edit_sc_invoices' ); |
| 101 | } |
| 102 | |
| 103 | /** |
| 104 | * Delete permissions. |
| 105 | * |
| 106 | * @param \WP_REST_Request $request Full details about the request. |
| 107 | * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. |
| 108 | */ |
| 109 | public function delete_item_permissions_check( $request ) { |
| 110 | return current_user_can( 'delete_sc_invoices' ); |
| 111 | } |
| 112 | |
| 113 | /** |
| 114 | * Draft permissions. |
| 115 | * |
| 116 | * @param \WP_REST_Request $request Full details about the request. |
| 117 | * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. |
| 118 | */ |
| 119 | public function draft_permissions_check( $request ) { |
| 120 | return current_user_can( 'edit_sc_invoices', $request['id'], $request->get_params() ); |
| 121 | } |
| 122 | |
| 123 | /** |
| 124 | * Open permissions. |
| 125 | * |
| 126 | * @param \WP_REST_Request $request Full details about the request. |
| 127 | * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. |
| 128 | */ |
| 129 | public function open_permissions_check( $request ) { |
| 130 | return current_user_can( 'edit_sc_invoices', $request['id'], $request->get_params() ); |
| 131 | } |
| 132 | } |
| 133 |