-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathhelpers.php
executable file
·445 lines (371 loc) · 10.8 KB
/
helpers.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
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
<?php
include_once( 'mailchimp-api/3.0/mailchimp-api-3.0.php' );
/**
* Make a ping to MailChimp API
*
* @return true|WP_Error
*/
function mailchimp_30_ping() {
$api = mailchimp_load_api_30();
if ( is_wp_error( $api ) ) {
return $api;
}
return mailchimp_api_30_make_request( 'get', 'lists' );
}
/**
* Subscribe a user to a Mailchimp list
*
* @param string $user_email
* @param string $list_id
* @param array $options extra data
* [
* autopt boolean
* merge_fields array [
* FNAME string First Name
* LNAME string Last Name
* ]
* interests array List of interests IDs with boolean values
*
* ]
* @return array|WP_Error Result from the server
*/
function mailchimp_30_subscribe_user( $user_email, $list_id = '', $options = array() ) {
$defaults = array(
'autopt' => false,
'merge_fields' => array(),
'interests' => array()
);
$options = wp_parse_args( $options, $defaults );
if ( ! $list_id ) {
$list_id = get_site_option( 'mailchimp_mailing_list' );
}
if ( ! $list_id ) {
return new WP_Error( 'missing-list-id', __( 'A list is not specified', 'mailchimp' ) );
}
$args = array(
'email_address' => $user_email
);
if ( $options['autopt'] ) {
$args['status'] = 'subscribed';
$args['ip_opt'] = mailchimp_sync_user_ip();
}
else {
$args['status'] = 'pending';
}
if ( $options['merge_fields'] ) {
$args['merge_fields'] = (object)$options['merge_fields'];
}
if ( $options['interests'] ) {
$args['interests'] = (object)$options['interests'];
}
$result = mailchimp_api_30_make_request( 'post', "lists/$list_id/members", $args );
return $result;
}
/**
* Check if a user is subscribed in the list
*
* @param String $user_email
* @param String $list_id
* @return bool True if the user is subscribed already to the list
*/
function mailchimp_30_is_user_subscribed( $user_email, $list_id = '' ) {
if ( ! $list_id ) {
$list_id = get_site_option( 'mailchimp_mailing_list' );
if ( ! $list_id ) {
return false;
}
}
$hash = md5( strtolower( $user_email ) );
$results = mailchimp_api_30_make_request( 'get', "lists/$list_id/members/$hash" );
return ! is_wp_error( $results );
}
/**
* Unsubscribe a user from a list
*
* @param String $user_email
* @param String $list_id
* @param Boolean $delete True if the user is gonna be deleted from the list (not only unsubscribed)
*
* @return bool|array
*/
function mailchimp_30_unsubscribe_user( $user_email, $list_id = '', $delete = false ) {
if ( ! $list_id ) {
$list_id = get_site_option( 'mailchimp_mailing_list' );
if ( ! $list_id ) {
return false;
}
}
if ( ! $delete ) {
$result = mailchimp_30_update_user( $user_email, $list_id, array( 'status' => 'unsubscribed' ) );
}
else {
$hash = md5( strtolower( $user_email ) );
$result = mailchimp_api_30_make_request( 'delete', "lists/$list_id/members/$hash" );
}
return ! is_wp_error( $result );
}
/**
* Update a user data in a list
*
* @param string $user_email
* @param string $list_id
* @param array $options extra data
* [
* status string subscribed|unsubscribed|cleaned|pending
* merge_fields array [
* FNAME string First Name
* LNAME string Last Name
* ]
* interests array List of interests IDs with boolean values
* ]
*
* @return array|bool New user data
*/
function mailchimp_30_update_user( $user_email, $list_id, $options ) {
if ( ! $list_id ) {
$list_id = get_site_option( 'mailchimp_mailing_list' );
if ( ! $list_id ) {
return false;
}
}
$defaults = array(
'merge_fields' => array(),
'status' => false,
'email_address' => false
);
$options = wp_parse_args( $options, $defaults );
$hash = md5( strtolower( $user_email ) );
$args = array();
if ( $options['merge_fields'] ) {
$args['merge_fields'] = $options['merge_fields'];
}
if ( $options['email_address'] ) {
$args['email_address'] = $options['email_address'];
}
if ( $options['status'] ) {
$args['status'] = $options['status'];
}
$result = mailchimp_api_30_make_request( 'patch', "lists/$list_id/members/$hash", $args );
return $result;
}
/**
* Return user data from a list
*
* @param String $user_email
* @param String $list_id
* @return array|bool User data / False if the user do not exist
*/
function mailchimp_30_get_user_info( $user_email, $list_id = '' ) {
if ( ! $list_id ) {
$list_id = get_site_option( 'mailchimp_mailing_list' );
if ( ! $list_id ) {
return false;
}
}
$hash = md5( strtolower( $user_email ) );
$result = mailchimp_api_30_make_request( 'get', "lists/$list_id/members/$hash" );
if ( ! is_wp_error( $result ) ) {
return $result;
}
return false;
}
/**
* Subscribe a list of users
* @param array $data List of users and their data
* [
* user_email string User email
* options array List of options.
* [
* autopt boolean
* merge_fields array [
* FNAME string First Name
* LNAME string Last Name
* ]
* interests array List of interests IDs with boolean values
*
* ]
* ]
* @return WP_Error|array
*/
function mailchimp_30_bulk_subscribe_users( $data, $list_id = '' ) {
if ( ! $list_id ) {
$list_id = get_site_option( 'mailchimp_mailing_list' );
}
if ( ! $list_id ) {
return new WP_Error( 'missing-list-id', __( 'A list is not specified', 'mailchimp' ) );
}
$path = "lists/$list_id/members";
$method = 'post';
$defaults = array(
'autopt' => false,
'merge_fields' => array(),
'interests' => array()
);
$operations = array();
foreach ( $data as $row ) {
$row_options = wp_parse_args( $row, $defaults );
$operation = array(
'path' => $path,
'method' => $method
);
$operation_args = array(
'email_address' => $row['user_email']
);
if ( $row_options['autopt'] ) {
$operation_args['status'] = 'subscribed';
$operation_args['ip_opt'] = mailchimp_sync_user_ip();
}
else {
$operation_args['status'] = 'pending';
}
if ( $row_options['merge_fields'] ) {
$operation_args['merge_fields'] = (object)$row_options['merge_fields'];
}
if ( $row_options['interests'] ) {
$operation_args['interests'] = (object)$row_options['interests'];
}
$operation['args'] = $operation_args;
$operations[] = $operation;
}
$result = mailchimp_api_30_make_batch_request( $operations );
return $result;
}
/**
* UnSubscribe a list of users
*
* @param array $emails List of emails to unsubscribe
*
* @return WP_Error|array
*/
function mailchimp_30_bulk_unsubscribe_users( $emails, $list_id = '', $delete = false ) {
if ( ! $list_id ) {
$list_id = get_site_option( 'mailchimp_mailing_list' );
}
if ( ! $list_id ) {
return new WP_Error( 'missing-list-id', __( 'A list is not specified', 'mailchimp' ) );
}
$operations = array();
foreach ( $emails as $email ) {
$hash = md5( strtolower( $email ) );
if ( $delete ) {
$operations[] = array(
'path' => "lists/$list_id/members/$hash",
'method' => 'delete'
);
}
else {
$operations[] = array(
'path' => "lists/$list_id/members/$hash",
'method' => 'patch',
'args' => array(
'status' => 'unsubscribed'
)
);
}
}
return mailchimp_api_30_make_batch_request( $operations );
}
/**
* Get the lists of a Mailchimp account
*
* @return array Lists info
*/
function mailchimp_30_get_lists() {
$lists = mailchimp_api_30_make_request( 'get', 'lists' );
if ( ! is_wp_error( $lists ) ) {
return $lists['lists'];
}
return array();
}
function mailchimp_30_get_list_groups( $list_id ) {
$api = mailchimp_load_api_30();
if ( is_wp_error( $api ) ) {
return array();
}
$cached = get_site_transient( 'mailchimp_list_groups_' . $list_id );
if ( $cached ) {
return $cached;
}
$groups = mailchimp_api_30_make_request( 'get', "/lists/$list_id/interest-categories" );
if ( ! is_wp_error( $groups ) ) {
set_site_transient( 'mailchimp_list_groups_' . $list_id, $groups['categories'], 60 ); // Save for 60 seconds
return $groups['categories'];
}
return array();
}
function mailchimp_30_get_category_interests( $list_id, $category_id ) {
$api = mailchimp_load_api_30();
if ( is_wp_error( $api ) ) {
return array();
}
$cached = get_site_transient( 'mailchimp_category_interests_' . $list_id . '_' . $category_id );
if ( $cached ) {
return $cached;
}
$interests = mailchimp_api_30_make_request( 'get', "/lists/$list_id/interest-categories/$category_id/interests" );
if ( ! is_wp_error( $interests ) ) {
set_site_transient( 'mailchimp_category_interests_' . $list_id . '_' . $category_id, $interests['interests'], 60 ); // Save for 60 seconds
return $interests['interests'];
}
return array();
}
/**
* Return the groups that the user has selected in Settings
*
* @return array Array of groups
*/
function mailchimp_30_get_interest_groups() {
$mailchimp_mailing_list = get_site_option( 'mailchimp_mailing_list', '' );
$groups = get_site_option( 'mailchimp_groups', array() );
if ( ! isset( $groups[ $mailchimp_mailing_list ] ) ) {
return array();
}
$groups = $groups[ $mailchimp_mailing_list ];
$interests = array();
foreach ( $groups as $group_id => $group_value ) {
if ( is_array( $group_value ) ) {
foreach ( $group_value as $key => $interest_id ) {
$interests[$interest_id] = true;
}
}
elseif ( ! empty( $group_value ) ) {
$interests[$group_value] = true;
}
}
return $interests;
}
function mailchimp_get_webhooks_settings() {
return wp_parse_args( get_site_option( 'mailchimp_webhooks_settings', array() ), mailchimp_get_webhooks_default_settings() );
}
function mailchimp_get_webhooks_default_settings() {
return array(
'webhook_key' => '',
'write_log' => false,
'delete_user' => 'mark'
);
}
function mailchimp_update_webhooks_settings( $new_settings ) {
update_site_option( 'mailchimp_webhooks_settings', $new_settings );
}
function mailchimp_get_webhook_url() {
return WPMUDEV_MailChimp_Sync_Webhooks_30::get_callback_url();
}
function mailchimp_set_webhooks_rewrite_rules() {
WPMUDEV_MailChimp_Sync_Webhooks_30::add_rewrite_rules();
}
function mailchimp_is_webhooks_active() {
return WPMUDEV_MailChimp_Sync_Webhooks_30::is_webhooks_active();
}
/**
* Get User IP
*/
function mailchimp_sync_user_ip() {
if ( isset( $_SERVER['HTTP_CLIENT_IP'] ) ) {
$ip = $_SERVER['HTTP_CLIENT_IP'];
} elseif ( isset( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ) {
$ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
} else {
$ip = $_SERVER['REMOTE_ADDR'];
}
return $ip;
}