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
CreateProduct.php
143 lines
| 1 | <?php |
| 2 | |
| 3 | namespace SureCart\Abilities\Abilities; |
| 4 | |
| 5 | use SureCart\Models\Product; |
| 6 | |
| 7 | /** |
| 8 | * Create a new product with prices. |
| 9 | */ |
| 10 | class CreateProduct extends AbstractAbility { |
| 11 | |
| 12 | /** |
| 13 | * {@inheritDoc} |
| 14 | */ |
| 15 | public function get_name(): string { |
| 16 | return 'surecart/create-product'; |
| 17 | } |
| 18 | |
| 19 | /** |
| 20 | * {@inheritDoc} |
| 21 | */ |
| 22 | public function get_label(): string { |
| 23 | return __( 'Create Product', 'surecart' ); |
| 24 | } |
| 25 | |
| 26 | /** |
| 27 | * {@inheritDoc} |
| 28 | */ |
| 29 | public function get_description(): string { |
| 30 | return __( 'Create a new SureCart product with a name, description, and optional initial price. The product is created in active (non-archived) state. Returns the newly created product object.', 'surecart' ); |
| 31 | } |
| 32 | |
| 33 | /** |
| 34 | * {@inheritDoc} |
| 35 | */ |
| 36 | public function get_annotations(): array { |
| 37 | return array( |
| 38 | 'readonly' => false, |
| 39 | 'destructive' => false, |
| 40 | 'idempotent' => false, |
| 41 | ); |
| 42 | } |
| 43 | |
| 44 | /** |
| 45 | * {@inheritDoc} |
| 46 | */ |
| 47 | public function get_instructions(): string { |
| 48 | return 'A product name is required. An initial price can be set via the price_amount and price_currency fields. Each call creates a new product — do not call multiple times for the same product.'; |
| 49 | } |
| 50 | |
| 51 | /** |
| 52 | * {@inheritDoc} |
| 53 | */ |
| 54 | public function check_permission(): bool { |
| 55 | return current_user_can( 'publish_sc_products' ); |
| 56 | } |
| 57 | |
| 58 | /** |
| 59 | * {@inheritDoc} |
| 60 | */ |
| 61 | public function get_input_schema(): array { |
| 62 | return array( |
| 63 | 'type' => 'object', |
| 64 | 'properties' => array( |
| 65 | 'name' => array( |
| 66 | 'type' => 'string', |
| 67 | 'description' => __( 'Product name.', 'surecart' ), |
| 68 | ), |
| 69 | 'description' => array( |
| 70 | 'type' => 'string', |
| 71 | 'description' => __( 'Product description.', 'surecart' ), |
| 72 | ), |
| 73 | 'price' => array( |
| 74 | 'type' => 'integer', |
| 75 | 'description' => __( 'Price amount in the smallest currency unit (e.g., cents).', 'surecart' ), |
| 76 | ), |
| 77 | 'currency' => array( |
| 78 | 'type' => 'string', |
| 79 | 'description' => __( 'Three-letter ISO currency code (e.g., usd).', 'surecart' ), |
| 80 | 'default' => 'usd', |
| 81 | ), |
| 82 | 'recurring' => array( |
| 83 | 'type' => 'boolean', |
| 84 | 'description' => __( 'Whether this is a recurring/subscription product.', 'surecart' ), |
| 85 | 'default' => false, |
| 86 | ), |
| 87 | ), |
| 88 | 'required' => array( 'name' ), |
| 89 | ); |
| 90 | } |
| 91 | |
| 92 | /** |
| 93 | * {@inheritDoc} |
| 94 | */ |
| 95 | public function get_output_schema(): array { |
| 96 | return array( |
| 97 | 'type' => 'object', |
| 98 | 'properties' => array( |
| 99 | 'success' => array( 'type' => 'boolean' ), |
| 100 | 'product' => array( 'type' => 'object' ), |
| 101 | ), |
| 102 | ); |
| 103 | } |
| 104 | |
| 105 | /** |
| 106 | * {@inheritDoc} |
| 107 | */ |
| 108 | public function execute( array $input ) { |
| 109 | $data = array( |
| 110 | 'name' => sanitize_text_field( $input['name'] ), |
| 111 | ); |
| 112 | |
| 113 | if ( ! empty( $input['description'] ) ) { |
| 114 | $data['description'] = sanitize_textarea_field( $input['description'] ); |
| 115 | } |
| 116 | |
| 117 | if ( ! empty( $input['price'] ) ) { |
| 118 | $price_data = array( |
| 119 | 'amount' => absint( $input['price'] ), |
| 120 | 'currency' => sanitize_text_field( $input['currency'] ?? 'usd' ), |
| 121 | ); |
| 122 | |
| 123 | if ( ! empty( $input['recurring'] ) ) { |
| 124 | $price_data['recurring_interval'] = 'month'; |
| 125 | $price_data['recurring_interval_count'] = 1; |
| 126 | } |
| 127 | |
| 128 | $data['prices'] = array( $price_data ); |
| 129 | } |
| 130 | |
| 131 | $product = Product::create( $data ); |
| 132 | if ( is_wp_error( $product ) ) { |
| 133 | return $product; |
| 134 | } |
| 135 | |
| 136 | return $this->success( |
| 137 | array( |
| 138 | 'product' => $this->model_to_array( $product ), |
| 139 | ) |
| 140 | ); |
| 141 | } |
| 142 | } |
| 143 |