79 lines
2.2 KiB
PHP
79 lines
2.2 KiB
PHP
<?php
|
|
|
|
namespace Leadin\admin;
|
|
|
|
use Leadin\data\Portal_Options;
|
|
use Leadin\data\User_Metadata;
|
|
use Leadin\admin\client\Contacts_Api_Client;
|
|
|
|
|
|
/**
|
|
* Class responsible for controlling if review banner should show.
|
|
*/
|
|
class ReviewController {
|
|
|
|
const CONTACTS_CREATED_SINCE_ACTIVATION = 5;
|
|
const REVIEW_BANNER_INTRO_PERIOD = 15;
|
|
const DAYS_SINCE_LAST_FETCH = 1;
|
|
|
|
/**
|
|
* Checks if user has enough contacts created since plugin activation.
|
|
*/
|
|
public static function has_contacts_created_since_activation() {
|
|
if ( self::has_min_contacts() ) {
|
|
return true;
|
|
} elseif ( ! self::should_fetch_contacts() ) {
|
|
return false;
|
|
}
|
|
try {
|
|
User_Metadata::set_review_banner_last_call( time() );
|
|
$client = new Contacts_Api_Client();
|
|
$contacts = $client->get_contacts_from_timestamp( Portal_Options::get_activation_time() );
|
|
$has_min_contacts = count( $contacts->results ) >= self::CONTACTS_CREATED_SINCE_ACTIVATION;
|
|
User_Metadata::set_has_min_contacts( $has_min_contacts );
|
|
return $has_min_contacts;
|
|
} catch ( \Exception $e ) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Check to see if current time is after introductary period.
|
|
*/
|
|
public static function is_after_introductary_period() {
|
|
$activation_time = new \DateTime();
|
|
$activation_time->setTimestamp( Portal_Options::get_activation_time() );
|
|
$diff = $activation_time->diff( new \DateTime() );
|
|
return $diff->days >= self::REVIEW_BANNER_INTRO_PERIOD;
|
|
}
|
|
|
|
/**
|
|
* Check SKIP_REVIEW meta data for a user.
|
|
*/
|
|
public static function is_reviewed_or_skipped() {
|
|
return ! empty( User_Metadata::get_skip_review() );
|
|
}
|
|
|
|
/**
|
|
* Check if contacts have been fetched at the current day.
|
|
*/
|
|
public static function should_fetch_contacts() {
|
|
$last_call_ts = User_Metadata::get_review_banner_last_call();
|
|
if ( empty( $last_call_ts ) ) {
|
|
return true;
|
|
}
|
|
$last_call_date = new \DateTime();
|
|
$last_call_date->setTimestamp( $last_call_ts );
|
|
$diff = $last_call_date->diff( new \DateTime() );
|
|
return $diff->days >= self::DAYS_SINCE_LAST_FETCH;
|
|
}
|
|
|
|
/**
|
|
* Check if contacts minimun have already been fulfilled .
|
|
*/
|
|
public static function has_min_contacts() {
|
|
return User_Metadata::get_has_min_contacts();
|
|
}
|
|
|
|
}
|