class-user.php 14.7 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
<?php

if ( ! defined( 'ABSPATH' ) ) { 
    exit; // Exit if accessed directly
}

class WPF_User {
	

	public function __construct() {

		add_action( 'user_register', array( $this, 'user_register'), 20);
		add_action( 'password_reset', array( $this, 'password_reset'), 10, 2);

		add_action( 'wp_enqueue_scripts', array( $this, 'apply_tags_on_view'));

		add_action( 'updated_user_meta', array( $this, 'push_user_meta_single'), 10, 4 );
		add_action( 'added_user_meta', array( $this, 'push_user_meta_single'), 10, 4 );

		add_action( 'wpf_user_imported', array( $this, 'return_password' ), 10, 2 );

	}


	/**
	 * Used by create user to map post data for PHP versions less than 5.3
	 *
	 * @access public
	 * @return mixed
	 */

	public function map_user_meta( $a ) {
		return $a[0];
	}


	/**
	 * Syncs user tags in batches, with option to force-reload
	 *
	 * @access public
	 * @return bool
	 */

	public function sync_users($offset = 0, $number = 200, $force_reload = true) {

		$number = apply_filters( 'wpf_sync_batch_size', $number );

		// Set a local contact_id field for every user and import applied tags
		$args = array(
				'fields' 	=> array('ID'),
				'number' 	=> $number,
				'offset'	=> $offset,
				'orderby' 	=> 'ID',
				'order' 	=> 'DESC'
			);

		$users = get_users($args);

		foreach($users as $user) {
			$this->get_tags( $user->ID, $force_reload );
		}

		return true;

	}


	/**
	 * Triggered when a new user is registered. Creates the user in the CRM and stores contact ID
	 *
	 * @access public
	 * @return void
	 */

	public function user_register( $user_id, $post_data = null, $force = false ) {

		if(wp_fusion()->settings->get('create_users') != true && $force == false)
			return;

		if(empty($post_data) && !empty($_POST)) {

			$post_data = $_POST;

		} elseif(empty($post_data)) {

			// If nothing's been supplied, get meta data from DB
			$post_data = array_map( array($this, 'map_user_meta'), get_user_meta( $user_id ) );
		}

		// Get as much meta as we can from the DB
		$userdata = get_userdata( $user_id );
		$post_data['role'] = $userdata->roles[0];
		$post_data['first_name'] = $userdata->first_name;
		$post_data['last_name'] = $userdata->last_name;
		$post_data['user_email'] = $userdata->user_email;
		$post_data['user_url'] = $userdata->user_url;

		// See if user role is elligible for being created as a contact
		$valid_roles = wp_fusion()->settings->get( 'user_roles' );
		if( !empty( $valid_roles ) && !in_array( $post_data['role'], $valid_roles ) && $force == false)
				return;

		// If we're syncing passwords
		if(isset($post_data['pass1']) && !empty($post_data['pass1'])) {
			$post_data['user_pass'] = $post_data['pass1'];
			unset($post_data['pass1']);
		}

		// Allow outside modification of this data
		$post_data = apply_filters( 'wpf_user_register', $post_data, $user_id );

		// Allows for cancelling of registration via filter
		if($post_data == null)
			return;

		// Check if contact already exists in CRM
		$contact_id = $this->get_contact_id( $user_id );

		if($contact_id == false) {

			$contact_id = wp_fusion()->crm->add_contact( $post_data );
			update_user_meta($user_id, wp_fusion()->crm->slug . '_contact_id', $contact_id);

		} else {

			// If contact exists, update data and pull down anything new from the CRM
			wp_fusion()->crm->update_contact( $contact_id, $post_data );
			$this->pull_user_meta( $user_id );
			$this->get_tags( $user_id, true );

		}

		// Assign any tags specified in the WPF settings page
		$assign_tags = wp_fusion()->settings->get('assign_tags');
		if(!empty($assign_tags))
			$this->apply_tags( $assign_tags, $user_id );


		do_action('wpf_user_created', $user_id, $contact_id, $post_data);

		return $contact_id;


	}
	

	/**
	 * Triggered when a password is reset
	 *
	 * @access public
	 * @return void
	 */

