Cheetah
actions.inc.php
Go to the documentation of this file.
1 <?php
2 
8 $sId = isset($_REQUEST['id']) ? (int)$_REQUEST['id'] : "";
9 //sender's ID
10 $sSndId = isset($_REQUEST['sender']) ? (int)$_REQUEST['sender'] : 0;
11 //sender's Nick
12 $sSndNick = isset($_REQUEST['nick']) ? process_db_input($_REQUEST['nick']) : "";
13 //sender's password
14 $sSndPassword = isset($_REQUEST['password']) ? process_db_input($_REQUEST['password']) : "";
15 //name of smileset
16 $sSmileset = isset($_REQUEST['smileset']) ? process_db_input($_REQUEST['smileset']) : "";
17 
18 //recipient's ID
19 $sRspId = isset($_REQUEST['recipient']) ? (int)$_REQUEST['recipient'] : 0;
20 
21 //user's message
22 $sMsg = isset($_REQUEST['message']) ? process_db_input($_REQUEST['message']) : "";
23 //sex parameter
24 $sSex = isset($_REQUEST['sex']) ? process_db_input($_REQUEST['sex']) : "Male";
25 //user's file name
26 $sFile = isset($_REQUEST['file']) ? process_db_input($_REQUEST['file']) : "";
27 
28 //skin name
29 $sSkin = isset($_REQUEST['skin']) ? process_db_input($_REQUEST['skin']) : "";
30 //language name
31 $sLanguage = isset($_REQUEST['language']) ? process_db_input($_REQUEST['language']) : "english";
32 
33 switch ($sAction) {
34  case 'getPlugins':
35  $sFolder = "/plugins/";
36  $sContents = "";
37  $sFolderPath = $sModulesPath . $sModule . $sFolder;
38  if(file_exists($sFolderPath) && is_dir($sFolderPath)) {
39  if($rDirHandle = opendir($sModulesPath . $sModule . $sFolder))
40  while(false !== ($sPlugin = readdir($rDirHandle)))
41  if(strpos($sPlugin, ".swf") === strlen($sPlugin)-4)
42  $sContents .= parseXml(array(1 => '<plugin><![CDATA[#1#]]></plugin>'), $sModulesUrl . $sModule . $sFolder . $sPlugin);
43  closedir($rDirHandle);
44  }
45  $sContents = makeGroup($sContents, "plugins");
46  break;
47 
51  case 'getSkins':
52  $sContents = printFiles($sModule, "skins", false, true);
53  break;
54 
58  case 'setSkin':
59  setCurrentFile($sModule, $sSkin, "skins");
60  break;
61 
65  case 'getLanguages':
66  $sContents = printFiles($sModule, "langs", false, true);
67  break;
68 
72  case 'setLanguage':
74  break;
75 
79  case 'config':
80  $sFileName = $sModulesPath . $sModule . "/xml/config.xml";
81  $rHandle = fopen($sFileName, "rt");
82  $sContents = fread($rHandle, filesize($sFileName)) ;
83  fclose($rHandle);
84 
85  $iFileSize = (int)getSettingValue($sModule, "fileSize");
86  $iMaxFileSize = min((ini_get('upload_max_filesize') + 0), (ini_get('post_max_size') + 0), $iFileSize);
87  $sContents = str_replace("#fileMaxSize#", $iMaxFileSize, $sContents);
88  $sContents = str_replace("#userVideo#", getUserVideoLink(), $sContents);
89  $sContents = str_replace("#userMusic#", getUserMusicLink(), $sContents);
90  $sContents = str_replace("#soundsUrl#", $sSoundsUrl, $sContents);
91  $sContents = str_replace("#smilesetsUrl#", $sSmilesetsUrl, $sContents);
92  $sContents = str_replace("#filesUrl#", $sFilesUrl, $sContents);
93  $sContents = str_replace("#useServer#", useServer() ? TRUE_VAL : FALSE_VAL, $sContents);
94  $sContents = str_replace("#serverUrl#", getRMSUrl($sServerApp), $sContents);
95  break;
96 
101  case 'senderAuthorize':
102  if(loginUser($sSndId, $sSndPassword) == TRUE_VAL) {
103  $sContents = parseXml($aXmlTemplates['result'], "", SUCCESS_VAL);
104 
105  //--- return sender's information ---//
107  $aUser['sex'] = $aUser['sex'] == 'female' ? "F" : "M";
108  $sContents .= parseXml($aXmlTemplates['user'], $sSndId, $aUser['nick'], $aUser['sex'], $aUser['age'], $aUser['desc'], $aUser['photo'], $aUser['profile'], USER_STATUS_ONLINE);
109  } else $sContents = parseXml($aXmlTemplates['result'], "msgUserAuthenticationFailure", FAILED_VAL);
110  break;
111 
115  case 'recipientAuthorize':
116  $sSearchResult = searchUser($sRspId);
117  if(!empty($sSearchResult)) {
118  $sContents = parseXml($aXmlTemplates['result'], TRUE_VAL);
119 
120  //--- return recipients's information ---//
122  $aUser['sex'] = $aUser['sex'] == 'female' ? "F" : "M";
123  $sContents .= parseXml($aXmlTemplates['user'], $sRspId, $aUser['nick'], $aUser['sex'], $aUser['age'], $aUser['desc'], $aUser['photo'], $aUser['profile'], getUserOnlineStatus($sRspId, $sSndId));
124  } else $sContents = parseXml($aXmlTemplates['result'], FALSE_VAL);
125  break;
126 
130  case 'getSounds':
131  $sFileName = $sModulesPath . $sModule . "/xml/sounds.xml";
132  if(file_exists($sFileName)) {
133  $rHandle = fopen($sFileName, "rt");
134  $sContents = fread($rHandle, filesize($sFileName));
135  fclose($rHandle);
136  } else $sContents = makeGroup("", "items");
137  break;
138 
142  case 'getSmilesets':
143  $sConfigFile = "config.xml";
144  $sContents = parseXml($aXmlTemplates['smileset'], "", "") . makeGroup("", "smilesets");
145  $aSmilesets = array();
146  if($rDirHandle = opendir($sSmilesetsPath))
147  while(false !== ($sDir = readdir($rDirHandle)))
148  if($sDir != "." && $sDir != ".." && is_dir($sSmilesetsPath . $sDir) && file_exists($sSmilesetsPath . $sDir . "/" . $sConfigFile))
149  $aSmilesets[] = $sDir;
150  closedir($rDirHandle);
151  if(count($aSmilesets) == 0) break;
152 
153  if(isset($_COOKIE["RayzFontsmileset"]))
154  $sDefSmileset = substr($_COOKIE["RayzFontsmileset"], 0, -1);
155  if(!in_array($sDefSmileset, $aSmilesets))
156  $sDefSmileset = $aSmilesets[0];
157  $sUserSmileset = getValue("SELECT `Smileset` FROM `" . MODULE_DB_PREFIX . "Profiles` WHERE `ID`='" . $sSndId . "'");
158  if(empty($sUserSmileset) || !file_exists($sSmilesetsPath . $sUserSmileset)) $sUserSmileset = $sDefSmileset;
159 
160  $sContents = parseXml($aXmlTemplates['smileset'], $sUserSmileset . "/", $sSmilesetsUrl);
161  $sData = "";
162  for($i=0; $i<count($aSmilesets); $i++) {
163  $sName = getSettingValue(GLOBAL_MODULE, "name", "config", false, $sDataDir . $sSmilesetsDir . $aSmilesets[$i]);
164  $sData .= parseXml($aXmlTemplates['smileset'], $aSmilesets[$i] . "/", $sConfigFile, empty($sName) ? $aSmilesets[$i] : $sName);
165  }
166  $sContents .= makeGroup($sData, "smilesets");
167  break;
168 
172  case 'setSmileset':
173  getResult("UPDATE `" . MODULE_DB_PREFIX . "Profiles` SET `Smileset`='" . $sSmileset . "' WHERE `ID`='" . $sSndId . "'");
174  break;
175 
179  case 'addPend':
180  $sContents .= parseXml($aXmlTemplates['result'], addPend( $sSndId, $sRspId, $sMsg ) ? TRUE_VAL : FALSE_VAL);
181  break;
182 
186  case 'getPend':
187  //--- get pending messages ---//
188  $sMsgs = "";
189  $rResult = getResult("SELECT `Message` FROM `" . MODULE_DB_PREFIX . "Pendings` WHERE `SenderID` = '" . $sSndId . "' AND `RecipientID` = '" . $sRspId . "' ORDER BY `ID`");
190  while($aMsg = $rResult->fetch()) $sMsgs .= parseXml($aXmlTemplates['message'], $aMsg['Message']);
191  $sContents .= makeGroup($sMsgs, "messages");
192  //"break" shouldn't be here
193 
198  case 'deletePend':
199  getResult("DELETE FROM `" . MODULE_DB_PREFIX . "Pendings` WHERE `SenderID`='" . $sSndId . "' AND `RecipientID`='" . $sRspId . "'");
200  break;
201 
202  case 'uploadFile':
203  if(empty($sSndId) || empty($sRspId)) break;
204  if(is_uploaded_file($_FILES['Filedata']['tmp_name'])) {
205  $sFilePath = $sFilesPath . $sSndId . "to" . $sRspId . ".temp";
206  @unlink($sFilePath);
207  move_uploaded_file($_FILES['Filedata']['tmp_name'], $sFilePath);
208  @chmod($sFilePath, 0644);
209  }
210  break;
211 
212  case 'initFile':
213  $sFilePath = $sFilesPath . $sSndId . "to" . $sRspId . ".temp";
214  $sContents = parseXml($aXmlTemplates['result'], "msgErrorUpload", FAILED_VAL);
215  $sContactId = getContactId($sSndId, $sRspId);
216  if(!file_exists($sFilePath) || filesize($sFilePath) == 0) break;
217 
218  if(empty($sContactId)) $sFileName = time();
219  else {
220  getResult("INSERT INTO `" . MODULE_DB_PREFIX . "Messages`(`ContactID`, `Message`, `Type`, `When`) VALUES('" . $sContactId . "', '" . $sMessage . "', 'file', '" . time() . "')");
221  $sFileName = getLastInsertId();
222  }
223  $sFileName .= ".file";
224  if(!@rename($sFilePath, $sFilesPath . $sFileName)) break;
225 
226  $sContents = parseXml($aXmlTemplates['result'], $sFileName, SUCCESS_VAL);
227  break;
228 
229  case 'removeFile':
230  $sId = str_replace(".file", "", $sId);
231  removeFile($sId);
232  break;
233 
238  case 'updateInvite':
239  $sContents = "";
240  $aBlocked = getBlockedUsers($sRspId);
241  $sBlocked = count($aBlocked) == 0 ? "" : " AND `SenderID` NOT IN('" . implode(",", $aBlocked) . "')";
242  $rResult = getResult("SELECT `SenderID`, `Message` FROM `" . MODULE_DB_PREFIX ."Pendings` WHERE `RecipientID`='" . $sRspId . "'" . $sBlocked . " ORDER BY `ID` DESC");
243  //--- if there is a message return it and some information about it's author ---//
244  while($aMsg = $rResult->fetch()) {
245  $aUserInfo = getUserInfo($aMsg['SenderID']);
246  $sContents .= parseXml($aXmlTemplates['message'], $aMsg['SenderID'], $aUserInfo['nick'], $aUserInfo['profile'], $aMsg['Message']);
247  }
248  $sContents = makeGroup($sContents, "messages");
249  if($rResult->rowCount())
250  getResult("DELETE FROM `" . MODULE_DB_PREFIX ."Pendings` WHERE `RecipientID`='" . $sRspId . "'");
251  break;
252 
253 
259  case 'refreshStatus':
260  //--- checks whether user is online and if not then insert new contact for the user. ---//
261  $iContactId = getContactId($sSndId, $sRspId);
262  if(empty($iContactId)) getResult("INSERT INTO `" . MODULE_DB_PREFIX . "Contacts`(`SenderID`, `RecipientID`, `When`) VALUES ('" . $sSndId . "', '" . $sRspId . "', '" . time() . "')");
264  break;
265 
269  case 'setOnline':
270  $sOnline = isset($_REQUEST['online']) ? process_db_input($_REQUEST['online']) : USER_STATUS_ONLINE;
271  getResult("UPDATE `" . MODULE_DB_PREFIX . "Contacts` SET `Online`='" . $sOnline . "' WHERE `SenderID`='" . $sSndId . "' AND `RecipientID`='" . $sRspId . "' LIMIT 1");
272  break;
273 
277  case 'recipientUpdate':
278  //--- check for IM changes ---//
280  if(empty($iId)) getResult("INSERT INTO `" . MODULE_DB_PREFIX . "Contacts`(`SenderID`, `RecipientID`, `Online`, `When`) VALUES ('" . $sSndId . "', '" . $sRspId . "', '" . USER_STATUS_ONLINE . "', '" . time() . "')");
281 
283  //--- checking online status of Recipient ---//
285 
286  $sFiles = "";
287  $sQuery = "SELECT * FROM `" . MODULE_DB_PREFIX . "Contacts` AS `imc`, `" . MODULE_DB_PREFIX . "Messages` AS `imm` WHERE `imc`.`ID`=`imm`.`ContactID` AND `imm`.`Type`='file' AND `imc`.`SenderID`='" . $sRspId . "' AND `imc`.`RecipientID`='" . $sSndId . "' ORDER BY `imm`.`ID`";
288  $res = getResult($sQuery);
289  while($aFile = $res->fetch()) {
290  $sFileName = $aFile['ID'] . ".file";
291  if(!file_exists($sFilesPath . $sFileName)) continue;
292  $sFiles .= parseXml($aXmlTemplates['file'], $sFileName, $aFile['Message']);
293  }
294  $sContents .= makeGroup($sFiles, "files");
295 
296  //--- checking for new messages ---//
298  $sMsgs = "";
299  $res = getResult("SELECT * FROM `" . MODULE_DB_PREFIX . "Messages` WHERE `ContactID`='" . $iId . "' AND `Type`='text' ORDER BY `ID`");
300  while($aMsg = $res->fetch()) {
301  $aStyle = unserialize($aMsg['Style']);
302  $sMsgs .= parseXml($aXmlTemplates['message'], $aMsg['ID'], stripslashes($aMsg['Message']), $aStyle['color'], $aStyle['bold'], $aStyle['underline'], $aStyle['italic'], $aStyle['size'], $aStyle['font'], $aStyle['smileset']);
303  }
304  $sContents .= makeGroup($sMsgs, "messages");
305 
306  //--- delete new messages ---//
307  getResult("DELETE FROM `" . MODULE_DB_PREFIX . "Messages` WHERE `ContactID`='" . $iId . "'");
308  break;
309 
313  case 'newMessage':
314  //--- check online status of the recipient ---//
315  $iContactRid = getContactId($sRspId, $sSndId);
316  if(!empty($iContactRid)) {
317  $sColor = $_REQUEST['color'] ? (int)$_REQUEST['color'] : 0;
318  $sBold = $_REQUEST['bold'] ? process_db_input($_REQUEST['bold']) : FALSE_VAL;
319  $sUnderline = $_REQUEST['underline'] ? process_db_input($_REQUEST['underline']) : FALSE_VAL;
320  $sItalic = $_REQUEST['italic'] ? process_db_input($_REQUEST['italic']) : FALSE_VAL;
321  $iSize = $_REQUEST['size'] ? (int)$_REQUEST['size'] : 12;
322  $sFont = $_REQUEST['font'] ? process_db_input($_REQUEST['font']) : "Arial";
323  $sStyle = serialize(array('color' => $sColor, 'bold' => $sBold, 'underline' => $sUnderline, 'italic' => $sItalic, 'smileset' => $sSmileset, 'size' => $iSize, 'font' => $sFont));
324  $iContactSid = getContactId($sSndId, $sRspId);
325  if(!empty($iContactSid))
326  $rResult = getResult("INSERT INTO `" . MODULE_DB_PREFIX . "Messages` (`ContactID`, `Message`, `Style`, `When`) VALUES ('" . $iContactSid . "', '" . $sMsg . "', '" . $sStyle . "', '" . time() . "')");
327  } else $rResult = addPend($sSndId, $sRspId, $sMsg);
328  $sContents = parseXml($aXmlTemplates['result'], $rResult ? TRUE_VAL : FALSE_VAL);
329  break;
330 
331  case 'help':
332  $sApp = isset($_REQUEST['app']) ? process_db_input($_REQUEST['app']) : "user";
333  $sContents = makeGroup("", "topics");
334  $sFileName = $sModulesPath . $sModule . "/help/" . $sApp . ".xml";
335  if(file_exists($sFileName)) {
336  $rHandle = @fopen($sFileName, "rt");
337  $sContents = @fread($rHandle, filesize($sFileName)) ;
338  fclose($rHandle);
339  }
340  break;
341 }
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
getBlockedUsers
getBlockedUsers($sBlockerId)
Definition: customFunctions.inc.php:28
refreshIMUsers
refreshIMUsers($iSndId, $iRspId)
Definition: functions.inc.php:11
removeFile
removeFile($sFileId)
Definition: functions.inc.php:270
$sSoundsUrl
$sSoundsUrl
Definition: header.inc.php:12
$sFilesUrl
$sFilesUrl
Definition: header.inc.php:11
getUserVideoLink
getUserVideoLink()
Definition: customFunctions.inc.php:48
$sModulesUrl
$sModulesUrl
Definition: header.inc.php:52
$sDataDir
$sDataDir
Definition: header.inc.php:66
$sRspId
$sRspId
Definition: actions.inc.php:19
php
getValue
getValue($sQuery)
Definition: db.inc.php:59
$iId
$iId
Definition: license.php:15
$sMsg
$sMsg
Definition: actions.inc.php:22
$sModule
if(!file_exists($sRayHeaderPath)) $sModule
Definition: index.php:14
setCurrentFile
setCurrentFile($sModule, $sFile, $sFolder="langs")
Definition: apiFunctions.inc.php:212
$sModulesPath
$sModulesPath
Definition: header.inc.php:53
$sLanguage
$sLanguage
Definition: actions.inc.php:19
addPend
addPend($iSndId, $iRspId, $sMsg)
Definition: functions.inc.php:32
$sOnline
$sOnline
Definition: actions.inc.php:12
$sSndId
$sSndId
Definition: actions.inc.php:10
getRMSUrl
getRMSUrl($sApplication, $bHttp=false)
Definition: apiFunctions.inc.php:116
$sFile
$sFile
Definition: actions.inc.php:26
$sFolder
$sFolder
Definition: index.php:15
$_REQUEST
$_REQUEST['action']
Definition: cmd.php:11
$sSmilesetsUrl
$sSmilesetsUrl
Definition: header.inc.php:71
getContactId
getContactId($sSender, $sRecipient)
Definition: functions.inc.php:45
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
getUserOnlineStatus
getUserOnlineStatus($sUser, $sRecipient)
Definition: functions.inc.php:38
$sServerApp
$sServerApp
Definition: header.inc.php:8
searchUser
searchUser($sValue, $sField="ID")
Definition: customFunctions.inc.php:127
$sSndPassword
$sSndPassword
Definition: actions.inc.php:14
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
$sContents
$sContents
Definition: XML.php:38
$sAction
$sAction
Definition: categories.php:274
empty
Attr AllowedRel this is empty
Definition: Attr.AllowedRel.txt:7
$sSex
$sSex
Definition: actions.inc.php:24
loginUser
loginUser($sName, $sPassword, $bLogin=false)
Definition: customFunctions.inc.php:19
$sSndNick
$sSndNick
Definition: actions.inc.php:12
$sName
$sName
Definition: ChWsbAdminTools.php:853
$sApp
$sApp
Definition: index.php:15
printFiles
printFiles($sModule, $sFolder="langs", $bGetDate=false, $bGetNames=false)
Definition: apiFunctions.inc.php:224
$sSmilesetsPath
$sSmilesetsPath
Definition: header.inc.php:72
getResult
getResult($sQuery)
Definition: db.inc.php:45