add-attribute-terms.php
8 months ago
add-customer.php
9 months ago
add-emails-to-coupon.php
8 months ago
add-order-note.php
10 months ago
add-product-attributes.php
8 months ago
add-product-to-cart.php
8 months ago
add-update-order-custom-fields.php
10 months ago
apply-coupon.php
8 months ago
check-cart-status.php
8 months ago
check-if-order-is-renewal.php
4 months ago
create-attribute.php
8 months ago
create-bundle-product-order.php
6 months ago
create-coupon-code.php
10 months ago
create-multi-product-order.php
6 months ago
create-new-order.php
10 months ago
create-product-variation.php
1 year ago
create-product.php
1 year ago
create-variable-product.php
8 months ago
delete-coupon.php
1 year ago
delete-customer.php
8 months ago
fetch-coupon-details.php
10 months ago
find-orders-by-user-id.php
10 months ago
get-all-customers.php
8 months ago
get-all-products.php
8 months ago
get-customer-by-email.php
8 months ago
get-customer-by-id.php
8 months ago
get-order-details-by-order-id.php
10 months ago
get-order-type-by-order-id.php
4 months ago
get-orders-by-email.php
8 months ago
get-product-by-id.php
1 year ago
list-all-order-notes.php
8 months ago
list-all-orders.php
8 months ago
remove-product-from-cart.php
8 months ago
retrieve-coupons-totals.php
10 months ago
retrieve-customers-totals.php
10 months ago
retrieve-orders-totals.php
10 months ago
retrieve-products-totals.php
10 months ago
retrieve-refunds-list.php
10 months ago
retrieve-reviews-totals.php
10 months ago
retrieve-sales-report.php
10 months ago
retrieve-top-sellers-report.php
10 months ago
update-product-price.php
8 months ago
update-product-stock-quantity.php
8 months ago
update-status-of-order.php
10 months ago
create-coupon-code.php
214 lines
| 1 | <?php |
| 2 | /** |
| 3 | * CreateCouponCode. |
| 4 | * php version 5.6 |
| 5 | * |
| 6 | * @category CreateCouponCode |
| 7 | * @package SureTriggers |
| 8 | * @author BSF <username@example.com> |
| 9 | * @license https://www.gnu.org/licenses/gpl-3.0.html GPLv3 |
| 10 | * @link https://www.brainstormforce.com/ |
| 11 | * @since 1.0.0 |
| 12 | */ |
| 13 | |
| 14 | namespace SureTriggers\Integrations\Woocommerce\Actions; |
| 15 | |
| 16 | use SureTriggers\Integrations\AutomateAction; |
| 17 | use SureTriggers\Traits\SingletonLoader; |
| 18 | |
| 19 | /** |
| 20 | * CreateCouponCode |
| 21 | * |
| 22 | * @category CreateCouponCode |
| 23 | * @package SureTriggers |
| 24 | * @author BSF <username@example.com> |
| 25 | * @license https://www.gnu.org/licenses/gpl-3.0.html GPLv3 |
| 26 | * @link https://www.brainstormforce.com/ |
| 27 | * @since 1.0.0 |
| 28 | */ |
| 29 | class CreateCouponCode extends AutomateAction { |
| 30 | |
| 31 | /** |
| 32 | * Integration type. |
| 33 | * |
| 34 | * @var string |
| 35 | */ |
| 36 | public $integration = 'WooCommerce'; |
| 37 | |
| 38 | /** |
| 39 | * Action name. |
| 40 | * |
| 41 | * @var string |
| 42 | */ |
| 43 | public $action = 'wc_create_coupon_code'; |
| 44 | |
| 45 | use SingletonLoader; |
| 46 | |
| 47 | /** |
| 48 | * Register a action. |
| 49 | * |
| 50 | * @param array $actions actions. |
| 51 | * @return array |
| 52 | */ |
| 53 | public function register( $actions ) { |
| 54 | $actions[ $this->integration ][ $this->action ] = [ |
| 55 | 'label' => __( 'Generate a coupon code.', 'suretriggers' ), |
| 56 | 'action' => 'wc_create_coupon_code', |
| 57 | 'function' => [ $this, 'action_listener' ], |
| 58 | ]; |
| 59 | return $actions; |
| 60 | } |
| 61 | |
| 62 | /** |
| 63 | * Action listener. |
| 64 | * |
| 65 | * @param int $user_id user_id. |
| 66 | * @param int $automation_id automation_id. |
| 67 | * @param array $fields fields. |
| 68 | * @param array $selected_options selectedOptions. |
| 69 | * |
| 70 | * @return void|array|bool |
| 71 | */ |
| 72 | public function _action_listener( $user_id, $automation_id, $fields, $selected_options ) { |
| 73 | if ( ! $user_id ) { |
| 74 | return [ |
| 75 | 'status' => 'error', |
| 76 | 'message' => __( 'User Not found', 'suretriggers' ), |
| 77 | |
| 78 | ]; |
| 79 | } |
| 80 | |
| 81 | foreach ( $fields as $field ) { |
| 82 | if ( array_key_exists( 'validationProps', $field ) && empty( $selected_options[ $field['name'] ] ) ) { |
| 83 | return [ |
| 84 | 'status' => 'error', |
| 85 | 'message' => __( 'Required field is missing: ', 'suretriggers' ) . $field['name'], |
| 86 | ]; |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | $coupon_code = ! empty( $selected_options['coupon_code'] ) ? $selected_options['coupon_code'] : $this->get_coupon_code(); |
| 91 | $description = $selected_options['description']; |
| 92 | $discount_type = $selected_options['discount_type']; |
| 93 | $coupon_amt = $selected_options['coupon_amt']; |
| 94 | $is_free_shipping = $selected_options['is_free_shipping'] ? 'yes' : 'no'; |
| 95 | $expiry_date = $selected_options['expiry_date']; |
| 96 | $min_spend = $selected_options['min_spend']; |
| 97 | $max_spend = $selected_options['max_spend']; |
| 98 | $is_individual = $selected_options['is_individual'] ? 'yes' : 'no'; |
| 99 | $exclude_sale_items = $selected_options['exclude_sale_items'] ? 'yes' : 'no'; |
| 100 | $allowed_emails = ! empty( $selected_options['allowed_emails'] ) ? array_filter( array_map( 'sanitize_email', explode( ',', $selected_options['allowed_emails'] ) ) ) : ''; |
| 101 | $usage_limit_per_coupon = $selected_options['usage_limit_per_coupon']; |
| 102 | $limit_items = $selected_options['limit_items']; |
| 103 | $usage_limit_per_user = $selected_options['usage_limit_per_user']; |
| 104 | $product_cat_ids = []; |
| 105 | $product_cat_name = []; |
| 106 | $product_cat_exclude_ids = []; |
| 107 | $product_cat_exclude_name = []; |
| 108 | $product_ids = []; |
| 109 | $product_names = []; |
| 110 | $exclude_product_ids = []; |
| 111 | $exclude_product_names = []; |
| 112 | |
| 113 | if ( isset( $selected_options['product_cat'] ) ) { |
| 114 | foreach ( $selected_options['product_cat'] as $product_cat ) { |
| 115 | $product_cat_ids[] = $product_cat['value']; |
| 116 | $product_cat_name[] = $product_cat['label']; |
| 117 | } |
| 118 | } |
| 119 | if ( isset( $selected_options['exclude_product_cat'] ) ) { |
| 120 | foreach ( $selected_options['exclude_product_cat'] as $exclude_product_cat ) { |
| 121 | $product_cat_exclude_ids[] = $exclude_product_cat['value']; |
| 122 | $product_cat_exclude_name[] = $exclude_product_cat['label']; |
| 123 | } |
| 124 | } |
| 125 | if ( isset( $selected_options['product'] ) ) { |
| 126 | foreach ( $selected_options['product'] as $product ) { |
| 127 | $product_ids[] = $product['value']; |
| 128 | $product_names[] = $product['label']; |
| 129 | } |
| 130 | } |
| 131 | if ( isset( $selected_options['exclude_product'] ) ) { |
| 132 | foreach ( $selected_options['exclude_product'] as $exclude_product ) { |
| 133 | $exclude_product_ids[] = $exclude_product['value']; |
| 134 | $exclude_product_names[] = $exclude_product['label']; |
| 135 | } |
| 136 | } |
| 137 | $products = ! empty( $product_ids ) ? implode( ',', array_map( 'intval', $product_ids ) ) : ''; |
| 138 | $exclude_products = ! empty( $exclude_product_ids ) ? implode( ',', array_map( 'intval', $exclude_product_ids ) ) : ''; |
| 139 | $args = [ |
| 140 | 'post_title' => $coupon_code, |
| 141 | 'post_content' => '', |
| 142 | 'post_status' => 'publish', |
| 143 | 'post_author' => $user_id, |
| 144 | 'post_type' => 'shop_coupon', |
| 145 | 'post_excerpt' => $description, |
| 146 | ]; |
| 147 | |
| 148 | $coupon_id = wp_insert_post( $args ); |
| 149 | |
| 150 | $coupon_data = [ |
| 151 | 'discount_type' => $discount_type, |
| 152 | 'coupon_amount' => $coupon_amt, |
| 153 | 'free_shipping' => $is_free_shipping, |
| 154 | 'expiry_date' => $expiry_date, |
| 155 | 'minimum_amount' => $min_spend, |
| 156 | 'maximum_amount' => $max_spend, |
| 157 | 'individual_use' => $is_individual, |
| 158 | 'exclude_sale_items' => $exclude_sale_items, |
| 159 | 'product_ids' => $products, |
| 160 | 'product_ids_list' => implode( ',', $product_ids ), |
| 161 | 'product_names' => $product_names, |
| 162 | 'product_names_list' => implode( ',', $product_names ), |
| 163 | 'exclude_product_ids' => $exclude_products, |
| 164 | 'exclude_product_ids_list' => implode( ',', $exclude_product_ids ), |
| 165 | 'exclude_product_names' => $exclude_product_names, |
| 166 | 'exclude_product_names_list' => implode( ',', $exclude_product_names ), |
| 167 | 'product_categories' => $product_cat_ids, |
| 168 | 'product_categories_list' => implode( ',', $product_cat_ids ), |
| 169 | 'product_categories_name' => $product_cat_name, |
| 170 | 'product_categories_name_list' => implode( ',', $product_cat_name ), |
| 171 | 'exclude_product_categories' => $product_cat_exclude_ids, |
| 172 | 'exclude_product_categories_list' => implode( ',', $product_cat_exclude_ids ), |
| 173 | 'exclude_product_categories_name' => $product_cat_exclude_name, |
| 174 | 'exclude_product_categories_name_list' => implode( ',', $product_cat_exclude_name ), |
| 175 | 'customer_email' => $allowed_emails, |
| 176 | 'usage_limit' => $usage_limit_per_coupon, |
| 177 | 'limit_usage_to_x_items' => $limit_items, |
| 178 | 'usage_limit_per_user' => $usage_limit_per_user, |
| 179 | ]; |
| 180 | |
| 181 | if ( $coupon_id ) { |
| 182 | $coupon_meta_fields = $coupon_data; |
| 183 | $coupon_meta_fields['date_expires'] = $expiry_date; |
| 184 | |
| 185 | foreach ( $coupon_meta_fields as $key => $value ) { |
| 186 | update_post_meta( $coupon_id, $key, $value ); |
| 187 | } |
| 188 | } |
| 189 | |
| 190 | $user_firstname = get_user_meta( $user_id, 'first_name', true ); |
| 191 | $coupon_code = get_the_title( $coupon_id ); |
| 192 | |
| 193 | $variable_fields = $coupon_data; |
| 194 | $variable_fields['user_first_name'] = $user_firstname; |
| 195 | $variable_fields['coupon_code'] = $coupon_code; |
| 196 | $variable_fields['coupon_id'] = $coupon_id; |
| 197 | $variable_fields['coupon_description'] = $description; |
| 198 | $variable_fields['client_parse_site_name'] = get_bloginfo( 'name' ); |
| 199 | |
| 200 | return $variable_fields; |
| 201 | } |
| 202 | |
| 203 | /** |
| 204 | * Generate random coupon code. |
| 205 | * |
| 206 | * @return string|false |
| 207 | */ |
| 208 | public function get_coupon_code() { |
| 209 | return substr( str_shuffle( 'ABCDEFGHJKMNPQRSTUVWXYZ23456789' ), 0, 8 ); |
| 210 | } |
| 211 | } |
| 212 | |
| 213 | CreateCouponCode::get_instance(); |
| 214 |