PluginProbe ʕ •ᴥ•ʔ
OttoKit: All-in-One Automation Platform / 1.1.38
OttoKit: All-in-One Automation Platform v1.1.38
1.1.38 1.1.37 1.1.36 1.1.35 1.1.34 1.1.33 1.1.32 1.1.31 1.1.30 1.1.29 1.1.28 1.1.27 1.1.9 trunk 1.0.10 1.0.11 1.0.12 1.0.13 1.0.14 1.0.15 1.0.16 1.0.17 1.0.18 1.0.19 1.0.20 1.0.21 1.0.22 1.0.23 1.0.24 1.0.25 1.0.26 1.0.27 1.0.28 1.0.29 1.0.30 1.0.31 1.0.32 1.0.33 1.0.34 1.0.35 1.0.36 1.0.37 1.0.38 1.0.39 1.0.40 1.0.41 1.0.42 1.0.43 1.0.44 1.0.45 1.0.46 1.0.47 1.0.48 1.0.49 1.0.50 1.0.51 1.0.52 1.0.53 1.0.54 1.0.55 1.0.56 1.0.57 1.0.58 1.0.59 1.0.60 1.0.61 1.0.62 1.0.63 1.0.64 1.0.65 1.0.66 1.0.67 1.0.68 1.0.69 1.0.7 1.0.70 1.0.71 1.0.72 1.0.73 1.0.74 1.0.75 1.0.76 1.0.77 1.0.78 1.0.79 1.0.8 1.0.80 1.0.81 1.0.82 1.0.83 1.0.84 1.0.85 1.0.86 1.0.87 1.0.88 1.0.89 1.0.9 1.0.90 1.1.0 1.1.1 1.1.10 1.1.11 1.1.12 1.1.13 1.1.14 1.1.15 1.1.16 1.1.17 1.1.18 1.1.19 1.1.2 1.1.20 1.1.21 1.1.22 1.1.23 1.1.24 1.1.25 1.1.26 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8
suretriggers / src / Integrations / woocommerce / actions / create-coupon-code.php
suretriggers / src / Integrations / woocommerce / actions Last commit date
add-attribute-terms.php 10 months ago add-customer.php 11 months ago add-emails-to-coupon.php 10 months ago add-order-note.php 11 months ago add-product-attributes.php 10 months ago add-product-to-cart.php 10 months ago add-update-order-custom-fields.php 11 months ago apply-coupon.php 10 months ago check-cart-status.php 10 months ago check-if-order-is-renewal.php 5 months ago create-attribute.php 10 months ago create-bundle-product-order.php 8 months ago create-coupon-code.php 11 months ago create-multi-product-order.php 8 months ago create-new-order.php 11 months ago create-product-variation.php 1 year ago create-product.php 3 weeks ago create-variable-product.php 3 weeks ago delete-coupon.php 1 year ago delete-customer.php 10 months ago fetch-coupon-details.php 11 months ago find-orders-by-user-id.php 11 months ago get-all-customers.php 10 months ago get-all-products.php 10 months ago get-customer-by-email.php 10 months ago get-customer-by-id.php 10 months ago get-order-details-by-order-id.php 11 months ago get-order-type-by-order-id.php 5 months ago get-orders-by-email.php 10 months ago get-product-by-id.php 1 year ago list-all-order-notes.php 10 months ago list-all-orders.php 10 months ago remove-product-from-cart.php 10 months ago retrieve-coupons-totals.php 11 months ago retrieve-customers-totals.php 11 months ago retrieve-orders-totals.php 11 months ago retrieve-products-totals.php 11 months ago retrieve-refunds-list.php 11 months ago retrieve-reviews-totals.php 11 months ago retrieve-sales-report.php 11 months ago retrieve-top-sellers-report.php 11 months ago update-product-price.php 10 months ago update-product-stock-quantity.php 10 months ago update-status-of-order.php 11 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