FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
surecart
/
app
/
src
/
Rest
Edit File: SubscriptionProtocolRestServiceProvider.php
<?php namespace SureCart\Rest; use SureCart\Controllers\Rest\SubscriptionProtocolController; use SureCart\Models\User; use SureCart\Rest\RestServiceInterface; /** * Service provider for Price Rest Requests */ class SubscriptionProtocolRestServiceProvider extends RestServiceProvider implements RestServiceInterface { /** * Endpoint. * * @var string */ protected $endpoint = 'subscription_protocol'; /** * Rest Controller * * @var string */ protected $controller = SubscriptionProtocolController::class; /** * Methods allowed for the model. * * @var array */ protected $methods = []; /** * Register REST Routes * * @return void */ public function registerRoutes() { register_rest_route( "$this->name/v$this->version", "$this->endpoint", array_filter( [ [ 'methods' => \WP_REST_Server::READABLE, 'callback' => $this->callback( $this->controller, 'find' ), 'permission_callback' => [ $this, 'get_item_permissions_check' ], 'args' => $this->get_collection_params(), ], [ 'methods' => \WP_REST_Server::EDITABLE, 'callback' => $this->callback( $this->controller, 'edit' ), 'permission_callback' => [ $this, 'update_item_permissions_check' ], ], 'schema' => [ $this, 'get_item_schema' ], ] ) ); } /** * Get our sample schema for a post. * * @return array The sample schema for a post */ public function get_item_schema() { if ( $this->schema ) { // Since WordPress 5.3, the schema can be cached in the $schema property. return $this->schema; } $this->schema = [ // This tells the spec of JSON Schema we are using which is draft 4. '$schema' => 'http://json-schema.org/draft-04/schema#', // The title property marks the identity of the resource. 'title' => $this->endpoint, 'type' => 'object', // In JSON Schema you can specify object properties in the properties attribute. 'properties' => [ 'id' => [ 'description' => esc_html__( 'Unique identifier for the object.', 'surecart' ), 'type' => 'string', 'context' => [ 'view', 'edit', 'embed' ], 'readonly' => true, ], 'created_at' => [ 'type' => 'integer', 'context' => [ 'view', 'edit', 'embed' ], ], 'updated_at' => [ 'type' => 'integer', 'context' => [ 'view', 'edit', 'embed' ], ], 'payment_retry_window_weeks' => [ 'description' => esc_html__( 'Payment retry window in weeks.', 'surecart' ), 'type' => 'integer', 'context' => [ 'view', 'edit', 'embed' ], ], 'cancel_behavior' => [ 'description' => esc_html__( 'Cancel behavior. Either pending or immediate.', 'surecart' ), 'type' => 'string', 'context' => [ 'view', 'edit', 'embed' ], ], 'downgrade_behavior' => [ 'description' => esc_html__( 'Downgrade behavior. Either pending or immediate.', 'surecart' ), 'type' => 'string', 'context' => [ 'view', 'edit', 'embed' ], ], 'upgrade_behavior' => [ 'description' => esc_html__( 'Upgrade behavior. Either pending or immediate.', 'surecart' ), 'type' => 'string', 'context' => [ 'view', 'edit', 'embed' ], ], 'remind_after_days' => [ 'description' => esc_html__( 'Minimum days between reminders.', 'surecart' ), 'type' => 'integer', 'context' => [ 'view', 'edit', 'embed' ], ], 'remind_at_period_percent_remaining' => [ 'description' => esc_html__( 'Percentage of period remaining when reminder should be sent.', 'surecart' ), 'type' => 'integer', 'context' => [ 'view', 'edit', 'embed' ], ], 'reschedule_existing_reminders' => [ 'description' => esc_html__( 'Whether or not existing subscription reminders should be recalculated. Only applicable when remind_at_period_percent_remaining or remind_after_days are changed.', 'surecart' ), 'type' => 'boolean', 'context' => [ 'edit' ], ], ], ]; return $this->schema; } /** * Anyone can get the protocols. * * @param \WP_REST_Request $request Full details about the request. * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. */ public function get_item_permissions_check( $request ) { if ( current_user_can( 'read_sc_subscriptions', $request->get_params() ) ) { return true; } // user must be a customer to get the protocols. return is_user_logged_in() && User::current()->isCustomer(); } /** * Need priveleges to update. * * @param \WP_REST_Request $request Full details about the request. * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. */ public function update_item_permissions_check( $request ) { return current_user_can( 'edit_sc_subscriptions' ); } }
Save
Back