namespace MO_CAW\Common\Functionality;
use MO_CAW\Common\Constants;
use MO_CAW\Common\DB_Utils;
class MO_User
{
public function __construct()
{
}
public static function does_user_has_license()
{
return true;
}
public static function is_user_logged_in()
{
$cD = Constants::PLAN_NAMESPACE . "\Utils";
$ql = base64_encode("mo_caw_user_details");
$Wi = DB_Utils::get_option($ql, array());
$Fq = $cD::miniorange_encoder("mo_caw_customer_logged_in");
$xM = $Wi[$Fq] ?? false;
if (!$xM) {
goto sr;
}
$xM = $cD::miniorange_decoder($xM);
sr:
return "Logged in" === $xM ? true : false;
}
public static function contact_us($XI, $T6, $kl, $f1)
{
global $current_user;
$cD = Constants::PLAN_NAMESPACE . "\Utils";
wp_get_current_user();
$ql = base64_encode("mo_caw_user_details");
$Wi = DB_Utils::get_option($ql, array());
$Hk = '';
$HS = '';
if (!$Wi) {
goto EP;
}
$Hk = $cD::miniorange_encoder("mo_caw_customer_id");
$HS = $cD::miniorange_encoder("mo_caw_customer_api_key");
EP:
$a8 = !empty($Wi[$Hk]) ? $cD::miniorange_decoder($Wi[$Hk]) : Constants::DEFAULT_CUSTOMER_KEY;
$jE = !empty($Wi[$HS]) ? $cD::miniorange_decoder($Wi[$HS]) : Constants::DEFAULT_API_KEY;
$P9 = time();
$K6 = Constants::HOST_NAME . Constants::SEND_NOTIFICATION_API;
$WB = $a8 . $P9 . $jE;
$Hn = hash("sha2", $WB);
$kG = $XI;
$Bx = Constants::PLAN_NAME . $cD::get_version_number();
$kl = "[Connect to External APIs | Custom API for WP : " . $Bx . "] " . $kl;
$pf = isset($_SERVER["SERVER_NAME"]) ? sanitize_text_field(wp_unslash($_SERVER["SERVER_NAME"])) : '';
$vE = "<div >Hello, <br><br>First Name :" . $current_user->user_firstname . "<br><br>Last Name :" . $current_user->user_lastname . " <br><br>Company :<a href="" . $pf . "" target="_blank" >" . $pf . "</a><br><br>Phone Number :" . $T6 . "<br><br>Email :<a href="mailto:" . $kG . "" target="_blank">" . $kG . "</a><br><br>Query :" . $kl . "</div>";
$tc = array("customerKey" => $a8, "sendEmail" => true, "email" => array("customerKey" => $a8, "fromEmail" => $kG, "bccEmail" => "info@xecurify.com", "fromName" => "miniOrange", "toEmail" => "apisupport@xecurify.com", "toName" => "apisupport@xecurify.com", "subject" => $f1, "content" => $vE));
$rU = wp_json_encode($tc, JSON_UNESCAPED_SLASHES);
$Ug = array("Content-Type" => Constants::JSON_HEADER_NAME);
$Ug["Customer-Key"] = $a8;
$Ug["Timestamp"] = $P9;
$Ug["Authorization"] = $Hn;
return $cD::send_request_to_miniorange($Ug, true, $rU, array(), false, $K6);
}
public static function create_and_store_customer($XI, $iD)
{
$BY = self::create_customer($XI, $iD);
$tD = json_decode($BY, true);
if (!(json_last_error() === JSON_ERROR_NONE)) {
goto UW;
}
$BY = $tD;
UW:
$nm = array();
if (is_array($BY) && isset($BY["status"])) {
goto Bd;
}
$nm["message"] = "Customer registration failed. Please try again.";
goto fb;
Bd:
if (Constants::SUCCESS_STATUS === $BY["status"]) {
goto yt;
}
if (Constants::TRANSACTION_LIMIT_EXCEEDED_STATUS === $BY["status"]) {
goto W4;
}
if (Constants::CUSTOMER_USERNAME_ALREADY_EXISTS_STATUS === $BY["status"]) {
goto Px;
}
$nm["message"] = $BY["message"];
goto CC;
yt:
$nm = $BY;
goto CC;
W4:
$nm["message"] = "Too many attempts. Please try after some time.";
goto CC;
Px:
$nm["message"] = "User already exists with this email. Please try with a different email.";
CC:
fb:
return wp_json_encode($nm);
}
public static function create_customer($XI, $iD)
{
$cD = Constants::PLAN_NAMESPACE . "\Utils";
$K6 = Constants::HOST_NAME . Constants::CUSTOMER_ADD_API;
$tc = array("email" => $XI, "password" => $iD, "areaOfInterest" => "Custom Api WP");
$rU = wp_json_encode($tc);
return $cD::send_request_to_miniorange(array(), false, $rU, array(), false, $K6);
}
public static function verify_and_store_customer($XI, $iD)
{
$cD = Constants::PLAN_NAMESPACE . "\Utils";
$ck = self::get_customer_key($XI, $iD);
$tD = json_decode($ck, true);
if (!(json_last_error() === JSON_ERROR_NONE)) {
goto EK;
}
$ck = $tD;
EK:
if (!(is_array($ck) && isset($ck["status"]) && Constants::SUCCESS_STATUS === $ck["status"])) {
goto WE;
}
$ql = base64_encode("mo_caw_user_details");
DB_Utils::delete_option($ql);
$Wi = array();
$mh = base64_encode("mo_caw_customer_token");
$Wi[$mh] = base64_encode($ck["token"]);
DB_Utils::update_option($ql, $Wi);
$Fq = array("mo_caw_customer_email", "mo_caw_customer_logged_in", "mo_caw_customer_id", "mo_caw_customer_api_key");
$LD = array($XI, "Logged in", $ck["id"], $ck["apiKey"]);
$gs = count($Fq);
$Nm = 0;
DS:
if (!($Nm < $gs)) {
goto Yx;
}
$Wi[$cD::miniorange_encoder($Fq[$Nm])] = $cD::miniorange_encoder($LD[$Nm]);
fB:
$Nm++;
goto DS;
Yx:
DB_Utils::update_option($ql, $Wi);
DB_Utils::update_option("mo_caw_user_display_details", array("user_email" => $XI, "user_id" => $ck["id"]));
WE:
return wp_json_encode($ck);
}
public static function get_customer_key($XI, $iD)
{
$cD = Constants::PLAN_NAMESPACE . "\Utils";
$K6 = Constants::HOST_NAME . Constants::CUSTOMER_KEY_API;
$tc = array("email" => $XI, "password" => $iD);
$rU = wp_json_encode($tc);
return $cD::send_request_to_miniorange(array(), false, $rU, array(), false, $K6);
}
}
© 2023 Quttera Ltd. All rights reserved.