AbstractAbility.php
2 weeks ago
ArchiveProduct.php
4 months ago
CancelSubscription.php
4 months ago
CreateCoupon.php
4 months ago
CreateCustomer.php
4 months ago
CreateFulfillment.php
4 months ago
CreateInvoice.php
2 months ago
CreatePrice.php
2 months ago
CreateProduct.php
4 months ago
CreatePromotion.php
4 months ago
CreateRefund.php
2 months ago
DeleteCoupon.php
4 months ago
DeleteCustomer.php
4 months ago
DeleteFulfillment.php
4 months ago
DeletePromotion.php
4 months ago
DuplicateProduct.php
4 months ago
FilterCustomers.php
2 months ago
FilterOrders.php
2 months ago
FilterSubscriptions.php
2 months ago
GetAbandonedCheckout.php
3 months ago
GetCoupon.php
4 months ago
GetCustomer.php
4 months ago
GetCustomersFilterSchema.php
2 months ago
GetFulfillment.php
4 months ago
GetFulfillmentItem.php
4 months ago
GetLicense.php
4 months ago
GetOrder.php
4 months ago
GetOrderStatistics.php
4 months ago
GetOrdersFilterSchema.php
2 months ago
GetProduct.php
4 months ago
GetPromotion.php
4 months ago
GetRefund.php
4 months ago
GetStoreDashboard.php
4 months ago
GetStoreInfo.php
4 months ago
GetSubscription.php
4 months ago
GetSubscriptionsFilterSchema.php
2 months ago
ListAbandonedCheckouts.php
3 months ago
ListCoupons.php
4 months ago
ListCustomers.php
4 months ago
ListFulfillments.php
4 months ago
ListLicenses.php
4 months ago
ListOrders.php
4 months ago
ListPrices.php
4 months ago
ListProducts.php
4 months ago
ListPromotions.php
4 months ago
ListRefunds.php
4 months ago
ListSubscriptions.php
4 months ago
UpdateCoupon.php
4 months ago
UpdateCustomer.php
4 months ago
UpdateFulfillment.php
4 months ago
UpdateInvoice.php
4 months ago
UpdatePrice.php
4 months ago
UpdateProduct.php
4 months ago
UpdatePromotion.php
4 months ago
UpdateSubscriptionRenewalDate.php
4 months ago
GetSubscription.php
108 lines
| 1 | <?php |
| 2 | |
| 3 | namespace SureCart\Abilities\Abilities; |
| 4 | |
| 5 | use SureCart\Models\Subscription; |
| 6 | |
| 7 | /** |
| 8 | * Get a single subscription with details. |
| 9 | */ |
| 10 | class GetSubscription extends AbstractAbility { |
| 11 | |
| 12 | /** |
| 13 | * {@inheritDoc} |
| 14 | */ |
| 15 | public function get_name(): string { |
| 16 | return 'surecart/get-subscription'; |
| 17 | } |
| 18 | |
| 19 | /** |
| 20 | * {@inheritDoc} |
| 21 | */ |
| 22 | public function get_label(): string { |
| 23 | return __( 'Get Subscription', 'surecart' ); |
| 24 | } |
| 25 | |
| 26 | /** |
| 27 | * {@inheritDoc} |
| 28 | */ |
| 29 | public function get_description(): string { |
| 30 | return __( 'Retrieve a single SureCart subscription by its ID, including the associated price, product, and billing details. Returns the full subscription object with related data expanded.', 'surecart' ); |
| 31 | } |
| 32 | |
| 33 | /** |
| 34 | * {@inheritDoc} |
| 35 | */ |
| 36 | public function get_annotations(): array { |
| 37 | return array( |
| 38 | 'readonly' => true, |
| 39 | 'destructive' => false, |
| 40 | 'idempotent' => true, |
| 41 | ); |
| 42 | } |
| 43 | |
| 44 | /** |
| 45 | * {@inheritDoc} |
| 46 | */ |
| 47 | public function get_instructions(): string { |
| 48 | return 'Use this when you need full details about a specific subscription including its current status, billing period, and associated product/price.'; |
| 49 | } |
| 50 | |
| 51 | /** |
| 52 | * {@inheritDoc} |
| 53 | */ |
| 54 | public function check_permission(): bool { |
| 55 | return current_user_can( 'read_sc_subscriptions' ); |
| 56 | } |
| 57 | |
| 58 | /** |
| 59 | * {@inheritDoc} |
| 60 | */ |
| 61 | public function get_input_schema(): array { |
| 62 | return array( |
| 63 | 'type' => 'object', |
| 64 | 'properties' => array( |
| 65 | 'id' => array( |
| 66 | 'type' => 'string', |
| 67 | 'description' => __( 'The subscription ID.', 'surecart' ), |
| 68 | ), |
| 69 | ), |
| 70 | 'required' => array( 'id' ), |
| 71 | ); |
| 72 | } |
| 73 | |
| 74 | /** |
| 75 | * {@inheritDoc} |
| 76 | */ |
| 77 | public function get_output_schema(): array { |
| 78 | return array( |
| 79 | 'type' => 'object', |
| 80 | 'properties' => array( |
| 81 | 'success' => array( 'type' => 'boolean' ), |
| 82 | 'subscription' => array( 'type' => 'object' ), |
| 83 | ), |
| 84 | ); |
| 85 | } |
| 86 | |
| 87 | /** |
| 88 | * {@inheritDoc} |
| 89 | */ |
| 90 | public function execute( array $input ) { |
| 91 | $id = sanitize_text_field( $input['id'] ?? '' ); |
| 92 | if ( empty( $id ) ) { |
| 93 | return $this->error( 'missing_id', __( 'A subscription ID is required.', 'surecart' ) ); |
| 94 | } |
| 95 | |
| 96 | $subscription = Subscription::with( array( 'price', 'price.product' ) )->find( $id ); |
| 97 | if ( is_wp_error( $subscription ) ) { |
| 98 | return $subscription; |
| 99 | } |
| 100 | |
| 101 | return $this->success( |
| 102 | array( |
| 103 | 'subscription' => $this->model_to_array( $subscription ), |
| 104 | ) |
| 105 | ); |
| 106 | } |
| 107 | } |
| 108 |