get("sessions", ["operatorid", "operatorname", "name", "status", "ended"], ["id" => $page1]); if ($livechat["status"] == 1) { $jakdb->update("checkstatus", ["typeo" => 0, "newo" => 0, "statuso" => time()], ["convid" => $page1]); } // reset the lastido session $_SESSION["activechatid"] = $page1; // Now this is a new chat and the operator comes from the a direct link (push notification, email) if (empty($livechat['operatorname']) && ($livechat['operatorid'] == 0 || $livechat['operatorid'] == JAK_USERID)) { $jakdb->update("checkstatus", ["newc" => 1, "operatorid" => JAK_USERID, "operator" => $jakuser->getVar("name"), "pusho" => $jakuser->getVar("push_notifications"), "statuso" => time()], ["convid" => $page1]); $jakdb->update("sessions", ["operatorid" => JAK_USERID, "operatorname" => $jakuser->getVar("name")], ["id" => $page1]); if (!empty($HD_ANSWERS) && is_array($HD_ANSWERS)) foreach ($HD_ANSWERS as $v) { if ($v["msgtype"] == 2 && $v["lang"] == $lang) { $phold = array("%operator%","%client%","%email%"); $replace = array($jakuser->getVar("name"), $livechat['name'], JAK_EMAIL); $message = str_replace($phold, $replace, $v["message"]); $jakdb->insert("transcript", [ "name" => $jakuser->getVar("name"), "message" => $message, "user" => JAK_USERID.'::'.$jakuser->getVar("username"), "operatorid" => JAK_USERID, "convid" => $page1, "class" => "admin", "time" => $jakdb->raw("NOW()")]); } } } // Remove the live preview file / fixed in 3.1.2 $livepreviewfile = APP_PATH.JAK_CACHE_DIRECTORY.'/livepreview'.$page1.'.txt'; if (file_exists($livepreviewfile)) { // Finally remove the file and start fresh unlink($livepreviewfile); } if (!$livechat) jak_redirect(BASE_URL); if (!jak_get_access("leads_all", $jakuser->getVar("permissions"), $jakuser->jakSuperadminaccess(JAK_USERID)) && JAK_USERID != $livechat['operatorid']) jak_redirect(BASE_URL); } // Title and Description $SECTION_TITLE = $jkl['g138']; $SECTION_DESC = ""; // Include the javascript file for results $js_file_footer = 'js_live.php'; // Call the template $template = 'live.php'; ?>