2007-05-10 21:31:10 +04:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* This file is part of Web Instant Messenger project.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2005-2007 Internet Services Ltd.
|
|
|
|
* All rights reserved. This program and the accompanying materials
|
|
|
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
|
|
* which accompanies this distribution, and is available at
|
|
|
|
* http://www.eclipse.org/legal/epl-v10.html
|
|
|
|
*
|
|
|
|
* Contributors:
|
|
|
|
* Evgeny Gryaznov - initial API and implementation
|
2007-07-09 01:56:16 +04:00
|
|
|
* Pavel Petroshenko - history search
|
2007-05-10 21:31:10 +04:00
|
|
|
*/
|
|
|
|
|
2007-07-09 01:56:16 +04:00
|
|
|
$connection_timeout = 30; # sec
|
|
|
|
|
2007-05-10 21:31:10 +04:00
|
|
|
$namecookie = "WEBIM_Name";
|
|
|
|
|
|
|
|
$state_queue = 0;
|
|
|
|
$state_waiting = 1;
|
|
|
|
$state_chatting = 2;
|
|
|
|
$state_closed = 3;
|
|
|
|
|
|
|
|
$kind_user = 1;
|
|
|
|
$kind_agent = 2;
|
2007-07-09 01:56:16 +04:00
|
|
|
$kind_for_agent = 3;
|
2007-05-10 21:31:10 +04:00
|
|
|
$kind_info = 4;
|
|
|
|
$kind_conn = 5;
|
|
|
|
$kind_events = 6;
|
|
|
|
|
2007-07-09 01:56:16 +04:00
|
|
|
$kind_to_string = array( $kind_user => "user", $kind_agent => "agent", $kind_for_agent => "hidden",
|
2007-05-10 21:31:10 +04:00
|
|
|
$kind_info => "inf", $kind_conn => "conn", $kind_events => "event" );
|
|
|
|
|
2007-07-09 01:56:16 +04:00
|
|
|
|
|
|
|
|
2007-05-10 21:31:10 +04:00
|
|
|
function next_token() {
|
|
|
|
return rand(99999,99999999);
|
|
|
|
}
|
|
|
|
|
|
|
|
function next_revision($link) {
|
|
|
|
perform_query("update chatrevision set id=LAST_INSERT_ID(id+1)",$link);
|
|
|
|
$val = mysql_insert_id($link);
|
|
|
|
return $val;
|
|
|
|
}
|
|
|
|
|
2007-07-09 01:56:16 +04:00
|
|
|
function post_message_($threadid,$kind,$message,$link,$from=null,$time=null) {
|
2007-05-10 21:31:10 +04:00
|
|
|
$query = sprintf(
|
2007-07-09 01:56:16 +04:00
|
|
|
"insert into chatmessage (threadid,ikind,tmessage,tname,dtmcreated) values (%s, %s,'%s',%s,%s)",
|
2007-05-10 21:31:10 +04:00
|
|
|
$threadid,
|
|
|
|
$kind,
|
2007-08-22 01:59:44 +04:00
|
|
|
quote_smart($message,$link),
|
|
|
|
$from ? "'".quote_smart($from,$link)."'" : "null",
|
2007-07-09 01:56:16 +04:00
|
|
|
$time ? "FROM_UNIXTIME($time)" : "CURRENT_TIMESTAMP" );
|
2007-05-10 21:31:10 +04:00
|
|
|
|
|
|
|
perform_query($query,$link);
|
2007-07-09 01:56:16 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
function post_message($threadid,$kind,$message,$from=null) {
|
|
|
|
$link = connect();
|
|
|
|
post_message_($threadid,$kind,$message,$link,$from);
|
2007-05-10 21:31:10 +04:00
|
|
|
mysql_close($link);
|
|
|
|
}
|
|
|
|
|
|
|
|
function prepare_html_message($text) {
|
|
|
|
$escaped_text = htmlspecialchars($text);
|
|
|
|
$text_w_links = preg_replace('/(http|ftp):\/\/\S*/','<a href="$0" target="_blank">$0</a>',$escaped_text);
|
|
|
|
$multiline = str_replace("\n","<br/>",$text_w_links);
|
|
|
|
return $multiline;
|
|
|
|
}
|
|
|
|
|
|
|
|
function message_to_html($msg) {
|
|
|
|
global $kind_to_string;
|
|
|
|
$message = "<span>".date("H:i:s",$msg['created'])."</span> ";
|
|
|
|
$kind = $kind_to_string{$msg['ikind']};
|
|
|
|
if( $msg['tname'] )
|
|
|
|
$message.= "<span class='n$kind'>".htmlspecialchars($msg['tname'])."</span>: ";
|
|
|
|
$message.= "<span class='m$kind'>".prepare_html_message($msg['tmessage'])."</span><br/>";
|
|
|
|
return $message;
|
|
|
|
}
|
|
|
|
|
|
|
|
function message_to_text($msg) {
|
|
|
|
global $kind_user, $kind_agent, $kind_info;
|
|
|
|
$time = date("H:i:s ",$msg['created']);
|
|
|
|
if($msg['ikind'] == $kind_user || $msg['ikind'] == $kind_agent) {
|
|
|
|
if( $msg['tname'] )
|
|
|
|
return $time.$msg['tname'].": ".$msg['tmessage']."\n";
|
|
|
|
else
|
|
|
|
return $time.$msg['tmessage']."\n";
|
|
|
|
} else if($msg['ikind'] == $kind_info ) {
|
|
|
|
return $time.$msg['tmessage']."\n";
|
|
|
|
} else {
|
|
|
|
return $time."[".$msg['tmessage']."]\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-09 01:56:16 +04:00
|
|
|
function get_messages($threadid,$meth,$isuser,&$lastid) {
|
|
|
|
global $kind_for_agent;
|
2007-05-10 21:31:10 +04:00
|
|
|
$link = connect();
|
|
|
|
|
|
|
|
$query = sprintf(
|
|
|
|
"select messageid,ikind,unix_timestamp(dtmcreated) as created,tname,tmessage from chatmessage ".
|
2007-07-09 01:56:16 +04:00
|
|
|
"where threadid = %s and messageid > %s %s order by messageid",
|
|
|
|
$threadid, $lastid, $isuser ? "and ikind <> $kind_for_agent" : "" );
|
2007-05-10 21:31:10 +04:00
|
|
|
|
|
|
|
$messages = array();
|
|
|
|
$result = mysql_query($query,$link) or die(' Query failed: ' .mysql_error().": ".$query);
|
|
|
|
|
|
|
|
while ($msg = mysql_fetch_array($result, MYSQL_ASSOC)) {
|
|
|
|
$message = ($meth == 'text') ? message_to_text($msg) : message_to_html($msg);
|
|
|
|
$messages[] = $message;
|
|
|
|
if( $msg['messageid'] > $lastid )
|
|
|
|
$lastid = $msg['messageid'];
|
|
|
|
}
|
|
|
|
|
|
|
|
mysql_free_result($result);
|
|
|
|
mysql_close($link);
|
|
|
|
return $messages;
|
|
|
|
}
|
|
|
|
|
|
|
|
function print_thread_mesages($threadid, $token, $lastid, $isuser,$format) {
|
|
|
|
global $webim_encoding, $webimroot;
|
2007-07-09 01:56:16 +04:00
|
|
|
$output = get_messages($threadid,"html",$isuser,$lastid);
|
2007-05-10 21:31:10 +04:00
|
|
|
|
|
|
|
if( $format == "xml" ) {
|
|
|
|
start_xml_output();
|
|
|
|
print("<thread lastID=\"$lastid\">");
|
|
|
|
foreach( $output as $msg ) {
|
|
|
|
print "<message>".myiconv($webim_encoding,"utf-8",escape_with_cdata($msg))."</message>\n";
|
|
|
|
}
|
|
|
|
print("</thread>");
|
|
|
|
} else if( $format == "html" ) {
|
|
|
|
start_html_output();
|
|
|
|
$url = "$webimroot/thread.php?act=refresh&thread=$threadid&token=$token&html=on&user=".($isuser?"true":"false");
|
|
|
|
|
|
|
|
print("<html><head>\n".
|
|
|
|
"<link rel=\"stylesheet\" type=\"text/css\" media=\"all\" href=\"$webimroot/chat.css\" />\n".
|
|
|
|
"<meta http-equiv=\"Refresh\" content=\"7; URL=$url&sn=11\">\n".
|
|
|
|
"<meta http-equiv=\"Pragma\" content=\"no-cache\">\n".
|
|
|
|
"</head>".
|
|
|
|
"<body bgcolor='#FFFFFF' text='#000000' link='#C28400' vlink='#C28400' alink='#C28400' marginwidth='0' marginheight='0' leftmargin='0' rightmargin='0' topmargin='0' bottommargin='0' onload=\"if( location.hash != '#aend' ){location.hash='#aend';}\">".
|
|
|
|
"<table width='100%' cellspacing='0' cellpadding='0' border='0'><tr><td valign='top' class='message'>" );
|
|
|
|
|
|
|
|
foreach( $output as $msg ) {
|
|
|
|
print $msg;
|
|
|
|
}
|
|
|
|
|
|
|
|
print(
|
|
|
|
"</td></tr></table><a name='aend'>".
|
|
|
|
"</body></html>" );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-08-22 01:59:44 +04:00
|
|
|
function get_user_name($name, $id="") {
|
|
|
|
global $presentable_name_pattern;
|
|
|
|
return str_replace("{id}", $id, str_replace("{name}", $name, $presentable_name_pattern));
|
|
|
|
}
|
|
|
|
|
2007-05-10 21:31:10 +04:00
|
|
|
function setup_chatview_for_user($thread,$level) {
|
2007-08-22 01:59:44 +04:00
|
|
|
global $page, $webimroot, $user_can_change_name;
|
2007-05-10 21:31:10 +04:00
|
|
|
$page = array();
|
|
|
|
$page['agent'] = false;
|
|
|
|
$page['user'] = true;
|
|
|
|
$page['canpost'] = true;
|
|
|
|
$nameisset = getstring("chat.default.username") != $thread['userName'];
|
|
|
|
$page['displ1'] = $nameisset ? "none" : "inline";
|
|
|
|
$page['displ2'] = $nameisset ? "inline" : "none";
|
|
|
|
$page['level'] = $level;
|
|
|
|
$page['ct.chatThreadId'] = $thread['threadid'];
|
|
|
|
$page['ct.token'] = $thread['ltoken'];
|
|
|
|
$page['ct.user.name'] = $thread['userName'];
|
2007-08-22 01:59:44 +04:00
|
|
|
$page['canChangeName'] = $user_can_change_name;
|
2007-05-10 21:31:10 +04:00
|
|
|
|
|
|
|
$page['ct.company.name'] = "Test company"; // TODO
|
|
|
|
$page['ct.company.chatLogoURL'] = ""; // TODO
|
|
|
|
|
|
|
|
$params = "thread=".$thread['threadid']."&token=".$thread['ltoken'];
|
|
|
|
$page['selfLink'] = "$webimroot/client.php?".$params."&level=".$level;
|
|
|
|
}
|
|
|
|
|
2007-08-22 01:59:44 +04:00
|
|
|
function setup_chatview_for_operator($thread,$operator) {
|
|
|
|
global $page, $webimroot, $company_logo_link, $company_name;
|
2007-05-10 21:31:10 +04:00
|
|
|
$page = array();
|
|
|
|
$page['agent'] = true;
|
|
|
|
$page['user'] = false;
|
|
|
|
$page['canpost'] = true;
|
|
|
|
$page['ct.chatThreadId'] = $thread['threadid'];
|
|
|
|
$page['ct.token'] = $thread['ltoken'];
|
2007-08-22 01:59:44 +04:00
|
|
|
$page['ct.user.name'] = get_user_name($thread['userName']);
|
|
|
|
|
|
|
|
$page['ct.company.name'] = $company_name;
|
|
|
|
$page['ct.company.chatLogoURL'] = $company_logo_link;
|
2007-07-09 01:56:16 +04:00
|
|
|
|
|
|
|
// TODO
|
|
|
|
$page['namePostfix'] = "";
|
2007-05-10 21:31:10 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
function is_ajax_browser($name,$ver,$useragent) {
|
|
|
|
if( $name == "opera" )
|
|
|
|
return $ver >= 8.02;
|
|
|
|
if( $name == "safari" )
|
|
|
|
return $ver >= 125;
|
|
|
|
if( $name == "msie" )
|
|
|
|
return $ver >= 5.5 && !strstr($useragent, "powerpc");
|
|
|
|
if( $name == "netscape" )
|
|
|
|
return $ver >= 7.1;
|
|
|
|
if( $name == "mozilla")
|
|
|
|
return $ver >= 1.4;
|
|
|
|
if( $name == "firefox")
|
|
|
|
return $ver >= 1.0;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
function is_old_browser($name,$ver) {
|
|
|
|
if( $name == "opera" )
|
|
|
|
return $ver < 7.0;
|
|
|
|
if( $name == "msie" )
|
|
|
|
return $ver < 5.0;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$knownAgents = array("opera","msie","safari","firefox","netscape","mozilla");
|
|
|
|
|
|
|
|
function get_remote_level($useragent) {
|
|
|
|
global $knownAgents;
|
|
|
|
$useragent = strtolower($useragent);
|
|
|
|
foreach( $knownAgents as $agent ) {
|
|
|
|
if( strstr($useragent,$agent) ) {
|
|
|
|
if( preg_match( "/".$agent."[\\s\/]?(\\d+(\\.\\d+)?)/", $useragent, $matches ) ) {
|
|
|
|
$ver = $matches[1];
|
|
|
|
|
|
|
|
if( is_ajax_browser($agent,$ver,$useragent) )
|
|
|
|
return "ajaxed";
|
|
|
|
else if( is_old_browser($agent,$ver) )
|
|
|
|
return "old";
|
|
|
|
|
|
|
|
return "simple";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return "simple";
|
|
|
|
}
|
|
|
|
|
2007-07-09 01:56:16 +04:00
|
|
|
function update_thread_access($threadid, $params, $link) {
|
|
|
|
$clause = "";
|
|
|
|
foreach( $params as $k => $v ) {
|
|
|
|
if( strlen($clause) > 0 )
|
|
|
|
$clause .= ", ";
|
|
|
|
$clause .= $k."=".$v;
|
|
|
|
}
|
|
|
|
perform_query(
|
|
|
|
"update chatthread set $clause ".
|
|
|
|
"where threadid = ".$threadid,$link);
|
|
|
|
}
|
|
|
|
|
|
|
|
function get_access_time($threadid, $isuser, $link) {
|
|
|
|
return select_one_row(sprintf(
|
|
|
|
"select unix_timestamp(%s) as lastping, ".
|
|
|
|
"unix_timestamp(CURRENT_TIMESTAMP) as current ".
|
|
|
|
"from chatthread where threadid = %s",
|
|
|
|
$isuser ? "lastpinguser" : "lastpingagent",
|
|
|
|
$threadid), $link);
|
|
|
|
}
|
|
|
|
|
2007-05-10 21:31:10 +04:00
|
|
|
function ping_thread($thread, $isuser) {
|
2007-07-09 01:56:16 +04:00
|
|
|
global $kind_for_agent, $state_chatting, $state_waiting, $kind_conn, $connection_timeout;
|
2007-05-10 21:31:10 +04:00
|
|
|
$link = connect();
|
2007-07-09 01:56:16 +04:00
|
|
|
$params = array(($isuser ? "lastpinguser" : "lastpingagent") => "CURRENT_TIMESTAMP" );
|
|
|
|
|
|
|
|
$access = get_access_time($thread['threadid'], !$isuser, $link);
|
|
|
|
if( $access['lastping'] > 0 && abs($access['current']-$access['lastping']) > $connection_timeout ) {
|
|
|
|
$params[$isuser ? "lastpingagent" : "lastpinguser"] = "0";
|
|
|
|
if( !$isuser ) {
|
|
|
|
$message_to_post = getstring_("chat.status.user.dead", $thread['locale']);
|
|
|
|
post_message_($thread['threadid'],$kind_for_agent,$message_to_post,$link,null,$access['lastping']+$connection_timeout);
|
|
|
|
} else if( $thread['istate'] == $state_chatting ) {
|
|
|
|
|
|
|
|
$message_to_post = getstring_("chat.status.operator.dead", $thread['locale']);
|
|
|
|
post_message_($thread['threadid'],$kind_conn,$message_to_post,$link,null,$access['lastping']+$connection_timeout);
|
|
|
|
$params['istate'] = $state_waiting;
|
|
|
|
commit_thread($thread['threadid'], $params, $link);
|
|
|
|
mysql_close($link);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2007-05-10 21:31:10 +04:00
|
|
|
|
2007-07-09 01:56:16 +04:00
|
|
|
update_thread_access($thread['threadid'], $params, $link);
|
2007-05-10 21:31:10 +04:00
|
|
|
mysql_close($link);
|
|
|
|
}
|
|
|
|
|
|
|
|
function commit_thread($threadid,$params,$link) {
|
2007-07-09 01:56:16 +04:00
|
|
|
$query = "update chatthread set lrevision = ".next_revision($link).", dtmmodified = CURRENT_TIMESTAMP";
|
2007-05-10 21:31:10 +04:00
|
|
|
foreach( $params as $k => $v ) {
|
|
|
|
$query .= ", ".$k."=".$v;
|
|
|
|
}
|
|
|
|
$query .= " where threadid = ".$threadid;
|
|
|
|
|
|
|
|
perform_query($query,$link);
|
|
|
|
}
|
|
|
|
|
|
|
|
function rename_user($thread, $newname) {
|
|
|
|
global $kind_events;
|
|
|
|
|
|
|
|
$link = connect();
|
|
|
|
commit_thread( $thread['threadid'], array('userName' => "'".mysql_real_escape_string($newname)."'"), $link);
|
|
|
|
mysql_close($link);
|
|
|
|
|
|
|
|
if( $thread['userName'] != $newname ) {
|
|
|
|
post_message($thread['threadid'],$kind_events,
|
|
|
|
getstring2_("chat.status.user.changedname",array($thread['userName'], $newname), $thread['locale']));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function close_thread($thread,$isuser) {
|
|
|
|
global $state_closed, $kind_events;
|
|
|
|
|
|
|
|
if( $thread['istate'] != $state_closed ) {
|
|
|
|
$link = connect();
|
|
|
|
commit_thread( $thread['threadid'], array('istate' => $state_closed), $link);
|
|
|
|
mysql_close($link);
|
|
|
|
}
|
|
|
|
|
|
|
|
$message = $isuser ? getstring2_("chat.status.user.left", array($thread['userName']), $thread['locale'])
|
|
|
|
: getstring2_("chat.status.operator.left", array($thread['agentName']), $thread['locale']);
|
|
|
|
post_message($thread['threadid'], $kind_events, $message);
|
|
|
|
}
|
|
|
|
|
|
|
|
function create_thread($username,$remote,$referer,$lang) {
|
|
|
|
$link = connect();
|
|
|
|
|
|
|
|
$query = sprintf(
|
2007-08-22 01:59:44 +04:00
|
|
|
"insert into chatthread (userName,"."ltoken,remote,referer,lrevision,locale,dtmcreated,dtmmodified) values ".
|
|
|
|
"('%s',"."%s,'%s','%s',%s,'%s',CURRENT_TIMESTAMP,CURRENT_TIMESTAMP)",
|
2007-05-10 21:31:10 +04:00
|
|
|
mysql_real_escape_string($username),
|
|
|
|
next_token(),
|
|
|
|
mysql_real_escape_string($remote),
|
|
|
|
mysql_real_escape_string($referer),
|
|
|
|
next_revision($link),
|
|
|
|
mysql_real_escape_string($lang) );
|
|
|
|
|
|
|
|
perform_query($query,$link);
|
|
|
|
$id = mysql_insert_id($link);
|
|
|
|
|
|
|
|
$newthread = select_one_row("select * from chatthread where threadid = ". $id, $link );
|
|
|
|
mysql_close($link);
|
|
|
|
return $newthread;
|
|
|
|
}
|
|
|
|
|
2007-07-09 01:56:16 +04:00
|
|
|
function do_take_thread($threadid,$operatorName) {
|
2007-05-10 21:31:10 +04:00
|
|
|
global $state_chatting;
|
|
|
|
$link = connect();
|
|
|
|
commit_thread( $threadid,
|
|
|
|
array("istate" => $state_chatting,
|
2007-07-09 01:56:16 +04:00
|
|
|
"agentName" => "'".mysql_real_escape_string($operatorName)."'"), $link);
|
2007-05-10 21:31:10 +04:00
|
|
|
mysql_close($link);
|
|
|
|
}
|
|
|
|
|
|
|
|
function reopen_thread($threadid) {
|
2007-07-09 01:56:16 +04:00
|
|
|
global $state_queue,$state_waiting,$state_chatting,$state_closed,$kind_events;
|
2007-05-10 21:31:10 +04:00
|
|
|
$thread = thread_by_id($threadid);
|
|
|
|
|
|
|
|
if( !$thread )
|
|
|
|
return FALSE;
|
|
|
|
|
2007-07-09 01:56:16 +04:00
|
|
|
if( $thread['istate'] == $state_closed )
|
|
|
|
return FALSE;
|
|
|
|
|
2007-05-10 21:31:10 +04:00
|
|
|
if( $thread['istate'] != $state_chatting && $thread['istate'] != $state_queue ) {
|
|
|
|
$link = connect();
|
|
|
|
commit_thread( $threadid,
|
2007-07-09 01:56:16 +04:00
|
|
|
array("istate" => $state_waiting ), $link);
|
2007-05-10 21:31:10 +04:00
|
|
|
mysql_close($link);
|
|
|
|
}
|
|
|
|
|
|
|
|
post_message($thread['threadid'], $kind_events, getstring_("chat.status.user.reopenedthread", $thread['locale']));
|
|
|
|
return $thread;
|
|
|
|
}
|
|
|
|
|
|
|
|
function take_thread($thread,$operator) {
|
2007-07-09 01:56:16 +04:00
|
|
|
global $state_queue, $state_waiting, $state_chatting, $kind_events, $home_locale;
|
2007-05-10 21:31:10 +04:00
|
|
|
|
|
|
|
$state = $thread['istate'];
|
|
|
|
$threadid = $thread['threadid'];
|
|
|
|
$message_to_post = "";
|
|
|
|
|
2007-07-09 01:56:16 +04:00
|
|
|
$operatorName = ($thread['locale'] == $home_locale) ? $operator['vclocalename'] : $operator['vccommonname'];
|
|
|
|
|
2007-05-10 21:31:10 +04:00
|
|
|
if( $state == $state_queue || $state == $state_waiting) {
|
2007-07-09 01:56:16 +04:00
|
|
|
do_take_thread($threadid, $operatorName);
|
|
|
|
|
|
|
|
if( $state == $state_waiting ) {
|
|
|
|
$message_to_post = getstring2_("chat.status.operator.changed", array($operatorName,$thread['agentName']), $thread['locale']);
|
|
|
|
} else {
|
|
|
|
$message_to_post = getstring2_("chat.status.operator.joined", array($operatorName), $thread['locale']);
|
|
|
|
}
|
2007-05-10 21:31:10 +04:00
|
|
|
} else if( $state == $state_chatting ) {
|
2007-07-09 01:56:16 +04:00
|
|
|
if( $operatorName != $thread['agentName'] ) {
|
|
|
|
do_take_thread($threadid, $operatorName);
|
|
|
|
$message_to_post = getstring2_("chat.status.operator.changed", array($operatorName, $thread['agentName']), $thread['locale']);
|
2007-05-10 21:31:10 +04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
die("cannot take thread");
|
|
|
|
}
|
|
|
|
|
|
|
|
if( $message_to_post )
|
|
|
|
post_message($threadid,$kind_events,$message_to_post);
|
|
|
|
}
|
|
|
|
|
2007-07-09 01:56:16 +04:00
|
|
|
function check_for_reassign($thread,$operator) {
|
|
|
|
global $state_waiting, $home_locale, $kind_events;
|
|
|
|
$operatorName = ($thread['locale'] == $home_locale) ? $operator['vclocalename'] : $operator['vccommonname'];
|
|
|
|
if( $thread['istate'] == $state_waiting &&
|
|
|
|
( $thread['agentName'] == $operatorName )) {
|
|
|
|
do_take_thread($thread['threadid'], $operatorName);
|
|
|
|
$message_to_post = getstring2_("chat.status.operator.changed", array($operatorName,$thread['agentName']), $thread['locale']);
|
|
|
|
post_message($thread['threadid'],$kind_events,$message_to_post);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-05-10 21:31:10 +04:00
|
|
|
function thread_by_id($id) {
|
|
|
|
$link = connect();
|
|
|
|
$thread = select_one_row("select * from chatthread where threadid = ". $id, $link );
|
|
|
|
mysql_close($link);
|
|
|
|
return $thread;
|
|
|
|
}
|
|
|
|
|
2007-08-22 01:59:44 +04:00
|
|
|
function visitor_from_request() {
|
|
|
|
global $namecookie;
|
|
|
|
$userName = isset($_COOKIE[$namecookie]) ? $_COOKIE[$namecookie] : getstring("chat.default.username");
|
|
|
|
|
|
|
|
return array( 'name' => $userName );
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|