	public function password_reset( $user, $new_pass ) {

		wp_fusion()->user->push_user_meta( $user->ID, array( 'user_pass' => $new_pass ) );

	}


	/**
	 * Gets contact ID from user ID
	 *
	 * @access public
	 * @return int Contact ID
	 */

	public function get_contact_id( $user_id, $force_update = false ) {

		if( $user_id == false )
			$user_id = get_current_user_id();

		$contact_id = get_user_meta( $user_id, wp_fusion()->crm->slug . '_contact_id', true );

		if( $force_update == true )
			$contact_id = null;

		// If contact ID is already set
		if( !empty( $contact_id ) )
			return $contact_id;

		$user = get_user_by( 'id', $user_id );

		// If no user email set, don't bother with an API call
		if(empty($user->user_email))
			return false;

		$contact_id = wp_fusion()->crm->get_contact_id( $user->user_email );

		if( $contact_id == false ) {
			delete_user_meta( $user_id, wp_fusion()->crm->slug . '_contact_id' );
			delete_user_meta( $user_id, wp_fusion()->crm->slug . '_tags' );
			return false;
		}

		update_user_meta( $user_id, wp_fusion()->crm->slug . '_contact_id', $contact_id );

		return $contact_id;

	}

	/**
	 * Gets user ID from contact ID
	 *
	 * @access public
	 * @return int User ID
	 */

	public function get_user_id( $contact_id ) {

		$users = get_users(array('meta_key' => wp_fusion()->crm->slug . '_contact_id', 'meta_value' => $contact_id, 'fields' => array('ID')));

		if(!empty($users)) {
			return $users[0]->ID;
		} else {
			return false;
		}

	}

	/**
	 * Checks to see if a user has a given tag
	 *
	 * @access public
	 * @return bool
	 */

	public function has_tag($tag, $user_id = false) {

		if( $user_id == false )
			$user_id = get_current_user_id();

		$user_tags = $this->get_tags($user_id);

		if(!is_array($user_tags))
			return false;

		// Get tag ID if label passed
		if(!is_numeric($tag))
			$tag = $this->get_tag_id( $tag );

		if(in_array($tag, $user_tags))
			return true;


		return false;

	}

	/**
	 * Gets all tags currently applied to the user
	 *
	 * @access public
	 * @return array Tags applied to the user
	 */

	public function get_tags( $user_id = false, $force_update = false ) {

		if( $user_id == false )
			$user_id = get_current_user_id();

		$user_tags = get_user_meta($user_id, wp_fusion()->crm->slug . '_tags', true);

		if(is_array($user_tags) && $force_update == false)
			return $user_tags;

		// If no tags
		if(empty($user_tags) && $force_update == false)
			return false;

		$contact_id = $this->get_contact_id( $user_id );

		// If contact doesn't exist in CRM
		if($contact_id == false) {
			update_user_meta($user_id, wp_fusion()->crm->slug . '_tags', false);
			return false;
		}

		$user_tags = wp_fusion()->crm->get_tags( $contact_id );

		update_user_meta($user_id, wp_fusion()->crm->slug . '_tags', $user_tags);

		do_action( 'wpf_tags_modified', $user_id, $user_tags );

		return $user_tags;

	}


	/**
	 * Gets the display label for a given user's tag
	 *
	 * @access public
	 * @return string Label for given tag
	 */

	public function get_tag_label( $tag_id ) {

		$available_tags = wp_fusion()->settings->get('available_tags');

		if(is_array($available_tags[$tag_id])) {

			return $available_tags[$tag_id]['label'];

		} else {

			return $available_tags[$tag_id];

		}

	}

	/**
	 * Gets tag ID from tag name
	 *
	 * @access public
	 * @return int ID
	 */

	public function get_tag_id($tag_name) {

		foreach(wp_fusion()->settings->get('available_tags') as $id => $data) {

			if(isset($data['label']) && $data['label'] == $tag_name) {
				return $id;
			} elseif ($id == $tag_name) {
				return $tag_name;
			}
			
		}

		return false;

	}


	/**
	 * Applies an array of tags to a given contact ID
	 *
	 * @access public
	 * @return bool
	 */

