-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathwps-wgc-lite-gdpr.php
308 lines (287 loc) · 9.7 KB
/
wps-wgc-lite-gdpr.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
<?php
/**
* Exit if accessed directly
*
* @package woo-gift-cards-lite
* @since 1.0.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit();
}
use Automattic\WooCommerce\Utilities\OrderUtil;
/**
* Return the default suggested privacy policy content.
*
* @since 1.0.0
* @return string The default policy content.
* @name wps_wgm_plugin_get_default_privacy_content
* @author WP Swings <[email protected]>
* @link https://www.wpswings.com/
*/
function wps_wgm_plugin_get_default_privacy_content() {
return '<h2>' . __( 'Stored Recipient Details for sending Gift Card', 'woo-gift-cards-lite' ) . '</h2>' .
'<p>' . __( "We store your recipient's email address, recipient's name, gift message, your name so that we can send them again your Gift Card with all proper details have been filled by you at the time of purchasing Gift Card Product if they arrive", 'woo-gift-cards-lite' ) . '</p>';
}
/**
* Add the suggested privacy policy text to the policy postbox.
*
* @since 1.0.0
* @name wps_wgm_plugin_add_suggested_privacy_content
* @author WP Swings <[email protected]>
* @link https://www.wpswings.com/
*/
function wps_wgm_plugin_add_suggested_privacy_content() {
$content = wps_wgm_plugin_get_default_privacy_content();
wp_add_privacy_policy_content( __( 'Ultimate Gift Cards For WooCommerce', 'woo-gift-cards-lite' ), $content );
}
add_action( 'admin_init', 'wps_wgm_plugin_add_suggested_privacy_content', 20 );
// Export Personal Data.
/**
* Register exporter for Plugin user data.
*
* @since 1.0.0
* @see https://github.com/allendav/wp-privacy-requests/blob/master/EXPORT.md
* @param array $exporters Details of all the exporters.
* @return array
* @name wps_wgm_plugin_register_exporters
* @author WP Swings <[email protected]>
* @link https://www.wpswings.com/
*/
function wps_wgm_plugin_register_exporters( $exporters ) {
$exporters[] = array(
'exporter_friendly_name' => __( 'Recipient Details', 'woo-gift-cards-lite' ),
'callback' => 'wps_wgm_plugin_user_data_exporter',
);
return $exporters;
}
add_filter( 'wp_privacy_personal_data_exporters', 'wps_wgm_plugin_register_exporters' );
/**
* Exporter for Plugin user data.
*
* @since 1.0.0
* @see https://github.com/allendav/wp-privacy-requests/blob/master/EXPORT.md
* @param string $email_address Contains Email Addresss.
* @param int $page contains page.
* @return array
* @name wps_wgm_plugin_user_data_exporter
* @author WP Swings <[email protected]>
* @link https://www.wpswings.com/
*/
function wps_wgm_plugin_user_data_exporter( $email_address, $page = 1 ) {
$export_items = array();
$user = get_user_by( 'email', $email_address );
if ( $user && $user->ID ) {
$item_id = "wps-wgm-recipient-details-{$user->ID}";
$group_id = 'wps-wgm-recipient-details';
$group_label = __( 'Gift Card Details', 'woo-gift-cards-lite' );
// Plugins can add as many items in the item data array as they want.
$data = array();
// Add the user's recipient's details, and along with user itself.
// Get all customer orders.
if ( OrderUtil::custom_orders_table_usage_is_enabled() ) {
// HPOS Enabled.
$customer_orders = wc_get_orders(
array(
'customer' => $user->ID,
'status' => array_keys( wc_get_order_statuses() ),
'type' => wc_get_order_types(),
'limit' => -1, // To retrieve all customer orders.
)
);
} else {
$customer_orders = get_posts(
array(
'numberposts' => -1,
'meta_key' => '_customer_user',
'meta_value' => $user->ID,
'post_type' => wc_get_order_types(),
'post_status' => array_keys( wc_get_order_statuses() ),
)
);
}
if ( isset( $customer_orders ) && ! empty( $customer_orders ) ) {
foreach ( $customer_orders as $order_key => $orders ) {
$order_id = $orders->ID;
if ( isset( $order_id ) && ! empty( $order_id ) ) {
$order = wc_get_order( $order_id );
foreach ( $order->get_items() as $item_id => $item ) {
$item_meta_data = $item->get_meta_data();
$to = '';
$to_name = '';
$from = '';
$gift_msg = '';
$gift_img_name = '';
if ( ! empty( $item_meta_data ) ) {
foreach ( $item_meta_data as $key => $value ) {
if ( isset( $value->key ) && 'To' == $value->key && ! empty( $value->value ) ) {
$to = $value->value;
}
if ( isset( $value->key ) && 'From' == $value->key && ! empty( $value->value ) ) {
$from = $value->value;
}
if ( isset( $value->key ) && 'Message' == $value->key && ! empty( $value->value ) ) {
$gift_msg = $value->value;
}
}
// Add these data into $data.
if ( ! empty( $to ) ) {
$data[] = array(
'name' => __( 'Recipient Name/Email', 'woo-gift-cards-lite' ),
'value' => $to,
);
}
if ( ! empty( $from ) ) {
$data[] = array(
'name' => __( 'Buyer Name/Email', 'woo-gift-cards-lite' ),
'value' => $from,
);
}
if ( ! empty( $gift_msg ) ) {
$data[] = array(
'name' => __( 'Gift Message', 'woo-gift-cards-lite' ),
'value' => $gift_msg,
);
}
}
// Add this group of items to the exporters data array.
$export_items[] = array(
'group_id' => $group_id,
'group_label' => $group_label,
'item_id' => $item_id,
'data' => $data,
);
}
}
}
}
}
// Returns an array of exported items for this pass, but also a boolean whether this exporter is finished.
// If not it will be called again with $page increased by 1.
return array(
'data' => $export_items,
'done' => true,
);
}
// Delete Personal Data.
/**
* Register eraser for Plugin user data.
*
* @since 1.0.0
* @param array $erasers contains erased data.
* @return array
* @name wps_wgm_plugin_register_erasers
* @author WP Swings <[email protected]>
* @link https://www.wpswings.com/
*/
function wps_wgm_plugin_register_erasers( $erasers = array() ) {
$erasers[] = array(
'eraser_friendly_name' => __( 'Recipient Details', 'woo-gift-cards-lite' ),
'callback' => 'wps_wgm_plugin_user_data_eraser',
);
return $erasers;
}
add_filter( 'wp_privacy_personal_data_erasers', 'wps_wgm_plugin_register_erasers' );
/**
* Eraser for Plugin user data.
*
* @since 1.0.0
* @param string $email_address contains email address.
* @param int $page conains page.
* @return array
* @name wps_wgm_plugin_user_data_eraser
* @author WP Swings <[email protected]>
* @link https://www.wpswings.com/
*/
function wps_wgm_plugin_user_data_eraser( $email_address, $page = 1 ) {
if ( empty( $email_address ) ) {
return array(
'items_removed' => false,
'items_retained' => false,
'messages' => array(),
'done' => true,
);
}
$user = get_user_by( 'email', $email_address );
$messages = array();
$items_removed = false;
$items_retained = false;
if ( $user && $user->ID ) {
// Delete their order meta keys.
if ( OrderUtil::custom_orders_table_usage_is_enabled() ) {
// HPOS Enabled.
$customer_orders = wc_get_orders(
array(
'customer' => $user->ID,
'status' => array_keys( wc_get_order_statuses() ),
'type' => wc_get_order_types(),
'limit' => -1, // To retrieve all customer orders.
)
);
} else {
$customer_orders = get_posts(
array(
'numberposts' => -1,
'meta_key' => '_customer_user',
'meta_value' => $user->ID,
'post_type' => wc_get_order_types(),
'post_status' => array_keys( wc_get_order_statuses() ),
)
);
}
if ( isset( $customer_orders ) && ! empty( $customer_orders ) ) {
foreach ( $customer_orders as $order_key => $orders ) {
$order_id = $orders->ID;
if ( isset( $order_id ) && ! empty( $order_id ) ) {
$order = wc_get_order( $order_id );
foreach ( $order->get_items() as $item_id => $item ) {
$item_meta_data = $item->get_meta_data();
$to = '';
$from = '';
$gift_msg = '';
if ( ! empty( $item_meta_data ) ) {
foreach ( $item_meta_data as $key => $value ) {
if ( isset( $value->key ) && 'To' == $value->key && ! empty( $value->value ) ) {
$status = woocommerce_delete_order_item_meta( $item_id, $value->key, $value->value, true );
if ( $status ) {
$items_removed = true;
} else {
$messages[] = __( 'Removed key "TO"', 'woo-gift-cards-lite' );
$items_retained = true;
}
}
if ( isset( $value->key ) && 'From' == $value->key && ! empty( $value->value ) ) {
$status = woocommerce_delete_order_item_meta( $item_id, $value->key, $value->value, true );
if ( $status ) {
$items_removed = true;
} else {
$messages[] = __( 'Removed key "From"', 'woo-gift-cards-lite' );
$items_retained = true;
}
}
if ( isset( $value->key ) && 'Message' == $value->key && ! empty( $value->value ) ) {
$status = woocommerce_delete_order_item_meta( $item_id, $value->key, $value->value, true );
if ( $status ) {
$items_removed = true;
} else {
$messages[] = __( 'Removed key "Message"', 'woo-gift-cards-lite' );
$items_retained = true;
}
}
}
} else {
$items_removed = true;
}
}
}
}
}
}
// Returns an array of exported items for this pass, but also a boolean whether this exporter is finished.
// If not it will be called again with $page increased by 1.
return array(
'items_removed' => $items_removed,
'items_retained' => $items_retained,
'messages' => $messages,
'done' => true,
);
}