Cheetah
actions.inc.php
Go to the documentation of this file.
1 <?php
2 
8 $sId = isset($_REQUEST['id']) ? process_db_input($_REQUEST['id']) : "";
9 $sNick = isset($_REQUEST['nick']) ? process_db_input($_REQUEST['nick']) : "";
10 $sPassword = isset($_REQUEST['password']) ? process_db_input($_REQUEST['password']) : "";
11 $sType = isset($_REQUEST['type']) ? process_db_input($_REQUEST['type']) : "";
12 $sOnline = isset($_REQUEST['online']) ? process_db_input($_REQUEST['online']) : USER_STATUS_ONLINE;
13 
14 $sSmileset = isset($_REQUEST['smileset']) ? process_db_input($_REQUEST['smileset']) : "";
15 $sSender = $_REQUEST['sender'] ? process_db_input($_REQUEST['sender']) : "";
16 $sRcp = $_REQUEST['recipient'] ? (int)$_REQUEST['recipient'] : "";
17 $sMessage = isset($_REQUEST['message']) ? process_db_input($_REQUEST['message']) : "";
18 
19 $iRoomId = isset($_REQUEST['roomId']) ? (int)$_REQUEST['roomId'] : 0;
20 $sRoom = isset($_REQUEST['room']) ? process_db_input($_REQUEST['room']) : "";
21 $sDesc = isset($_REQUEST['desc']) ? process_db_input($_REQUEST['desc']) : "";
22 
23 $sParamName = isset($_REQUEST['param']) ? process_db_input($_REQUEST['param']) : "";
24 $sParamValue = isset($_REQUEST['value']) ? process_db_input($_REQUEST['value']) : "";
25 
26 $sSkin = isset($_REQUEST['skin']) ? process_db_input($_REQUEST['skin']) : "";
27 $sLanguage = isset($_REQUEST['language']) ? process_db_input($_REQUEST['language']) : "english";
28 
29 switch ($sAction) {
30  case 'getPlugins':
31  $sFolder = isset($_REQUEST["app"]) && $_REQUEST["app"] == "admin" ? "/pluginsAdmin/" : "/plugins/";
32  $sContents = "";
33  $sPluginsPath = $sModulesPath . $sModule . $sFolder;
34  if(is_dir($sPluginsPath)) {
35  if($rDirHandle = opendir($sModulesPath . $sModule . $sFolder))
36  while(false !== ($sPlugin = readdir($rDirHandle)))
37  if(strpos($sPlugin, ".swf") === strlen($sPlugin)-4)
38  $sContents .= parseXml(array(1 => '<plugin><![CDATA[#1#]]></plugin>'), $sModulesUrl . $sModule . $sFolder . $sPlugin);
39  closedir($rDirHandle);
40  }
41  $sContents = makeGroup($sContents, "plugins");
42  break;
43 
47  case 'getSkins':
48  $sContents = printFiles($sModule, "skins", false, true);
49  break;
50 
54  case 'setSkin':
55  setCurrentFile($sModule, $sSkin, "skins");
56  break;
57 
61  case 'getLanguages':
62  $sContents = printFiles($sModule, "langs", false, true);
63  break;
64 
68  case 'setLanguage':
70  break;
71 
75  case 'config':
76  $sFileName = $sModulesPath . $sModule . "/xml/config.xml";
77  $rHandle = fopen($sFileName, "rt");
78  $sContents = fread($rHandle, filesize($sFileName)) ;
79  fclose($rHandle);
80 
81  $iFileSize = (int)getSettingValue($sModule, "fileSize");
82  $iMaxFileSize = min((ini_get('upload_max_filesize') + 0), (ini_get('post_max_size') + 0), $iFileSize);
83  $sContents = str_replace("#fileMaxSize#", $iMaxFileSize, $sContents);
84  $sContents = str_replace("#userVideo#", getUserVideoLink(), $sContents);
85  $sContents = str_replace("#userMusic#", getUserMusicLink(), $sContents);
86  $sContents = str_replace("#soundsUrl#", $sSoundsUrl, $sContents);
87  $sContents = str_replace("#smilesetsUrl#", $sSmilesetsUrl, $sContents);
88  $sContents = str_replace("#filesUrl#", $sFilesUrl, $sContents);
89  $sContents = str_replace("#useServer#", useServer() ? TRUE_VAL : FALSE_VAL, $sContents);
90  $sContents = str_replace("#serverUrl#", getRMSUrl($sServerApp), $sContents);
91  $sContents = str_replace("#loginUrl#", $sRootURL . "member.php", $sContents);
92  break;
93 
94  case 'RayzFontSet':
95  $sKey = isset($_REQUEST['key']) ? $_REQUEST['key'] : "";
96  $sValue = isset($_REQUEST['value']) ? $_REQUEST['value'] : "";
97  if(empty($sKey) || $sValue == "") break;
98  setCookie("RayzFont" . $sKey, $sValue, time() + 31536000);
99  break;
100 
101  case 'RayzFontGet':
102  $aSettings = array (
103  8 => '<settings bold="#1#" italic="#2#" underline="#3#" color="#4#" font="#5#" size="#6#" volume="#7#" muted="#8#" />'
104  );
105  $sContents = parseXml($aSettings, $_COOKIE["RayzFontbold"], $_COOKIE["RayzFontitalic"], $_COOKIE["RayzFontunderline"], $_COOKIE["RayzFontcolor"], $_COOKIE["RayzFontfont"], $_COOKIE["RayzFontsize"], $_COOKIE["RayzFontvolume"], $_COOKIE["RayzFontmuted"]);
106  break;
107 
108  case 'RzGetBlockingUsers':
109  $bBlocking = true;
110  //break shouldn't be here
111  case 'RzGetBlockedUsers':
112  if(!isset($bBlocking))
113  $bBlocking = false;
114  $aUsers = getBlockingList($sId, $bBlocking);
115  $sContents = parseXml($aXmlTemplates['result'], implode(",", $aUsers));
116  break;
117 
118  case 'RzSetBlocked':
119  $sUser = isset($_REQUEST['user']) ? process_db_input($_REQUEST['user']) : "";
120  $bBlocked = isset($_REQUEST['blocked']) ? $_REQUEST['blocked'] == TRUE_VAL : false;
121  blockUser($sId, $sUser, $bBlocked);
122  break;
123 
124  case 'RayzGetMemberships':
125  $aMemberships = rzGetMemberships();
126 
127  $sMemberships = "";
128  foreach($aMemberships as $sId => $sName)
129  $sMemberships .= rzGetMembershipValues($sId, $sName);
130 
132  $sContents .= makeGroup($sMemberships, "memberships");
133  break;
134 
135  case 'RayzSetMembershipSetting':
136  $sKey = isset($_REQUEST['key']) ? process_db_input($_REQUEST['key']) : "";
137  $sValue = isset($_REQUEST['value']) ? process_db_input($_REQUEST['value']) : "";
138  $aKeys = getArray("SELECT `keys`.`ID` AS `KeyID`, `values`.`ID` AS `ValueID` FROM `" . MODULE_DB_PREFIX . "MembershipsSettings` AS `keys` LEFT JOIN `" . MODULE_DB_PREFIX . "Memberships` AS `values` ON `keys`.`ID`=`values`.`Setting` AND `values`.`Membership`='" . $sId . "' WHERE `keys`.`Name`='" . $sKey . "' LIMIT 1");
139  if(empty($aKeys['KeyID'])) {
140  $sContents = parseXml($aXmlTemplates['result'], "Error saving setting.", FAILED_VAL);
141  break;
142  } else if(empty($aKeys['ValueID']))
143  getResult("INSERT INTO `" . MODULE_DB_PREFIX . "Memberships` (`Setting`, `Value`, `Membership`) VALUES('" . $aKeys['KeyID'] . "', '" . $sValue . "', '" . $sId . "')");
144  else
145  getResult("UPDATE `" . MODULE_DB_PREFIX . "Memberships` SET `Value`='" . $sValue . "' WHERE `ID`='" . $aKeys['ValueID'] . "'");
146  break;
147 
148  case 'RayzGetMembership':
149  $sMembership = rzGetMembershipId($sId);
151  $sContents .= rzGetMembershipValues($sMembership);
152  break;
153 
154  case 'RzGuestLogin':
155  $sUserId = searchUser($sNick, "NickName");
156  if(!empty($sUserId)) {
157  $sContents = parseXml($aXmlTemplates['result'], "RayzGuestError", FAILED_VAL);
158  break;
159  }
160 
161  getResult("DELETE FROM `" . MODULE_DB_PREFIX . "Profiles` WHERE `ID`='" . $sId . "'");
162  getResult("INSERT INTO `" . MODULE_DB_PREFIX . "Profiles` SET `ID`='" . $sId . "', `Type`='" . CHAT_TYPE_FULL . "', `Smileset`='" . $sDefSmileset . "'");
163 
164  $iCurrentTime = time();
165  $sSex = isset($_REQUEST['sex']) ? process_db_input($_REQUEST['sex']) : "M";
166  $sAge = isset($_REQUEST['age']) ? process_db_input($_REQUEST['age']) : "25";
167  $sPhoto = $sSex == "F" ? $sWomanImageUrl : $sManImageUrl;
168  getResult("REPLACE `" . MODULE_DB_PREFIX . "CurrentUsers` SET `ID`='" . $sId . "', `Nick`='" . $sNick . "', `Sex`='" . $sSex . "', `Age`='" . $sAge . "', `Desc`='" . $sDesc . "', `Photo`='" . $sPhoto . "', `Profile`='" . $sProfileUrl . "', `Start`='" . $iCurrentTime . "', `When`='" . $iCurrentTime . "', `Status`='" . USER_STATUS_NEW . "'");
169  getResult("DELETE FROM `" . MODULE_DB_PREFIX . "RoomsUsers` WHERE `User`='" . $sId . "'");
170 
171  $sContents = parseXml($aXmlTemplates['result'], "", SUCCESS_VAL);
172  $sContents .= parseXml(array(2 => '<user photo="#1#" profile="#2#" />'), $sPhoto, $sProfileUrl);
173  break;
174 
178  case 'userAuthorize':
179  if(loginAdmin($sId, $sPassword) == TRUE_VAL) {
180  $aUserInfo = getUserInfo($sId, true);
181  $aUser = array('id' => $aUserInfo['id'], 'nick' => $aUserInfo['nick'], 'sex' => $aUserInfo['sex'], 'age' => $aUserInfo['age'], 'desc' => $aUserInfo['desc'], 'photo' => $aUserInfo['photo'], 'profile' => $aUserInfo['profile'], 'type' => CHAT_TYPE_ADMIN);
182  } elseif(loginUser($sId, $sPassword) == TRUE_VAL && ($bBanned = doBan("check", $sId)) != TRUE) {
184  $aUser['id'] = $sId;
185  $aUser['sex'] = $aUser['sex'] == 'female' ? "F" : "M";
186  $aUser['type'] = isUserAdmin($sId) ? CHAT_TYPE_ADMIN : CHAT_TYPE_FULL;
187  } else {
188  $sContents = parseXml($aXmlTemplates['result'], $bBanned ? "msgBanned" : "msgUserAuthenticationFailure", FAILED_VAL);
189  break;
190  }
192  $sContents = parseXml($aXmlTemplates['result'], "", SUCCESS_VAL);
193  $sContents .= parseXml($aXmlTemplates['user'], $aUser['id'], USER_STATUS_NEW, $aUser['nick'], $aUser['sex'], $aUser['age'], $aUser['desc'], $aUser['photo'], $aUser['profile'], $aUser['type'], USER_STATUS_ONLINE);
194  break;
195 
196  case 'banUser':
197  $sBanned = isset($_REQUEST["banned"]) ? process_db_input($_REQUEST['banned']) : FALSE_VAL;
198  $sUserId = getValue("SELECT `ID` FROM `" . MODULE_DB_PREFIX ."Profiles` WHERE `ID` = '" . $sId . "' LIMIT 1");
199  getResult(empty($sUserId)
200  ? "INSERT INTO `" . MODULE_DB_PREFIX . "Profiles`(`ID`, `Banned`) VALUES('" . $sId . "', '" . $sBanned . "')"
201  : "UPDATE `" . MODULE_DB_PREFIX . "Profiles` SET `Banned`='" . $sBanned . "' WHERE `ID`='" . $sId . "'");
202  break;
203 
204  case 'kickUser':
205  getResult("UPDATE `" . MODULE_DB_PREFIX . "CurrentUsers` SET `Status`='" . USER_STATUS_KICK . "', `When`='" . time() . "' WHERE `ID`='" . $sId . "'");
206  break;
207 
208  case 'changeUserType':
209  $sUserId = getValue("SELECT `ID` FROM `" . MODULE_DB_PREFIX ."Profiles` WHERE `ID` = '" . $sId . "' LIMIT 1");
210  getResult(empty($sUserId)
211  ? "INSERT INTO `" . MODULE_DB_PREFIX . "Profiles`(`ID`, `Type`) VALUES('" . $sId . "', '" . $sType . "')"
212  : "UPDATE `" . MODULE_DB_PREFIX . "Profiles` SET `Type`='" . $sType . "' WHERE `ID`='" . $sId . "'");
213  break;
214 
215  case 'searchUser':
216  $sContents = parseXml($aXmlTemplates['result'], "No User Found.", FAILED_VAL);
217  $sUserId = searchUser($sParamValue, $sParamName);
218  if(empty($sUserId)) break;
219 
220  $aUser = getUserInfo($sUserId);
221  $aUser['sex'] = $aUser['sex'] == "female" ? "F" : "M";
222  $aProfile = getArray("SELECT * FROM `" . MODULE_DB_PREFIX ."Profiles` WHERE `ID` = '" . $sUserId . "' LIMIT 1");
223  if(!is_array($aProfile) || count($aProfile) == 0) $aProfile = array("Banned" => FALSE_VAL, "Type" => CHAT_TYPE_FULL);
224 
225  $sContents = parseXml($aXmlTemplates['result'], "", SUCCESS_VAL);
226  $sContents .= parseXml($aXmlTemplates['user'], $sUserId, $aUser['nick'], $aUser['sex'], $aUser['age'], $aUser['photo'], $aUser['profile'], $aProfile['Banned'], $aProfile['Type']);
227  break;
228 
232  case 'getSounds':
233  $sFileName = $sModulesPath . $sModule . "/xml/sounds.xml";
234  if(file_exists($sFileName)) {
235  $rHandle = fopen($sFileName, "rt");
236  $sContents = fread($rHandle, filesize($sFileName));
237  fclose($rHandle);
238  } else $sContents = makeGroup("", "items");
239  break;
240 
244  case 'getSmilesets':
245  $sConfigFile = "config.xml";
246  $sContents = parseXml($aXmlTemplates['smileset'], "", "") . makeGroup("", "smilesets");
247  $aSmilesets = array();
248  if($rDirHandle = opendir($sSmilesetsPath))
249  while(false !== ($sDir = readdir($rDirHandle)))
250  if($sDir != "." && $sDir != ".." && is_dir($sSmilesetsPath . $sDir) && file_exists($sSmilesetsPath . $sDir . "/" . $sConfigFile))
251  $aSmilesets[] = $sDir;
252  closedir($rDirHandle);
253  if(count($aSmilesets) == 0) break;
254 
255  if(isset($_COOKIE["RayzFontsmileset"]))
256  $sDefSmileset = substr($_COOKIE["RayzFontsmileset"], 0, -1);
257  if(!in_array($sDefSmileset, $aSmilesets))
258  $sDefSmileset = $aSmilesets[0];
259  $sUserSmileset = getValue("SELECT `Smileset` FROM `" . MODULE_DB_PREFIX . "Profiles` WHERE `ID`='" . $sId . "'");
260  if(empty($sUserSmileset) || !file_exists($sSmilesetsPath . $sUserSmileset)) $sUserSmileset = $sDefSmileset;
261 
262  $sContents = parseXml($aXmlTemplates['smileset'], $sUserSmileset . "/", $sSmilesetsUrl);
263  $sData = "";
264  for($i=0; $i<count($aSmilesets); $i++) {
265  $sName = getSettingValue(GLOBAL_MODULE, "name", "config", false, $sDataDir . $sSmilesetsDir . $aSmilesets[$i]);
266  $sData .= parseXml($aXmlTemplates['smileset'], $aSmilesets[$i] . "/", $sConfigFile, empty($sName) ? $aSmilesets[$i] : $sName);
267  }
268  $sContents .= makeGroup($sData, "smilesets");
269  break;
270 
274  case 'setSmileset':
275  getResult("UPDATE `" . MODULE_DB_PREFIX . "Profiles` SET `Smileset`='" . $sSmileset . "' WHERE `ID`='" . $sId . "'");
276  break;
277 
281  case 'getRooms':
282 // doRoom('deleteTemp');
283  $sContents = makeGroup(getRooms("all", $sId), "rooms");
284  break;
285 
290  case 'createRoom':
291  $iRoomId = doRoom('insert', $sId, 0, $sRoom, $sPassword, $sDesc, process_db_input($_REQUEST['temp']) == TRUE_VAL);
292  if(empty($iRoomId)) $sContents = parseXml($aXmlTemplates['result'], "msgErrorCreatingRoom", FAILED_VAL);
293  else $sContents = parseXml($aXmlTemplates['result'], $iRoomId, SUCCESS_VAL);
294  break;
295 
296  case 'editRoom':
297  doRoom('update', 0, $iRoomId, $sRoom, $sPassword, $sDesc);
298  $sContents = parseXml($aXmlTemplates['result'], "", SUCCESS_VAL);
299  break;
300 
305  case 'deleteRoom':
306  doRoom('delete', 0, $iRoomId);
307  $sContents = parseXml($aXmlTemplates['result'], TRUE_VAL);
308  break;
309 
310  case 'enterRoom':
311  doRoom('enter', $sId, $iRoomId);
312  break;
313 
314  case 'exitRoom':
315  doRoom('exit', $sId, $iRoomId);
316  break;
317 
318  case 'checkRoomPassword':
319  $sId = getValue("SELECT `ID` FROM `" . MODULE_DB_PREFIX . "Rooms` WHERE `ID`='" . $iRoomId . "' AND `Password`='" . $sPassword . "' LIMIT 1");
320  if(empty($sId)) $sContents = parseXml($aXmlTemplates['result'], "msgWrongRoomPassword", FAILED_VAL);
321  else $sContents = parseXml($aXmlTemplates['result'], "", SUCCESS_VAL);
322  break;
323 
330  case 'getOnlineUsers':
331  //--- Check RayChatMessages table and drop autoincrement if it is possible. ---//
332  $rResult = getResult("SELECT `ID` FROM `" . MODULE_DB_PREFIX . "CurrentUsers`");
333  if($rResult->rowCount() == 0) getResult("TRUNCATE TABLE `" . MODULE_DB_PREFIX . "CurrentUsers`");
334  $rResult = getResult("SELECT `ID` FROM `" . MODULE_DB_PREFIX . "Messages`");
335  if($rResult->rowCount() == 0) getResult("TRUNCATE TABLE `" . MODULE_DB_PREFIX . "Messages`");
336  //--- Update user's info and return info about all online users. ---//
338  break;
339 
343  case 'setOnline':
344  getResult("UPDATE `" . MODULE_DB_PREFIX . "CurrentUsers` SET `Online`='" . $sOnline . "', `When`='" . time() . "', `Status`='" . USER_STATUS_ONLINE . "' WHERE `ID`='" . $sId . "'");
345  break;
346 
351  case 'update':
352  $sFiles = "";
353  $res = getResult("SELECT * FROM `" . MODULE_DB_PREFIX . "Messages` WHERE `Type`='file' AND `Recipient`='" . $sId . "'");
354  while($aFile = $res->fetch()) {
355  $sFileName = $aFile['ID'] . ".file";
356  if(!file_exists($sFilesPath . $sFileName)) continue;
357  $sFiles .= parseXml($aXmlTemplates['file'], $aFile['Sender'], $sFileName, $aFile['Message']);
358  }
359  getResult("DELETE FROM `" . MODULE_DB_PREFIX . "Messages` WHERE `Type`='file' AND `Recipient`='" . $sId . "'");
360  $sContents = makeGroup($sFiles, "files");
361 
362  //--- update user's info ---//
363  $sContents .= refreshUsersInfo($sId, 'update');
364  //--- check for new rooms ---//
365  $sContents .= makeGroup(getRooms('update', $sId), "rooms");
366  $sContents .= makeGroup(getRooms('updateUsers', $sId), "roomsUsers");
367 
368  //--- check for new messages ---//
369  $iUpdateInterval = (int)getSettingValue($sModule, "updateInterval");
370  $sMsgs = "";
371  $sRooms = getValue("SELECT GROUP_CONCAT(DISTINCT `Room` SEPARATOR ',') FROM `" . MODULE_DB_PREFIX . "RoomsUsers` WHERE `User`='" . $sId . "' AND `Status`='" . ROOM_STATUS_NORMAL ."'");
372  if(empty($sRooms)) $sRooms = "''";
373  $sSql = "SELECT * FROM `" . MODULE_DB_PREFIX . "Messages` WHERE `Type`='text' AND `Sender`<>'" . $sId . "' AND ((`Room` IN (" . $sRooms . ") AND `Whisper`='" . FALSE_VAL . "') OR `Recipient`='" . $sId . "') AND `When`>='" . (time() - $iUpdateInterval) . "' ORDER BY `ID`";
374  $res = getResult($sSql);
375  while($aMsg = $res->fetch()) {
376  $aStyle = unserialize($aMsg['Style']);
377  $sMsgs .= parseXml($aXmlTemplates['message'], $aMsg['ID'], stripslashes($aMsg['Message']), $aMsg['Room'], $aMsg['Sender'], $aMsg['Recipient'], $aMsg['Whisper'], $aStyle['color'], $aStyle['bold'], $aStyle['underline'], $aStyle['italic'], $aStyle['size'], $aStyle['font'], $aStyle['smileset'], $aMsg['When']);
378  }
379  $sContents .= makeGroup($sMsgs, "messages");
380  break;
381 
385  case 'newMessage':
386  if(empty($sSender))
387  break;
388  if(!useServer())
389  {
390  $sWhisper = isset($_REQUEST['whisper']) ? process_db_input($_REQUEST['whisper']) : FALSE_VAL;
391  $sColor = $_REQUEST['color'] ? (int)$_REQUEST['color'] : 0;
392  $sBold = $_REQUEST['bold'] ? process_db_input($_REQUEST['bold']) : FALSE_VAL;
393  $sUnderline = $_REQUEST['underline'] ? process_db_input($_REQUEST['underline']) : FALSE_VAL;
394  $sItalic = $_REQUEST['italic'] ? process_db_input($_REQUEST['italic']) : FALSE_VAL;
395  $iSize = $_REQUEST['size'] ? (int)$_REQUEST['size'] : 12;
396  $sFont = $_REQUEST['font'] ? process_db_input($_REQUEST['font']) : "Arial";
397  $sStyle = serialize(array('color' => $sColor, 'bold' => $sBold, 'underline' => $sUnderline, 'italic' => $sItalic, 'smileset' => $sSmileset, 'size' => $iSize, 'font' => $sFont));
398  getResult("INSERT INTO `" . MODULE_DB_PREFIX . "Messages`(`Room`, `Sender`, `Recipient`, `Message`, `Whisper`, `Style`, `When`) VALUES('" . $iRoomId . "', '" . $sSender . "', '" . $sRcp . "', '" . $sMessage . "', '" . $sWhisper . "', '" . $sStyle . "', '" . time() . "')");
399  }
400  if(empty($iRoomId))
401  $sSndRcp = strcmp($sSender, $sRcp) < 0 ? $sSender . "." . $sRcp : $sRcp . "." . $sSender;
402  else
403  $sSndRcp = "";
404  getResult("INSERT INTO `" . MODULE_DB_PREFIX . "History`(`Room`, `SndRcp`, `Sender`, `Recipient`, `Message`, `When`) VALUES('" . $iRoomId . "', '" . $sSndRcp . "', '" . $sSender . "', '" . $sRcp . "', '" . $sMessage . "', '" . time() . "')");
405  break;
406 
407  case 'getHistory':
408  $iDay = (int)$_REQUEST['day'];
409  $iMonth = (int)$_REQUEST['month'];
410  $iYear = (int)$_REQUEST['year'];
411  $iStartDate = mktime(0, 0, 0, $iMonth, $iDay, $iYear);
412  $iEndDate = mktime(0, 0, 0, $iMonth, ($iDay+1), $iYear);
413  $aMessages = array();
414  $aUsers = array();
415  $rRes = getResult("SELECT * FROM `" . MODULE_DB_PREFIX . "History` WHERE `When`>=" . $iStartDate . " AND `When`<" . $iEndDate . " ORDER BY `Room`, `Sender`, `Recipient` ASC");
416  if($rRes->rowCount() == 0)
417  {
418  $sContents = makeGroup("", "users") . makeGroup("", "rooms") . makeGroup("", "privates");
419  break;
420  }
421 
422  //users
423  $iUsersCount = $rRes->rowCount();
424  for($i=0; $i<$iUsersCount; $i++)
425  {
426  $aMsg = $rRes->fetch();
427  $aMessages[] = $aMsg;
428  if(!empty($aMsg['Sender']))
429  $aUsers[] = $aMsg['Sender'];
430  if(!empty($aMsg['Recipient']))
431  $aUsers[] = $aMsg['Recipient'];
432  }
433  $sUsers = "";
434  $aUsers = array_flip(array_unique($aUsers));
435  foreach($aUsers as $iUserId => $sValue)
436  {
437  $aUser = getUserInfo($iUserId);
438  $sUsers .= parseXml($aXmlTemplates['history']['user'], $iUserId, $aUser['nick']);
439  }
440  $sContents = makeGroup($sUsers, "users");
441 
442  //rooms dialogs
443  $rResRooms = getResult("SELECT `history`.*, `rooms`.`Name` AS `Title` FROM `" . MODULE_DB_PREFIX . "History` AS `history` INNER JOIN `" . MODULE_DB_PREFIX . "Rooms` AS `rooms` ON `history`.`Room`=`rooms`.`ID` WHERE `history`.`Room`>0 AND `history`.`When`>=" . $iStartDate . " AND `history`.`When`<" . $iEndDate . " ORDER BY `Room`, `When` ASC");
444  $sRooms = "";
445  $sMsgs = "";
446  $iRoom = 0;
447  $iCount = 0;
448  $sRoom = "";
449  $iRoomsCount = $rResRooms->rowCount();
450  for($i=0; $i<$iRoomsCount; $i++)
451  {
452  $aMsg = $rResRooms->fetch();
453  if($aMsg['Room'] != $iRoom)
454  {
455  if(!empty($sRoom) && !empty($sMsgs))
456  {
457  $sRooms .= parseXml($aXmlTemplates['history']['room'], $iRoom, $sRoom, $iCount) . $sMsgs . "</room>";
458  $sMsgs = "";
459  $iCount = 0;
460  }
461  $iRoom = $aMsg['Room'];
462  $sRoom = $aMsg['Title'];
463  }
464  $iCount++;
465  $sMsgs .= parseXml($aXmlTemplates['history']['msg'], $aMsg['ID'], $aMsg['Sender'], $aMsg['Recipient'], $aMsg['Message']);
466  }
467  if(!empty($sRoom) && !empty($sMsgs))
468  $sRooms .= parseXml($aXmlTemplates['history']['room'], $iRoom, $sRoom, $iCount) . $sMsgs . "</room>";
469  $sContents .= makeGroup($sRooms, "rooms");
470 
471  //private dialogs
472  $rResMsgs = getResult("SELECT * FROM `" . MODULE_DB_PREFIX . "History` WHERE `Room`=0 AND `When`>=" . $iStartDate . " AND `When`<" . $iEndDate . " ORDER BY `SndRcp`, `When` ASC");
473  $sPrivate = "";
474  $sMsgs = "";
475  $sSndRcp = "";
476  $iCount = 0;
477  $iMsgsCount = $rResMsgs->rowCount();
478  for($i=0; $i<$iMsgsCount; $i++)
479  {
480  $aMsg = $rResMsgs->fetch();
481  if($aMsg['SndRcp'] != $sSndRcp)
482  {
483  if(!empty($sMsgs))
484  {
485  $sPrivate .= parseXml($aXmlTemplates['history']['private'], $aMsg['Sender'], $aMsg['Recipient'], $iCount) . $sMsgs . "</private>";
486  $sMsgs = "";
487  $iCount = 0;
488  }
489  $sSndRcp = $aMsg['SndRcp'];
490  }
491  $iCount++;
492  $sMsgs .= parseXml($aXmlTemplates['history']['msg'], $aMsg['ID'], $aMsg['Sender'], $aMsg['Message']);
493  }
494  if(!empty($sMsgs))
495  $sPrivate .= parseXml($aXmlTemplates['history']['private'], $aMsg['Sender'], $aMsg['Recipient'], $iCount) . $sMsgs . "</private>";
496  $sContents .= makeGroup($sPrivate, "privates");
497  break;
498 
499  case 'uploadFile':
500  if(empty($sSender)) break;
501  if(is_uploaded_file($_FILES['Filedata']['tmp_name'])) {
502  $sFilePath = $sFilesPath . $sSender . ".temp";
503  @unlink($sFilePath);
504  move_uploaded_file($_FILES['Filedata']['tmp_name'], $sFilePath);
505  @chmod($sFilePath, 0644);
506  }
507  break;
508 
509  case 'initFile':
510  $sFilePath = $sFilesPath . $sSender . ".temp";
511  $sContents = parseXml($aXmlTemplates['result'], "msgErrorUpload", FAILED_VAL);
512  if(empty($sSender) || !file_exists($sFilePath) || filesize($sFilePath) == 0) break;
513 
514  getResult("INSERT INTO `" . MODULE_DB_PREFIX . "Messages`(`Sender`, `Recipient`, `Message`, `Type`, `When`) VALUES('" . $sSender . "', '" . $sRcp . "', '" . $sMessage . "', 'file', '" . time() . "')");
515  $sFileName = getLastInsertId() . ".file";
516  if(!@rename($sFilePath, $sFilesPath . $sFileName)) break;
517 
518  $sContents = parseXml($aXmlTemplates['result'], $sFileName, SUCCESS_VAL);
519  break;
520 
521  case 'removeFile':
522  $sId = str_replace(".file", "", $sId);
523  removeFile($sId);
524  break;
525 
526  case 'help':
527  $sApp = isset($_REQUEST['app']) ? process_db_input($_REQUEST['app']) : "user";
528  $sContents = makeGroup("", "topics");
529  $sFileName = $sModulesPath . $sModule . "/help/" . $sApp . ".xml";
530  if(file_exists($sFileName)) {
531  $rHandle = @fopen($sFileName, "rt");
532  $sContents = @fread($rHandle, filesize($sFileName)) ;
533  fclose($rHandle);
534  }
535  break;
536 }
process_db_input
process_db_input($sText, $iStripTags=0)
Definition: utils.inc.php:256
getLastInsertId
getLastInsertId()
Definition: db.inc.php:66
$sMessage
$sMessage
Definition: actions.inc.php:17
loginAdmin
loginAdmin($sLogin, $sPassword)
Definition: customFunctions.inc.php:36
getRooms
getRooms($sMode='new', $sId="")
Definition: functions.inc.php:93
TRUE
URI MungeSecretKey $secret_key</pre >< p > If the output is TRUE
Definition: URI.MungeSecretKey.txt:17
removeFile
removeFile($sFileId)
Definition: functions.inc.php:270
$sSoundsUrl
$sSoundsUrl
Definition: header.inc.php:12
$iRoomId
$iRoomId
Definition: actions.inc.php:19
$sRootURL
$sRootURL
Definition: header.inc.php:38
$sRcp
$sRcp
Definition: actions.inc.php:16
refreshUsersInfo
refreshUsersInfo($sId="", $sMode='all')
Definition: functions.inc.php:126
$sFilesUrl
$sFilesUrl
Definition: header.inc.php:11
getUserVideoLink
getUserVideoLink()
Definition: customFunctions.inc.php:48
$sModulesUrl
$sModulesUrl
Definition: header.inc.php:52
blockUser
blockUser($iUserId, $iBlockedId, $bBlock)
Definition: customFunctions.inc.php:64
$sDataDir
$sDataDir
Definition: header.inc.php:66
php
doRoom
doRoom($sSwitch, $sUserId="", $iRoomId=0, $sTitle="", $sPassword="", $sDesc="", $bTemp=false)
Definition: functions.inc.php:146
getValue
getValue($sQuery)
Definition: db.inc.php:59
$sModule
if(!file_exists($sRayHeaderPath)) $sModule
Definition: index.php:14
setCurrentFile
setCurrentFile($sModule, $sFile, $sFolder="langs")
Definition: apiFunctions.inc.php:212
$sParamValue
$sParamValue
Definition: actions.inc.php:16
initUser
initUser($aUser)
Definition: functions.inc.php:41
rzGetMemberships
rzGetMemberships()
Definition: customFunctions.inc.php:18
$sWomanImageUrl
$sWomanImageUrl
Definition: header.inc.php:81
$sModulesPath
$sModulesPath
Definition: header.inc.php:53
$sLanguage
$sLanguage
Definition: actions.inc.php:19
isUserAdmin
isUserAdmin($iId)
Definition: customFunctions.inc.php:42
$sOnline
$sOnline
Definition: actions.inc.php:12
$sPassword
$sPassword
Definition: actions.inc.php:10
rzGetMembershipId
rzGetMembershipId($sUserId)
Definition: customFunctions.inc.php:12
$sType
$sType
Definition: actions.inc.php:11
rzGetMembershipValues
rzGetMembershipValues($sMembership, $sName="")
Definition: functions.inc.php:8
getRMSUrl
getRMSUrl($sApplication, $bHttp=false)
Definition: apiFunctions.inc.php:116
$sParamName
$sParamName
Definition: actions.inc.php:15
$aProfile
$aProfile
Definition: flash.php:14
$sFolder
$sFolder
Definition: index.php:15
$_REQUEST
$_REQUEST['action']
Definition: cmd.php:11
$sRoom
$sRoom
Definition: actions.inc.php:20
$sManImageUrl
$sManImageUrl
Definition: header.inc.php:82
$sSmilesetsUrl
$sSmilesetsUrl
Definition: header.inc.php:71
time
that in the case of a Adaptation or at a minimum such credit will if a credit for all contributing authors of the Adaptation or Collection then as part of these credits and in a manner at least as prominent as the credits for the other contributing authors For the avoidance of You may only use the credit required by this Section for the purpose of attribution in the manner set out above by exercising Your rights under this You may not implicitly or explicitly assert or imply any connection sponsorship or endorsement by the Original Licensor and or Attribution as of You or Your use of the without the express prior written permission of the Original Licensor and or Attribution Parties Except as otherwise agreed in writing by the Licensor or as may be otherwise permitted by applicable if You Distribute or Publicly Perform the Work either by itself or as part of any Adaptations or You must not modify or take other derogatory action in relation to the Work which would be prejudicial to the Original Author s honor or reputation Licensor agrees that in those in which any exercise of the right granted in modification or other derogatory action prejudicial to the Original Author s honor and the Licensor will waive or not as this to the fullest extent permitted by the applicable national to enable You to reasonably exercise Your right under Warranties and Disclaimer UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN LICENSOR OFFERS THE WORK AS IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE STATUTORY OR WITHOUT WARRANTIES OF FITNESS FOR A PARTICULAR OR THE ABSENCE OF LATENT OR OTHER OR THE PRESENCE OF ABSENCE OF WHETHER OR NOT DISCOVERABLE SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED SO SUCH EXCLUSION MAY NOT APPLY TO YOU Limitation on Liability EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES Termination This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License Individuals or entities who have received Adaptations or Collections from You under this will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses and will survive any termination of this License Subject to the above terms and the license granted here is Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time
Definition: license.txt:56
$sDefSmileset
$sDefSmileset
Definition: header.inc.php:78
getUserMusicLink
getUserMusicLink()
Definition: customFunctions.inc.php:56
$sSmilesetsDir
$sSmilesetsDir
Definition: header.inc.php:70
parseXml
parseXml($aXmlTemplates)
Definition: apiFunctions.inc.php:15
useServer
useServer()
Definition: apiFunctions.inc.php:129
$sServerApp
$sServerApp
Definition: header.inc.php:8
searchUser
searchUser($sValue, $sField="ID")
Definition: customFunctions.inc.php:127
makeGroup
makeGroup($sXmlContent, $sXmlGroup="ray")
Definition: apiFunctions.inc.php:32
$aUser
$aUser
Definition: profiles.inc.php:74
$aXmlTemplates
$aXmlTemplates
Definition: xmlTemplates.inc.php:8
$sSmileset
$sSmileset
Definition: actions.inc.php:14
$sId
$sId
Definition: actions.inc.php:8
$sSkin
$sSkin
Definition: actions.inc.php:18
getSettingValue
getSettingValue($sWidget, $sSettingKey, $sFile="config", $bFullReturn=false, $sFolder="xml")
Definition: apiFunctions.inc.php:82
$sFilesPath
$sFilesPath
Definition: header.inc.php:10
getUserInfo
$f getUserInfo
Definition: callback.php:18
$sProfileUrl
$sProfileUrl
Definition: header.inc.php:99
$sContents
$sContents
Definition: XML.php:38
$sAction
$sAction
Definition: categories.php:274
$sNick
$sNick
Definition: actions.inc.php:9
empty
Attr AllowedRel this is empty
Definition: Attr.AllowedRel.txt:7
$sSex
$sSex
Definition: actions.inc.php:24
$sDesc
$sDesc
Definition: actions.inc.php:21
getBlockingList
getBlockingList($sId, $bBlocking)
Definition: customFunctions.inc.php:78
as
as
Definition: Filter.ExtractStyleBlocks.Escaping.txt:10
loginUser
loginUser($sName, $sPassword, $bLogin=false)
Definition: customFunctions.inc.php:19
getArray
getArray($sQuery)
Definition: db.inc.php:52
$sName
$sName
Definition: ChWsbAdminTools.php:853
$sApp
$sApp
Definition: index.php:15
doBan
doBan($sSwitch, $sId="0")
Definition: functions.inc.php:66
rzGetMembershipSettings
rzGetMembershipSettings($bAdmin=false)
Definition: functions.inc.php:23
$sSender
$sSender
Definition: actions.inc.php:15
printFiles
printFiles($sModule, $sFolder="langs", $bGetDate=false, $bGetNames=false)
Definition: apiFunctions.inc.php:224
$sAge
$sAge
Definition: browse.php:25
$sUser
$sUser
Definition: r.php:13
$sSmilesetsPath
$sSmilesetsPath
Definition: header.inc.php:72
getResult
getResult($sQuery)
Definition: db.inc.php:45