	public function apply_tags( $tags, $user_id = false ) {

		if( $user_id == false )
			$user_id = get_current_user_id();

		$contact_id = $this->get_contact_id( $user_id );

		// If no contact ID, don't try applying tags
		if($contact_id == false)
			return false;

		// Save locally before trying to update CRM
		$user_tags = $this->get_tags( $user_id );

		if(empty($user_tags))
			$user_tags = array();

		$user_tags = array_unique(array_merge($user_tags, $tags));

		update_user_meta($user_id, wp_fusion()->crm->slug . '_tags', $user_tags);

		wp_fusion()->crm->apply_tags( $tags, $contact_id );

		do_action('wpf_tags_applied', $user_id, $tags);
		do_action('wpf_tags_modified', $user_id, $user_tags );

		return true;

	}


	/**
	 * Removes an array of tags from a given contact ID
	 *
	 * @access public
	 * @return bool
	 */

	public function remove_tags( $tags, $user_id = false ) {

		if( $user_id == false )
			$user_id = get_current_user_id();

		$contact_id = $this->get_contact_id( $user_id );

		// If no contact ID, don't try applying tags
		if($contact_id == false)
			return false;

		// Save locally before trying to update CRM
		$user_tags = $this->get_tags( $user_id );

		$user_tags = array_diff($user_tags, $tags);

		update_user_meta($user_id, wp_fusion()->crm->slug . '_tags', $user_tags);

		wp_fusion()->crm->remove_tags( $tags, $contact_id );

		do_action('wpf_tags_removed', $user_id, $tags);
		do_action('wpf_tags_modified', $user_id, $user_tags );

		return true;

	}


	/**
	 * Gets and saves updated user meta from the CRM
	 *
	 * @access public
	 * @return void
	 */

	public function pull_user_meta( $user_id ) {

		$contact_id = $this->get_contact_id( $user_id );

		$user_meta = wp_fusion()->crm->load_contact( $contact_id );

		$user_meta = apply_filters( 'wpf_pulled_user_meta', $user_meta, $user_id );

		// If there was an error or no elligible fields
		if( $user_meta == false )
			return false;

		$this->set_user_meta( $user_id, $user_meta );

		do_action( 'wpf_user_updated', $user_id );

		return $user_meta;

	}

	/**
	 * Sets an array of meta data for the user
	 *
	 * @access public
	 * @return void
	 */

	public function set_user_meta( $user_id, $user_meta ) {

		foreach( $user_meta as $key => $value ) {

			if($key == 'user_pass' && !empty($value)) {
				wp_set_password( $value, $user_id );
			} elseif( $key == 'display_name' ) {
				wp_update_user( array( 'ID' => $user_id, 'display_name' => $value ) );
			} elseif( $key == 'user_email' ) {
				wp_update_user( array( 'ID' => $user_id, 'user_email' => $value ) );
				update_user_meta( $user_id, $key, $value );
			} else {
				update_user_meta( $user_id, $key, $value );
			}

			do_action( 'wpf_user_meta_updated', $user_id, $key, $value );

		}

	}


	/**
	 * Pushes a single user meta field to the CRM
	 *
	 * @access public
	 * @return void
	 */

	public function push_user_meta_single( $meta_id, $object_id, $meta_key, $_meta_value ) {

		if(wp_fusion()->settings->get('push_all_meta') != true)
			return;

		$this->push_user_meta($object_id, array($meta_key => $_meta_value));

	}


	/**
	 * Sends updated user meta to CRM
	 *
	 * @access public
	 * @return void
	 */

	public function push_user_meta( $user_id, $user_meta = false ) {

		if(wp_fusion()->settings->get('push') != true)
			return;

		// If we're submitting from a built in profile edit page
		if(isset($_POST['action']) && ($_POST['action'] == 'createuser' || $_POST['action'] == 'update') && $user_meta == false) {

			$user_meta = $_POST;

		} elseif (empty($user_meta)) {

			// If nothing's been supplied, get the latest from the DB
			$user_meta = array_map( array($this, 'map_user_meta'), get_user_meta( $user_id ) );
			$userdata = get_userdata( $user_id );
			$user_meta['role'] = $userdata->roles[0];

		}

		$user_meta = apply_filters( 'wpf_user_update', $user_meta, $user_id );

		$contact_id = $this->get_contact_id( $user_id );

		if(empty($contact_id))
			return;

		$result = wp_fusion()->crm->update_contact( $contact_id, $user_meta );

		if( $result == true )
			do_action( 'wpf_user_updated', $user_id );


	}

