class-affiliates-registration.php
28.9 KB
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
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
<?php
/**
* class-affiliates-registration.php
*
* Copyright (c) 2010 - 2015 "kento" Karim Rahimpur www.itthinx.com
*
* This code is released under the GNU General Public License.
* See COPYRIGHT.txt and LICENSE.txt.
*
* This code is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* This header and all notices must be kept intact.
*
* @author Karim Rahimpur
* @package affiliates
* @since affiliates 1.1.0
*/
if ( !defined( 'ABSPATH' ) ) {
exit;
}
/**
* Affiliate registration form.
*
* Deleting users vs. removing affiliates :
*
* - If a user is deleted, the affiliate is marked as deleted and the
* association is released.
* - Marking an affiliate as deleted (pressing Remove) marks the affiliate
* as deleted but does not delete the user, the association is maintained.
*
* @todo WPML field translations, also on form output
*
* @link http://wpml.org/documentation/support/translation-for-texts-by-other-plugins-and-themes/
*
* icl_register_string('Contact Form 7', 'Input field label', 'Profession');
* icl_unregister_string ( string $context, string $name );
* icl_translate ( string $context, string $name, string $value );
*/
class Affiliates_Registration {
/**
* Accepted form parameters.
*
* @var array
*/
private static $defaults = array(
'is_widget' => false,
'registered_profile_link_text' => null,
'registered_profile_link_url' => null,
'redirect' => false,
'redirect_to' => null,
'submit_button_label' => null,
'terms_post_id' => null
);
/**
* Not stored as user meta.
*
* @var array
*/
private static $skip_meta_fields = array(
'user_login',
'user_email',
'user_url',
'user_pass',
'password'
);
/**
* Returns the keys not stored as user meta.
*
* @return array
*/
public static function get_skip_meta_fields() {
return self::$skip_meta_fields;
}
private static $submit_button_label = null;
/**
* Class initialization.
*/
public static function init() {
// registration form shortcode
add_shortcode( 'affiliates_registration', array( __CLASS__, 'affiliates_registration_shortcode' ) );
// delete affiliate when user is deleted
add_action( 'deleted_user', array( __CLASS__, 'deleted_user' ) );
}
/**
* Registration form shortcode handler.
*
* @param array $atts attributes
* @param string $content not used
*/
public static function affiliates_registration_shortcode( $atts, $content = null ) {
$options = shortcode_atts( self::$defaults, $atts );
return self::render_form( $options );
}
/**
* Registration form.
*
* @see Affiliates_Registration::$defaults for accepted parameters
*
* @param array $options form options
* @return string rendered registration form
*/
public static function render_form( $options = array() ) {
wp_enqueue_style( 'affiliates' );
self::$submit_button_label = __( 'Sign Up', AFFILIATES_PLUGIN_DOMAIN );
$output = '';
//
// Existing affiliate
//
if ( $is_affiliate = affiliates_user_is_affiliate() ) {
$output .= '<div class="affiliates-registration registered">';
$output .= '<p>';
$output .= __( 'You are already registered as an affiliate.', AFFILIATES_PLUGIN_DOMAIN );
$output .= '</p>';
if ( isset( $options['registered_profile_link_url'] ) ) {
$output .= '<p>';
$output .= '<a href="' . esc_url( $options['registered_profile_link_url'] ) . '">';
if ( isset( $options['registered_profile_link_text'] ) ) {
$output .= wp_filter_kses( $options['registered_profile_link_text'] );
} else {
$output .= __( 'Access your profile', AFFILIATES_PLUGIN_DOMAIN );
}
$output .= '</a>';
$output .= '</p>';
}
$output .= '</div>';
return $output;
}
//
// Registration closed
//
if ( !get_option( 'aff_registration', get_option( 'users_can_register', false ) ) ) {
$output .= '<p>' . __( 'Registration is currently closed.', AFFILIATES_PLUGIN_DOMAIN ) . '</p>';
return $output;
}
require_once AFFILIATES_CORE_LIB . '/class-affiliates-settings.php';
require_once AFFILIATES_CORE_LIB . '/class-affiliates-settings-registration.php';
$registration_fields = Affiliates_Settings_Registration::get_fields();
//
// Gather user info
//
$user = null;
if ( $is_logged_in = is_user_logged_in() ) {
$user = wp_get_current_user();
if ( isset( $registration_fields['first_name'] ) && $registration_fields['first_name']['enabled'] ) {
$first_name = $user->first_name;
$first_name = sanitize_user_field( 'first_name', $first_name, $user->ID, 'display' );
$registration_fields['first_name']['value'] = $first_name;
}
if ( isset( $registration_fields['last_name'] ) && $registration_fields['last_name']['enabled'] ) {
$last_name = $user->last_name;
$last_name = sanitize_user_field( 'last_name', $last_name, $user->ID, 'display' );
$registration_fields['last_name']['value'] = $last_name;
}
if ( isset( $registration_fields['user_login'] ) && $registration_fields['user_login']['enabled'] ) {
$user_login = $user->user_login;
$user_login = sanitize_user_field( 'user_login', $user_login, $user->ID, 'display' );
$registration_fields['user_login']['value'] = $user_login;
}
if ( isset( $registration_fields['user_email'] ) && $registration_fields['user_email']['enabled'] ) {
$user_email = $user->user_email;
$user_email = sanitize_user_field( 'email', $user_email, $user->ID, 'display' );
$registration_fields['user_email']['value'] = $user_email;
}
if ( isset( $registration_fields['user_url'] ) && $registration_fields['user_url']['enabled'] ) {
$url = $user->user_url;
$url = sanitize_user_field( 'user_url', $url, $user->ID, 'display' );
$registration_fields['user_url']['value'] = $url;
}
}
$submit_name = 'affiliates-registration-submit';
$nonce = 'affiliates-registration-nonce';
$nonce_action = 'affiliates-registration';
$send = false;
$captcha = '';
$error = false;
if ( !empty( $_POST[$submit_name] ) ) {
if ( !wp_verify_nonce( $_POST[$nonce], $nonce_action ) ) {
$error = true; // fail but don't give clues
}
$captcha = !empty( $_POST[Affiliates_Utility::get_captcha_field_id()] ) ? $_POST[Affiliates_Utility::get_captcha_field_id()] : null;
if ( !Affiliates_Utility::captcha_validates( $captcha ) ) {
$error = true; // dumbot
}
// gather field values
foreach( $registration_fields as $name => $field ) {
if ( $field['enabled'] ) {
$value = isset( $_POST[$name] ) ? $_POST[$name] : '';
$value = Affiliates_Utility::filter( $value );
if ( $field['required'] && empty( $value ) ) {
$error = true;
$output .= '<div class="error">';
$output .= __( '<strong>ERROR</strong>', AFFILIATES_PLUGIN_DOMAIN );
$output .= ' : ';
$output .= sprintf( __( 'Please fill out the field <em>%s</em>.', AFFILIATES_PLUGIN_DOMAIN ), $field['label'] );
$output .= '</div>';
}
$registration_fields[$name]['value'] = $value;
}
}
$error = apply_filters( 'affiliates_registration_error_validate', $error );
if ( !$error ) {
$userdata = array();
foreach( $registration_fields as $name => $field ) {
if ( $registration_fields[$name]['enabled'] ) {
$userdata[$name] = $registration_fields[$name]['value'];
}
}
// don't try to create a new user on multiple renderings
global $affiliate_user_id, $new_affiliate_registered, $stored_affiliate;
if ( !isset( $affiliate_user_id ) ) {
if ( !$is_logged_in ) {
// allow plugins to be aware of new user account being created
do_action( 'affiliates_before_register_affiliate', $userdata );
// create the affiliate user account
$affiliate_user_id = self::register_affiliate( $userdata );
$new_affiliate_registered = true;
do_action( 'affiliates_after_register_affiliate', $userdata );
} else {
$affiliate_user_id = $user->ID;
$new_affiliate_registered = true;
}
}
// register as affiliate
if ( !is_wp_error( $affiliate_user_id ) ) {
// add affiliate entry
$send = true;
if ( !isset( $stored_affiliate ) ) {
if ( $new_affiliate_registered ) {
$affiliate_id = self::store_affiliate( $affiliate_user_id, $userdata );
// update user including meta
self::update_affiliate_user( $affiliate_user_id, $userdata );
do_action( 'affiliates_stored_affiliate', $affiliate_id, $affiliate_user_id );
}
$stored_affiliate = true;
}
$is_widget = isset( $options['is_widget'] ) && ( $options['is_widget'] === true || $options['is_widget'] == 'true' );
$redirect = isset( $options['redirect'] ) && ( $options['redirect'] === true || $options['redirect'] == 'true' );
$redirect_url =
empty( $_REQUEST['redirect_to'] ) ?
apply_filters( 'affiliates_registration_login_redirect_url', get_site_url( get_current_blog_id(), 'wp-login.php?checkemail=confirm' ) ) :
$_REQUEST['redirect_to'];
if ( $redirect && !$is_widget && !headers_sent() ) {
wp_safe_redirect( $redirect_url );
exit();
} else {
$output .= '<p>' . __( 'Thanks for signing up!', AFFILIATES_PLUGIN_DOMAIN ) . '</p>';
if ( !$is_logged_in ) {
$output .= '<p>' . __( 'Please check your email for the confirmation link.', AFFILIATES_PLUGIN_DOMAIN ) . '</p>';
if ( $redirect && !$is_widget ) {
$output .= '<script type="text/javascript">window.location="' . esc_url( $redirect_url ) . '";</script>';
} else {
$output .= '<p>';
$output .= sprintf(
__( 'Log in <a href="%s">here</a>.', AFFILIATES_PLUGIN_DOMAIN ),
esc_url( apply_filters( 'affiliates_registration_login_redirect_url', get_site_url( get_current_blog_id(), 'wp-login.php?checkemail=confirm' ) ) )
);
$output .= '</p>';
}
} else {
if ( isset( $options['registered_profile_link_url'] ) ) {
$output .= '<p>';
$output .= '<a href="' . esc_url( $options['registered_profile_link_url'] ) . '">';
if ( isset( $options['registered_profile_link_text'] ) ) {
$output .= wp_filter_kses( $options['registered_profile_link_text'] );
} else {
$output .= __( 'Access your profile', AFFILIATES_PLUGIN_DOMAIN );
}
$output .= '</a>';
$output .= '</p>';
}
}
}
} else { // is_wp_error( $affiliate_user_id ), user registration failed
$error = true;
$wp_error = $affiliate_user_id;
if ( $wp_error->get_error_code() ) {
$errors = array();
$messages = array();
foreach ( $wp_error->get_error_codes() as $code ) {
$severity = $wp_error->get_error_data( $code );
foreach ( $wp_error->get_error_messages( $code ) as $error ) {
if ( 'message' == $severity ) {
$messages[] = $error;
} else {
$errors[] = $error;
}
}
}
if ( !empty( $errors ) ) {
$output .= '<div class="error">';
$output .= apply_filters( 'login_errors', implode( '<br />', $errors ) );
$output .= '</div>';
}
if ( !empty( $messages ) ) {
$output .= '<div class="message">';
$output .= apply_filters( 'login_messages', implode( '<br />', $messages ) );
$output .= '</div>';
}
}
}
}
}
// Registration form
if ( !$send ) {
if ( isset( $options['terms_post_id'] ) ) {
$terms_post = get_post( $options['terms_post_id'] );
if ( $terms_post ) {
$terms_post_link = '<a target="_blank" href="' . esc_url( get_permalink( $terms_post->ID ) ) . '">' . get_the_title( $terms_post->ID ) . '</a>';
$terms = sprintf(
apply_filters( 'affiliates_terms_post_link_text', __( 'By signing up, you indicate that you have read and agree to the %s.', AFFILIATES_PLUGIN_DOMAIN ) ),
$terms_post_link
);
}
}
$output .= '<div class="affiliates-registration" id="affiliates-registration">';
$output .= '<img id="affiliates-registration-throbber" src="' . AFFILIATES_PLUGIN_URL . 'images/affiliates-throbber.gif" style="display:none" />';
$output .= '<form id="affiliates-registration-form" method="post">';
$output .= '<div>';
$output .= apply_filters( 'affiliates_registration_before_fields', '' );
$output .= self::render_fields( $registration_fields );
$output .= apply_filters( 'affiliates_registration_after_fields', '' );
if ( isset( $terms ) ) {
$output .= '<div class="terms">' . $terms . '</div>';
}
$output .= Affiliates_Utility::captcha_get( $captcha );
$output .= wp_nonce_field( $nonce_action, $nonce, true, false );
if ( isset( $options['redirect_to'] ) ) {
$output .= '<input type="hidden" name="redirect_to" value="'. esc_url( $options['redirect_to'] ) . '" />';
}
$output .= '<div class="sign-up">';
$output .= '<input type="submit" name="' . $submit_name . '" value="'. self::$submit_button_label . '" />';
$output .= '</div>';
$output .= '</div>';
$output .= '</form>';
$output .= '</div>';
}
return $output;
}
/**
* Renders the registration form fields.
*
* @return string
*/
public static function render_fields( $registration_fields = null ) {
$output = '';
require_once AFFILIATES_CORE_LIB . '/class-affiliates-settings.php';
require_once AFFILIATES_CORE_LIB . '/class-affiliates-settings-registration.php';
if ( $registration_fields === null ) {
$registration_fields = Affiliates_Settings_Registration::get_fields();
}
foreach( $registration_fields as $name => $field ) {
if ( $field['enabled'] ) {
$output .= '<div class="field">';
$output .= '<label>';
$output .= stripslashes( $field['label'] );
$output .= ' ';
$type = isset( $field['type'] ) ? $field['type'] : 'text';
$readonly = is_user_logged_in() && ( ( $name == 'user_login' ) || ( $name == 'user_email' ) ) ? ' readonly="readonly" ' : '';
$output .= sprintf(
'<input type="%s" class="%s" name="%s" value="%s" %s %s />',
esc_attr( $type ),
esc_attr( $name ) . ( $field['required'] ? ' required ' : '' ),
esc_attr( $name ),
esc_attr( stripslashes( isset( $field['value'] ) ? $field['value'] : '' ) ),
$field['required'] ? ' required="required" ' : '',
$readonly
);
$output .= '</label>';
$output .= '</div>';
}
}
return $output;
}
/**
* Register a new affiliate user.
*
* @param array $userdata
* @return int|WP_Error Either user's ID or error on failure.
*/
public static function register_affiliate( $userdata ) {
$errors = new WP_Error();
$user_email = apply_filters( 'user_registration_email', $userdata['user_email'] );
if ( isset( $userdata['user_login'] ) ) {
$sanitized_user_login = sanitize_user( $userdata['user_login'] );
} else {
$sanitized_user_login = sanitize_user( $user_email );
}
// Check the username
if ( $sanitized_user_login == '' ) {
$errors->add( 'empty_username', __( '<strong>ERROR</strong>: Please enter a username.', AFFILIATES_PLUGIN_DOMAIN ) );
} elseif ( ! validate_username( $sanitized_user_login ) ) {
$errors->add( 'invalid_username', __( '<strong>ERROR</strong>: This username is invalid because it uses illegal characters. Please enter a valid username.', AFFILIATES_PLUGIN_DOMAIN ) );
$sanitized_user_login = '';
} elseif ( username_exists( $sanitized_user_login ) ) {
$errors->add( 'username_exists', __( '<strong>ERROR</strong>: This username is already registered, please choose another one.', AFFILIATES_PLUGIN_DOMAIN ) );
}
// Check the e-mail address
if ( $user_email == '' ) {
$errors->add( 'empty_email', __( '<strong>ERROR</strong>: Please type your e-mail address.', AFFILIATES_PLUGIN_DOMAIN ) );
} elseif ( ! is_email( $user_email ) ) {
$errors->add( 'invalid_email', __( '<strong>ERROR</strong>: The email address isn’t correct.', AFFILIATES_PLUGIN_DOMAIN ) );
$user_email = '';
} elseif ( email_exists( $user_email ) ) {
$errors->add( 'email_exists', __( '<strong>ERROR</strong>: This email is already registered, please choose another one.', AFFILIATES_PLUGIN_DOMAIN ) );
}
do_action( 'register_post', $sanitized_user_login, $user_email, $errors );
$errors = apply_filters( 'registration_errors', $errors, $sanitized_user_login, $user_email );
if ( $errors->get_error_code() ) {
return $errors;
}
// use user-provided password if present
if ( !empty( $userdata['password'] ) ) {
$user_pass = $userdata['password'];
} else {
$user_pass = wp_generate_password( AFFILIATES_REGISTRATION_PASSWORD_LENGTH, false );
}
$userdata['first_name'] = sanitize_text_field( $userdata['first_name'] );
$userdata['last_name'] = sanitize_text_field( $userdata['last_name'] );
$userdata['user_login'] = $sanitized_user_login;
$userdata['user_email'] = $user_email;
$userdata['password'] = $user_pass;
if ( !empty( $userdata['user_url'] ) ) {
$userdata['user_url'] = esc_url_raw( $userdata['user_url'] );
$userdata['user_url'] = preg_match( '/^(https?|ftps?|mailto|news|irc|gopher|nntp|feed|telnet):/is', $userdata['user_url'] ) ? $userdata['user_url'] : 'http://' . $userdata['user_url'];
}
// create affiliate entry
$user_id = self::create_affiliate( $userdata );
if ( ! $user_id ) {
$errors->add( 'registerfail', sprintf( __( '<strong>ERROR</strong>: Couldn’t register you... please contact the <a href="mailto:%s">webmaster</a> !' ), get_option( 'admin_email' ) ) );
return $errors;
}
update_user_option( $user_id, 'default_password_nag', true, true ); //Set up the Password change nag.
// notify new user
self::new_user_notification( $user_id, $user_pass );
return $user_id;
}
/**
* Updates an affiliate user.
*
* @access private
* @param array $userdata
* @return int|WP_Error Either user's ID or error on failure.
*/
public static function update_affiliate_user( $user_id, $userdata ) {
global $wpdb, $affiliates_update_affiliate_user;
if ( !isset( $affiliates_update_affiliate_user ) ) {
$affiliates_update_affiliate_user = true;
} else {
return;
}
$errors = new WP_Error();
if ( ( $user = get_user_by( 'id', $user_id ) ) && affiliates_user_is_affiliate( $user_id ) ) {
$new_password = false;
$user_email = apply_filters( 'user_registration_email', $userdata['user_email'] );
// Check the e-mail address
if ( $user_email == '' ) {
$errors->add( 'empty_email', __( '<strong>ERROR</strong>: Please type your e-mail address.', AFFILIATES_PLUGIN_DOMAIN ) );
} elseif ( ! is_email( $user_email ) ) {
$errors->add( 'invalid_email', __( '<strong>ERROR</strong>: The email address isn’t correct.', AFFILIATES_PLUGIN_DOMAIN ) );
$user_email = '';
} elseif ( $other_user_id = email_exists( $user_email ) ) {
if ( $other_user_id != $user_id ) {
$errors->add( 'email_exists', __( '<strong>ERROR</strong>: This email is already registered, please choose another one.', AFFILIATES_PLUGIN_DOMAIN ) );
}
}
if ( $errors->get_error_code() ) {
return $errors;
}
$userdata['first_name'] = sanitize_text_field( $userdata['first_name'] );
$userdata['last_name'] = sanitize_text_field( $userdata['last_name'] );
$userdata['user_email'] = $user_email;
if ( !empty( $userdata['user_url'] ) ) {
$userdata['user_url'] = esc_url_raw( $userdata['user_url'] );
$userdata['user_url'] = preg_match( '/^(https?|ftps?|mailto|news|irc|gopher|nntp|feed|telnet):/is', $userdata['user_url'] ) ? $userdata['user_url'] : 'http://' . $userdata['user_url'];
}
// update affiliate user and affiliate entry
$_userdata = array(
'ID' => $user_id,
'first_name' => esc_sql( $userdata['first_name'] ),
'last_name' => esc_sql( $userdata['last_name'] ),
'user_email' => esc_sql( $userdata['user_email'] ),
);
if ( !empty( $userdata['password'] ) ) {
// Don't pass the new password through wp_update_user as we risk
// sending headers again when wp_update_user() clears the cookies while
// the new password is set. Instead, we set the new password here and
// only update the other user data below.
$new_password = true;
wp_set_password( $userdata['password'], $user_id );
}
if ( isset( $userdata['user_url'] ) ) {
$_userdata['user_url'] = esc_sql( $userdata['user_url'] );
}
// update user and affiliate entry
$user_id = wp_update_user( $_userdata ); // if WP_Error it's returned below
if ( !is_wp_error( $user_id ) ) {
// add user meta from remaining fields
foreach( $userdata as $meta_key => $meta_value ) {
if ( !key_exists( $meta_key, $_userdata ) && ( !in_array( $meta_key, self::$skip_meta_fields) ) ) {
update_user_meta( $user_id, $meta_key, maybe_unserialize( $meta_value ) );
}
}
// update affiliate entry
$affiliate_ids = affiliates_get_user_affiliate( $user_id );
if ( $affiliate_id = array_shift( $affiliate_ids ) ) {
$affiliates_table = _affiliates_get_tablename( 'affiliates' );
$query = $wpdb->prepare(
"UPDATE $affiliates_table SET name = %s, email = %s WHERE affiliate_id = %d",
$_userdata['first_name'] . ' ' . $_userdata['last_name'],
$_userdata['user_email'],
intval( $affiliate_id )
);
if ( $wpdb->query( $query ) ) {
do_action( 'affiliates_updated_affiliate', $affiliate_id );
}
}
// @todo headers already sent notices with WC when password is changed ... for example
// wp_woocommerce_session_... cookie cannot be set - headers already sent by .../wp-content/themes/twentytwelve/header.php on line 13 in .../wp-content/plugins/woocommerce/includes/wc-core-functions.php on line 469
// below doesn't solve this and we don't want to force logout/login on password change anyway
// if ( $new_password ) {
// $current_url = ( is_ssl() ? 'https://' : 'http://' ) . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
// wp_redirect( wp_login_url( $current_url ) );
// exit;
// }
}
}
return $user_id;
}
/**
* Create an affiliate user.
*
* @param array $userdata
* @return int|WP_Error user ID or error
*/
public static function create_affiliate( $userdata ) {
$_userdata = array(
'first_name' => esc_sql( $userdata['first_name'] ),
'last_name' => esc_sql( $userdata['last_name'] ),
'user_login' => esc_sql( $userdata['user_login'] ),
'user_email' => esc_sql( $userdata['user_email'] ),
'user_pass' => esc_sql( $userdata['password'] )
);
if ( isset( $userdata['user_url'] ) ) {
$_userdata['user_url'] = esc_sql( $userdata['user_url'] );
}
global $create_affiliate_userdata;
$create_affiliate_userdata = $userdata;
$user_id = wp_insert_user( $_userdata );
if ( !is_wp_error( $user_id ) ) {
// add user meta from remaining fields
foreach( $userdata as $meta_key => $meta_value ) {
if ( !key_exists( $meta_key, $_userdata ) && ( !in_array( $meta_key, self::$skip_meta_fields) ) ) {
add_user_meta( $user_id, $meta_key, maybe_unserialize( $meta_value ) );
}
}
}
return $user_id;
}
/**
* Creates an affiliate entry and relates it to a user.
* Notifies site admin of affiliate registration.
*
* @param int $user_id user id
* @param array $userdata affiliate data
* @return if successful new affiliate's id, otherwise false
*/
public static function store_affiliate( $user_id, $userdata ) {
global $wpdb;
$result = false;
$affiliates_table = _affiliates_get_tablename( 'affiliates' );
$today = date( 'Y-m-d', time() );
$name = $userdata['first_name'] . " " . $userdata['last_name'];
$email = $userdata['user_email'];
$data = array(
'name' => esc_sql( $name ),
'email' => esc_sql( $email ),
'from_date' => esc_sql( $today ),
);
$formats = array( '%s', '%s', '%s' );
if ( $wpdb->insert( $affiliates_table, $data, $formats ) ) {
$affiliate_id = $wpdb->get_var( "SELECT LAST_INSERT_ID()" );
// create association
if ( $wpdb->insert(
_affiliates_get_tablename( 'affiliates_users' ),
array(
'affiliate_id' => $affiliate_id,
'user_id' => $user_id
),
array( '%d', '%d' )
) ) {
$result = $affiliate_id;
self::new_affiliate_notification( $user_id );
}
// hook
if ( !empty( $affiliate_id ) ) {
do_action( 'affiliates_added_affiliate', intval( $affiliate_id ) );
}
}
return $result;
}
/**
* Hooked on delete_user to mark affiliate as deleted.
* Note that the affiliate-user association is maintained.
* @param int $user_id
*/
public static function deleted_user( $user_id ) {
global $wpdb;
$affiliates_table = _affiliates_get_tablename( 'affiliates' );
$affiliates_users_table = _affiliates_get_tablename( 'affiliates_users' );
if ( $affiliate_user = $wpdb->get_row(
$wpdb->prepare(
"SELECT * FROM $affiliates_users_table WHERE user_id = %d",
intval( $user_id ) ) ) ) {
$affiliate_id = $affiliate_user->affiliate_id;
// do not mark the pseudo-affiliate as deleted: type != ...
$check = $wpdb->prepare(
"SELECT affiliate_id FROM $affiliates_table WHERE affiliate_id = %d AND (type IS NULL OR type != '" . AFFILIATES_DIRECT_TYPE . "')",
intval( $affiliate_id ) );
if ( $wpdb->query( $check ) ) {
$valid_affiliate = true;
}
if ( $valid_affiliate ) {
// mark the affiliate as deleted - will go through and also
// clean up the association even if the affiliate was already
// marked as deleted
$wpdb->query(
$query = $wpdb->prepare(
"UPDATE $affiliates_table SET status = 'deleted' WHERE affiliate_id = %d",
intval( $affiliate_id )
)
);
do_action( 'affiliates_deleted_affiliate', intval( $affiliate_id ) );
// the user is removed from the users table, it wouldn't make sense to maintain
// a dangling reference to a non-existent user so release the association as well
$wpdb->query(
$query = $wpdb->prepare(
"DELETE FROM $affiliates_users_table WHERE affiliate_id = %d AND user_id = %d",
intval( $affiliate_id ), intval( $user_id )
)
);
}
}
}
/**
* Notify the blog admin of a new affiliate.
*
* @param int $user_id User ID
*/
public static function new_affiliate_notification( $user_id ) {
$user = new WP_User( $user_id );
$user_login = stripslashes( $user->user_login );
$user_email = stripslashes( $user->user_email );
// The blogname option is escaped with esc_html on the way into the database in sanitize_option
// we want to reverse this for the plain text arena of emails.
$blogname = wp_specialchars_decode( get_option( 'blogname' ), ENT_QUOTES );
$message = sprintf( __( 'New affiliate registration on your site %s:', AFFILIATES_PLUGIN_DOMAIN ), $blogname ) . "\r\n\r\n";
$message .= sprintf( __( 'Username: %s', AFFILIATES_PLUGIN_DOMAIN ), $user_login ) . "\r\n\r\n";
$message .= sprintf( __( 'E-mail: %s', AFFILIATES_PLUGIN_DOMAIN ), $user_email ) . "\r\n";
if ( get_option( 'aff_notify_admin', true ) ) {
$params = array(
'user_id' => $user_id,
'user' => $user,
'username' => $user->user_login,
'site_login_url' => wp_login_url(),
'blogname' => $blogname
);
@wp_mail(
apply_filters( 'affiliates_admin_email', get_option( 'admin_email' ) ),
apply_filters( 'affiliates_new_affiliate_registration_subject', sprintf( __( '[%s] New Affiliate Registration', AFFILIATES_PLUGIN_DOMAIN ), $blogname ), $params ),
apply_filters( 'affiliates_new_affiliate_registration_message', $message, $params ),
apply_filters( 'affiliates_new_affiliate_registration_headers', '', $params )
);
}
}
/**
* Notify of new user creation for an affiliate.
*
* @param int $user_id User ID.
* @param string $plaintext_pass Optional. The user's plaintext password. Default empty.
*/
public static function new_user_notification( $user_id, $plaintext_pass = '' ) {
$user = get_userdata( $user_id );
$blogname = wp_specialchars_decode( get_option( 'blogname' ), ENT_QUOTES );
if ( !empty( $plaintext_pass ) ) {
if ( get_option( 'aff_notify_affiliate_user', 'yes' ) != 'no' ) {
$message = sprintf( __( 'Username: %s', AFFILIATES_PLUGIN_DOMAIN ), $user->user_login) . "\r\n";
$message .= sprintf( __( 'Password: %s', AFFILIATES_PLUGIN_DOMAIN ), $plaintext_pass ) . "\r\n";
$message .= wp_login_url() . "\r\n";
$params = array(
'user_id' => $user_id,
'user' => $user,
'username' => $user->user_login,
'password' => $plaintext_pass,
'site_login_url' => wp_login_url(),
'blogname' => $blogname
);
@wp_mail(
$user->user_email,
apply_filters( 'affiliates_new_affiliate_user_registration_subject', sprintf( __( '[%s] Your username and password', AFFILIATES_PLUGIN_DOMAIN ), $blogname ), $params ),
apply_filters( 'affiliates_new_affiliate_user_registration_message', $message, $params ),
apply_filters( 'affiliates_new_affiliate_user_registration_headers', '', $params )
);
}
}
}
}
Affiliates_Registration::init();