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
ReferralsRestServiceProvider.php
191 lines
| 1 | <?php |
| 2 | |
| 3 | namespace SureCart\Rest; |
| 4 | |
| 5 | use SureCart\Controllers\Rest\ReferralsController; |
| 6 | |
| 7 | /** |
| 8 | * Service provider for the referrals REST Requests |
| 9 | */ |
| 10 | class ReferralsRestServiceProvider extends RestServiceProvider implements RestServiceInterface { |
| 11 | /** |
| 12 | * Endpoint |
| 13 | * |
| 14 | * @var string |
| 15 | */ |
| 16 | protected $endpoint = 'referrals'; |
| 17 | |
| 18 | /** |
| 19 | * Rest Controller |
| 20 | * |
| 21 | * @var string |
| 22 | */ |
| 23 | protected $controller = ReferralsController::class; |
| 24 | |
| 25 | /** |
| 26 | * Methods allowed for the model |
| 27 | * |
| 28 | * @var array |
| 29 | */ |
| 30 | protected $methods = [ 'index', 'find', 'edit', 'create', 'delete' ]; |
| 31 | |
| 32 | /** |
| 33 | * Register REST Routes |
| 34 | * |
| 35 | * @return void |
| 36 | */ |
| 37 | public function registerRoutes() { |
| 38 | register_rest_route( |
| 39 | "$this->name/v$this->version", |
| 40 | $this->endpoint . '/(?P<id>\S+)/approve/', |
| 41 | [ |
| 42 | [ |
| 43 | 'methods' => \WP_REST_Server::EDITABLE, |
| 44 | 'callback' => $this->callback( $this->controller, 'approve' ), |
| 45 | 'permission_callback' => [ $this, 'approve_permissions_check' ], |
| 46 | ], |
| 47 | // Register our schema callback. |
| 48 | 'schema' => [ $this, 'get_item_schema' ], |
| 49 | ] |
| 50 | ); |
| 51 | |
| 52 | register_rest_route( |
| 53 | "$this->name/v$this->version", |
| 54 | $this->endpoint . '/(?P<id>\S+)/deny/', |
| 55 | [ |
| 56 | [ |
| 57 | 'methods' => \WP_REST_Server::EDITABLE, |
| 58 | 'callback' => $this->callback( $this->controller, 'deny' ), |
| 59 | 'permission_callback' => [ $this, 'deny_permissions_check' ], |
| 60 | ], |
| 61 | // Register our schema callback. |
| 62 | 'schema' => [ $this, 'get_item_schema' ], |
| 63 | ] |
| 64 | ); |
| 65 | |
| 66 | register_rest_route( |
| 67 | "$this->name/v$this->version", |
| 68 | $this->endpoint . '/(?P<id>\S+)/make_reviewing/', |
| 69 | [ |
| 70 | [ |
| 71 | 'methods' => \WP_REST_Server::EDITABLE, |
| 72 | 'callback' => $this->callback( $this->controller, 'make_reviewing' ), |
| 73 | 'permission_callback' => [ $this, 'make_reviewing_permissions_check' ], |
| 74 | ], |
| 75 | // Register our schema callback. |
| 76 | 'schema' => [ $this, 'get_item_schema' ], |
| 77 | ] |
| 78 | ); |
| 79 | } |
| 80 | |
| 81 | /** |
| 82 | * Get our sample schema for a post |
| 83 | * |
| 84 | * @return array The sample schema for a post |
| 85 | */ |
| 86 | public function get_item_schema() { |
| 87 | if ( $this->schema ) { |
| 88 | // Since WordPress 5.3, the schema can be cached in the $schema property. |
| 89 | return $this->schema; |
| 90 | } |
| 91 | |
| 92 | $this->schema = [ |
| 93 | // This tells the spec of JSON Schema we are using which is draft 4. |
| 94 | '$schema' => 'http://json-schema.org/draft-04/schema#', |
| 95 | // The title property marks the identity of the resource. |
| 96 | 'title' => $this->endpoint, |
| 97 | 'type' => 'object', |
| 98 | // In JSON Schema you can specify object properties in the properties attribute. |
| 99 | 'properties' => [ |
| 100 | 'id' => [ |
| 101 | 'description' => esc_html__( 'Unique identifier for the object.', 'surecart' ), |
| 102 | 'type' => 'string', |
| 103 | 'readonly' => true, |
| 104 | ], |
| 105 | ], |
| 106 | ]; |
| 107 | |
| 108 | return $this->schema; |
| 109 | } |
| 110 | |
| 111 | /** |
| 112 | * Who can list referrals? |
| 113 | * |
| 114 | * @param \WP_REST_Request $request Full details about the request. |
| 115 | * @return true|\WP_Error True if the request has access to list items, WP_Error object otherwise. |
| 116 | */ |
| 117 | public function get_items_permissions_check( $request ) { |
| 118 | return current_user_can( 'read_sc_affiliates' ); |
| 119 | } |
| 120 | |
| 121 | /** |
| 122 | * Who can get a specific referral? |
| 123 | * |
| 124 | * @param \WP_REST_Request $request Full details about the request. |
| 125 | * @return true|\WP_Error True if the request has access to get an item, WP_Error object otherwise. |
| 126 | */ |
| 127 | public function get_item_permissions_check( $request ) { |
| 128 | return current_user_can( 'read_sc_affiliates' ); |
| 129 | } |
| 130 | |
| 131 | /** |
| 132 | * Who can create a referral? |
| 133 | * |
| 134 | * @param \WP_REST_Request $request Full details about the request. |
| 135 | * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. |
| 136 | */ |
| 137 | public function create_item_permissions_check( $request ) { |
| 138 | return current_user_can( 'publish_sc_affiliates' ); |
| 139 | } |
| 140 | |
| 141 | /** |
| 142 | * Who can update a referral? |
| 143 | * |
| 144 | * @param \WP_REST_Request $request Full details about the request. |
| 145 | * @return true|\WP_Error True if the request has access to update an item, WP_Error object otherwise. |
| 146 | */ |
| 147 | public function update_item_permissions_check( $request ) { |
| 148 | return current_user_can( 'edit_sc_affiliates' ); |
| 149 | } |
| 150 | |
| 151 | /** |
| 152 | * Who can delete a referral? |
| 153 | * |
| 154 | * @param \WP_REST_Request $request Full details about the request. |
| 155 | * @return true|\WP_Error True if the request has access to delete an item, WP_Error object otherwise. |
| 156 | */ |
| 157 | public function delete_item_permissions_check( $request ) { |
| 158 | return current_user_can( 'delete_sc_affiliates' ); |
| 159 | } |
| 160 | |
| 161 | /** |
| 162 | * Who can approve a referral? |
| 163 | * |
| 164 | * @param \WP_REST_Request $request Full details about the request. |
| 165 | * @return true|\WP_Error True if the request has access to approve an item, WP_Error object otherwise. |
| 166 | */ |
| 167 | public function approve_permissions_check( $request ) { |
| 168 | return current_user_can( 'edit_sc_affiliates' ); |
| 169 | } |
| 170 | |
| 171 | /** |
| 172 | * Who can deny a referral? |
| 173 | * |
| 174 | * @param \WP_REST_Request $request Full details about the request. |
| 175 | * @return true|\WP_Error True if the request has access to deny an item, WP_Error object otherwise. |
| 176 | */ |
| 177 | public function deny_permissions_check( $request ) { |
| 178 | return current_user_can( 'edit_sc_affiliates' ); |
| 179 | } |
| 180 | |
| 181 | /** |
| 182 | * Who can make a referral reviewing? |
| 183 | * |
| 184 | * @param \WP_REST_Request $request Full details about the request. |
| 185 | * @return true|\WP_Error True if the request has access to make a referral reviewing, WP_Error object otherwise. |
| 186 | */ |
| 187 | public function make_reviewing_permissions_check( $request ) { |
| 188 | return current_user_can( 'edit_sc_affiliates' ); |
| 189 | } |
| 190 | } |
| 191 |