	/**
	 * Applies tags when a page is viewed
	 *
	 * @access public
	 * @return void
	 */

	public function apply_tags_on_view() {

		if( is_admin() || !is_singular() || !is_user_logged_in() )
			return;

		global $post;
		$wpf_settings = get_post_meta($post->ID, 'wpf-settings', true);

		if(isset($wpf_settings['apply_tags'])) {

			if(empty($wpf_settings['apply_delay'])) {

				$this->apply_tags($wpf_settings['apply_tags'], get_current_user_id());

			} else {

				wp_enqueue_script( 'wpf-apply-tags', WPF_DIR_URL . '/assets/js/wpf-apply-tags.js', array('jquery'), WP_FUSION_VERSION, true );

				$localize_data = array(
						'ajaxurl' 	 => admin_url( 'admin-ajax.php' ),
						'user_id' 	 => get_current_user_id(),
						'tags'		 => $wpf_settings['apply_tags'],
						'delay'		 => $wpf_settings['apply_delay']
					);

				wp_localize_script( 'wpf-apply-tags', 'wpf_ajax', $localize_data );

			}

		}


	}

	/**
	 * Imports a user
	 *
	 * @access public
	 * @return int User ID of newly created user
	 */

	public function import_user( $contact_id, $send_notification = false, $role = 'subscriber' ) {

		// First see if user already exists
		$users = get_users( array( 'meta_key' => wp_fusion()->crm->slug . '_contact_id', 'meta_value' => $contact_id, 'fields' => array('ID') ) );

		if(!empty($users)) {

			$this->pull_user_meta( $users[0]->ID );
			$this->get_tags( $users[0]->ID, true );

			return $users[0]->ID;

		}

		$user_meta = wp_fusion()->crm->load_contact( $contact_id );

		// See if user with matching email exists
		$user = get_user_by( 'email', $user_meta['user_email'] );

		if(is_object($user)) {

			$user_meta = apply_filters( 'wpf_pulled_user_meta', $user_meta, $user->ID );

			update_user_meta( $user->ID, wp_fusion()->crm->slug . '_contact_id', $contact_id );
			$this->set_user_meta( $user->ID, $user_meta );
			$this->get_tags( $user->ID, true );

			return $user->ID;

		}

		// Generate a password if one hasn't been supplied
		if(!isset($user_meta['user_pass']) || empty($user_meta['user_pass']))
			$user_meta['user_pass'] = wp_generate_password( $length = 12, $include_standard_special_chars = false );

		// If user name is set
		if(!isset($user_meta['user_login']))
			$user_meta['user_login'] = $user_meta['user_email'];

		if(!empty($role))
			$user_meta['role'] = $role;

		// Set contact ID
		$user_meta[ wp_fusion()->crm->slug . '_contact_id'] = $contact_id;

		// Apply filters
		$user_meta = apply_filters('wpf_import_user', $user_meta );

		// Prevent the default registration hook from running
		remove_action( 'user_register', array($this, 'user_register'), 20 );

		// Insert user and store meta
		$user_id = wp_insert_user( $user_meta );

		// Save any custom fields (wp insert user ignores them)
		$this->set_user_meta( $user_id, $user_meta );

		// Get tags
		$this->get_tags($user_id, true);

		// Send notification
		if($send_notification == true)
			wp_new_user_notification( $user_id, null, 'both' );

		do_action( 'wpf_user_imported', $user_id, $user_meta );

		return $user_id;


	}


	/**
	 * Returns generated password to CRM
	 *
	 * @access public
	 * @return void
	 */

	public function return_password( $user_id, $user_meta ) {

		if(wp_fusion()->settings->get('return_password') != true)
			return;

		wp_fusion()->crm->update_contact( $user_meta[wp_fusion()->crm->slug . '_contact_id'], array('user_pass' => $user_meta['user_pass']) );

	}


}