2
0

Omnom_Parser.js 34 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064
  1. /*
  2. OmnomIRC COPYRIGHT 2010,2011 Netham45
  3. This file is part of OmnomIRC.
  4. OmnomIRC is free software: you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation, either version 3 of the License, or
  7. (at your option) any later version.
  8. OmnomIRC is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with OmnomIRC. If not, see <http://www.gnu.org/licenses/>.
  14. */
  15. document.domain=HOSTNAME;
  16. messageList = Array();
  17. UserListArr = Array();
  18. curLine = 0;
  19. //messageBox = document.getElementById("MessageBox");
  20. messageBox = document.createElement("table");
  21. messageBox.style.width="100%";
  22. messageBox.style.height="100%";
  23. messageBox.className='MessageBox';
  24. mBoxCont = document.getElementById("mboxCont");
  25. Userlist = Array();
  26. scrolledDown = true;
  27. //******************************
  28. // Start Request Loop functions*
  29. //******************************
  30. function startLoop()
  31. {
  32. xmlhttp=getAjaxObject();
  33. if (xmlhttp==null) {
  34. alert ("Your browser does not support AJAX! Please update for OmnomIRC compatibility.");
  35. return;
  36. }
  37. xmlhttp.onreadystatechange=getIncomingLine;
  38. sendRequest();
  39. }
  40. inRequest = false;
  41. errorCount = 0;
  42. function cancelRequest()
  43. {
  44. xmlhttp.abort();
  45. inRequest = false;
  46. }
  47. function sendRequest()
  48. {
  49. if (inRequest)
  50. return;
  51. url = "Update.php?lineNum=" + curLine + "&channel=" + getChannelEn() + "&nick=" + base64.encode(userName) + "&signature=" + base64.encode(Signature);
  52. xmlhttp.open("GET",url,true);
  53. if (isBlurred()){
  54. setTimeout("xmlhttp.send(null);",2500); //Only query every 2.5 seconds maximum if not foregrounded.
  55. }
  56. else
  57. {
  58. setTimeout("xmlhttp.send(null);",75); //Wait for everything to get parsed before requesting again.
  59. }
  60. inRequest = true;
  61. }
  62. function getIncomingLine()
  63. {
  64. if (xmlhttp.readyState==4 || xmlhttp.readyState=="complete") {
  65. inRequest = false;
  66. if (xmlhttp.responseText == "Could not connect to SQL DB." || xmlhttp.status != 200)
  67. {
  68. errorCount++;
  69. if (errorCount == 10)
  70. {
  71. OmnomIRC_Error("OmnomIRC has lost connection to server. Please refresh to reconnect.");
  72. return;
  73. }
  74. else
  75. {
  76. sendRequest();
  77. return;
  78. }
  79. }
  80. if (xmlhttp.status == 200) addLines(xmlhttp.responseText); //Filter out 500s from timeouts
  81. errorCount = 0;
  82. sendRequest();
  83. }
  84. }
  85. function getAjaxObject()
  86. {
  87. xmlhttp=new XMLHttpRequest(); //Decent Browsers
  88. if (!xmlhttp || xmlhttp == undefined || xmlhttp == null) xmlhttp=new ActiveXObject("Msxml2.XMLHTTP"); //IE7+
  89. if (!xmlhttp || xmlhttp == undefined || xmlhttp == null) xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); //IE6-
  90. return xmlhttp;
  91. }
  92. //******************************
  93. // End Request Loop functions *
  94. //******************************
  95. //******************************
  96. // Start Parser *
  97. //******************************
  98. function addLines(message)
  99. {
  100. parts = message.split("\n");
  101. for (var i=0;i<parts.length;i++)
  102. {
  103. if (parts[i].length > 2)
  104. {
  105. addLine(parts[i]);
  106. }
  107. }
  108. }
  109. function addLine(message)
  110. {
  111. if (!message || message == null || message == undefined)
  112. return;
  113. lnNum = parseInt(message.split(":")[0]);
  114. curLine = parseInt(curLine);
  115. if (lnNum > curLine)
  116. curLine = lnNum;
  117. doScroll = false;
  118. if (mBoxCont.clientHeight + mBoxCont.scrollTop > mBoxCont.scrollHeight - 50) doScroll = true;
  119. //messageBox = document.getElementById("MessageBox");
  120. /*
  121. if ("\v" != "v") //If IE, take the slow but sure route (This is enough of a performance hit in all browsers to use the optimized code if possible. Also, IE can go fuck itself.)
  122. mBoxCont.innerHTML = '<table style="width:100%" class="messageBox" id="MessageBox">' + messageBox.innerHTML + parseMessage(message) + '</table>';
  123. else //If not IE, yay!
  124. messageBox.innerHTML = messageBox.innerHTML + parseMessage(message);*/
  125. var row = parseMessage(message);
  126. if (row)
  127. messageBox.appendChild(row);
  128. if (doScroll)mBoxCont.scrollTop = mBoxCont.scrollHeight + 50;
  129. }
  130. function parseMessage(message) //type of message
  131. {
  132. a = message;
  133. var parts = message.split(":");
  134. lnumber = parts[0];
  135. type = parts[1];
  136. online = parts[2];
  137. parsedMessage = "";
  138. for (i = 4;i < parts.length;i++)
  139. parts[i] = base64.decode(parts[i]);
  140. name = clickable_names(parts[4],online);
  141. var undefined;
  142. if (parts[5] == undefined || parts[5] == "")
  143. parts[5] = " ";
  144. if (parts[5] != undefined && parts[5] != null)
  145. {
  146. parsedMessage = parseColors(parts[5]);
  147. if (parts[5].toLowerCase().indexOf(userName.toLowerCase().substr(0,4)) >= 0 && hasLoaded && notifications && parts[4].toLowerCase() != "new")
  148. {
  149. showNotification("<" + parts[4] + "> " + parts[5]);
  150. if (highDing)
  151. {
  152. document.getElementById('ding').play();
  153. }
  154. }
  155. }
  156. if ((type == "message" || type == "action") && parts[4].toLowerCase() != "new")
  157. {
  158. parsedMessage = parseHighlight(parsedMessage);
  159. }
  160. retval = "";
  161. displayMessage = true;
  162. tdTime = document.createElement('td');
  163. tdTime.className="irc-date";
  164. tdName = document.createElement('td');
  165. tdName.className="name";
  166. tdName.innerHTML = '*';
  167. tdMessage = document.createElement('td');
  168. tdMessage.className=type;
  169. switch (type)
  170. {
  171. case "reload":
  172. startIndicator();
  173. cancelRequest();
  174. hasLoaded = false;
  175. scrolledDown = true;
  176. curLine = 0;
  177. UserListArr = Array();
  178. userListDiv.innerHTML = "";
  179. drawChannels();
  180. var body= document.getElementsByTagName('body')[0];
  181. var script= document.createElement('script');
  182. script.type= 'text/javascript';
  183. script.src= 'Load.php?count=125&channel=' + getChannelEn() + "&nick=" + base64.encode(userName) + "&signature=" + base64.encode(Signature) + "&time=" + (new Date).getTime();;
  184. script.onload= function(){parseUsers();startLoop();mBoxCont.scrollTop = mBoxCont.scrollHeight;hasLoaded = true;stopIndicator();};
  185. body.appendChild(script);
  186. displayMessage = false;
  187. break;
  188. case "join":
  189. tdMessage.innerHTML = name + " has joined "+getChannelDe();
  190. addUserJoin(parts[4],online);
  191. if (online == "1")
  192. return "";
  193. break;
  194. case "part":
  195. tdMessage.innerHTML = name + " has left "+getChannelDe()+" (" + parsedMessage + ")";
  196. removeUser(parts[4]);
  197. if (online == "1")
  198. return "";
  199. break;
  200. case "quit":
  201. tdMessage.innerHTML = name + " has quit IRC (" + parsedMessage + ")";
  202. removeUser(parts[4]);
  203. break;
  204. case "kick":
  205. tdMessage.innerHTML = name + " has kicked " + parts[5] + " from "+getChannelDe()+" (" + parts[6] + ")";
  206. removeUser(parts[4]);
  207. break;
  208. case "message":
  209. tdName.innerHTML = name;
  210. tdMessage.innerHTML = parsedMessage;break;
  211. case "action":
  212. tdMessage.innerHTML = name + " " + parsedMessage;break;
  213. case "mode":
  214. tdMessage.innerHTML = name + " set "+getChannelDe()+" mode " + parts[5];break;
  215. case "nick":
  216. tdMessage.innerHTML = name + " has changed his nick to " + parsedMessage;
  217. removeUser(parts[4]);
  218. addUserJoin(parts[5],online);
  219. break;
  220. case "topic":
  221. if (name!="" && name!="undefined" && name!=" " && (typeof name != 'undefined')) {
  222. tdMessage.innerHTML = name + " has changed the topic to " + parsedMessage;
  223. } else {
  224. displayMessage = false;
  225. }
  226. setTopic(parsedMessage);
  227. break;
  228. case "internal":
  229. tdMessage.innerHTML = parts[4];
  230. break;
  231. case "server":
  232. tdMessage.innerHTML = parsedMessage;
  233. break;
  234. case "pm":
  235. if (getChannelDe().toLowerCase() != ("*" + parts[4]).toLowerCase() && parts[4] != userName)//Not in the PM window
  236. {
  237. if (!hasLoaded)
  238. return "";
  239. tdMessage.innerHTML = parsedMessage;
  240. tdName.innerHTML = "(PM)" + name;
  241. if (hasLoaded)
  242. {
  243. openPMWindow(parts[4]);
  244. if (notifications)
  245. showNotification("(PM) <" + parts[4] + "> " + parts[5]);
  246. if (highDing)
  247. document.getElementById('ding').play();
  248. document.getElementById("*" + parts[4]).style.color="#C22";
  249. }
  250. }
  251. else
  252. {
  253. tdMessage.className="message";
  254. tdMessage.innerHTML = parsedMessage; //In the PM window
  255. tdName.innerHTML = name;
  256. }
  257. break;
  258. case "curline":
  259. return "";
  260. break;
  261. case "highlight":
  262. if (parts[6].toLowerCase() == "new") return "";
  263. //document.getElementById(parts[4]).style.color="#C22"; //This call will fail if they aren't in the chan. Crude, but effective.
  264. if (notifications)
  265. showNotification("(" + parts[4] + ") <" + parts[6] + "> " + parts[7]);
  266. if (highDing)
  267. document.getElementById('ding').play();
  268. return "";
  269. break;
  270. case "default":
  271. return "";
  272. break;
  273. }
  274. var row = document.createElement("tr");
  275. //pretag = '<tr style="width:100%;">';
  276. doHigh = !doHigh;
  277. if (lineHigh && doHigh && displayMessage)
  278. {
  279. //pretag = '<tr style="width:100%;" class="linehigh">';
  280. row.className = "linehigh";
  281. }
  282. doLineHigh = !doLineHigh;
  283. if (type != "internal") d = new Date(parts[3]*1000);
  284. if (type == "internal")
  285. {
  286. d = new Date();
  287. }
  288. tdTime.innerHTML = '[' + d.toLocaleTimeString() + ']';
  289. tdTime.style.height="1px";
  290. tdName.style.height="1px";
  291. tdMessage.style.height="1px";
  292. if (showTime) row.appendChild(tdTime);
  293. row.appendChild(tdName);
  294. row.appendChild(tdMessage);
  295. row.style.width="100%";
  296. row.style.height="1px";
  297. refreshThis(row);
  298. if (tdName.innerHTML == "*")
  299. statusTxt = tdName.innerHTML + " ";
  300. else
  301. statusTxt = "<" + StripHTML(tdName.innerHTML) + "> ";
  302. if (showTime)
  303. statusTxt = "[" + d.toLocaleTimeString() + "] " + statusTxt;
  304. statusTxt = statusTxt + StripHTML(tdMessage.innerHTML);
  305. changeStatusBarText(statusTxt);
  306. if (displayMessage)
  307. return row;
  308. else
  309. return;
  310. }
  311. function fixMBoxContHeight() {
  312. mBoxCont.scrollTop = mBoxCont.scrollHeight;
  313. }
  314. function parseSmileys(s) { //smileys
  315. if (showSmileys) {
  316. var addStuff = "";
  317. if (scrolledDown)
  318. addStuff = "onload='fixMBoxContHeight();'";
  319. s = s.replace(/(^| )(::\)|::-\))/g,"$1<img src='smileys/rolleyes.gif' alt='Roll Eyes' "+addStuff+">");
  320. s = s.replace(/(^| )(:\)|:-\))/g,"$1<img src='smileys/smiley.gif' alt='smiley' "+addStuff+">");
  321. s = s.replace(/(^| )(;\)|;-\))/g,"$1<img src='smileys/wink.gif' alt='Wink' "+addStuff+">");
  322. s = s.replace(/(^| )(&gt;:D|&gt;:-D)/g,"$1<img src='smileys/evil.gif' alt='Evil' "+addStuff+">");
  323. s = s.replace(/(^| )(:D|:-D)/g,"$1<img src='smileys/cheesy.gif' alt='Cheesy' "+addStuff+">");
  324. s = s.replace(/(^| )(;D|;-D)/g,"$1<img src='smileys/grin.gif' alt='Grin' "+addStuff+">");
  325. s = s.replace(/(^| )(&gt;:\(|&gt;:-\()/g,"$1<img src='smileys/angry.gif' alt='Angry' "+addStuff+">");
  326. s = s.replace(/(^| )(:\(|:-\()/g,"$1<img src='smileys/sad.gif' alt='Sad' "+addStuff+">");
  327. s = s.replace(/(^| )(:o|:O|:-o|:-O)/g,"$1<img src='smileys/shocked.gif' alt='Shocked' "+addStuff+">");
  328. s = s.replace(/(^| )(8\))/g,"$1<img src='smileys/cool.gif' alt='Cool' "+addStuff+">");
  329. s = s.replace(/(^| )\?\?\?/g,"$1<img src='smileys/huh.gif' alt='Huh' "+addStuff+">");
  330. s = s.replace(/(^| )(:P|:-P|:p|:-p)/g,"$1<img src='smileys/tongue.gif' alt='Tongue' "+addStuff+">");
  331. s = s.replace(/(^| )(:\[|:-\[)/g,"$1<img src='smileys/embarrassed.gif' alt='Embarrassed' "+addStuff+">");
  332. s = s.replace(/(^| )(:x|:-x|:X|:-X)/g,"$1<img src='smileys/lipsrsealed.gif' alt='Lips Sealed' "+addStuff+">");
  333. s = s.replace(/(^| )(:\\|:-\\)/g,"$1<img src='smileys/undecided.gif' alt='Undecided' "+addStuff+">");
  334. s = s.replace(/(^| ):-\*/g,"$1<img src='smileys/kiss.gif' alt='Kiss' "+addStuff+">");
  335. s = s.replace(/(^| )(:'\(|:'-\()/g,"$1<img src='smileys/cry.gif' alt='Cry' "+addStuff+">");
  336. s = s.replace(/:thumbsup:/g,"<img src='smileys/thumbsupsmiley.gif' alt='Thumbs Up' "+addStuff+">");
  337. s = s.replace(/(^| )O\.O/g,"$1<img src='smileys/shocked2.gif' alt='Shocked' "+addStuff+">");
  338. s = s.replace(/(^| )\^-\^/g,"$1<img src='smileys/azn.gif' alt='Azn' "+addStuff+">");
  339. s = s.replace(/(^| )&gt;B\)/g,"$1<img src='smileys/alien2.gif' alt='Alien' "+addStuff+">");
  340. s = s.replace(/(:banghead:|:headbang:)/g,"<img src='smileys/banghead.gif' alt='Bandhead' "+addStuff+">");
  341. s = s.replace(/:angel:/g,"<img src='smileys/ange.gif' alt='Angel' "+addStuff+">");
  342. s = s.replace(/(^| )\._\./g,"$1<img src='smileys/blah.gif' alt='Blah' "+addStuff+">");
  343. s = s.replace(/:devil:/g,"<img src='smileys/devil.gif' alt='Devil' "+addStuff+">");
  344. s = s.replace(/(^| )&lt;_&lt;/g,"$1<img src='smileys/dry.gif' alt='Dry' "+addStuff+">");
  345. s = s.replace(/:evillaugh:/g,"<img src='smileys/evillaugh.gif' alt='Evil Laugh' "+addStuff+">");
  346. s = s.replace(/:crazy:/g,"<img src='smileys/fou.gif' alt='Crazy' "+addStuff+">");
  347. s = s.replace(/:hyper:/g,"<img src='smileys/happy0075.gif' alt='Hyper' "+addStuff+">");
  348. s = s.replace(/:love:/g,"<img src='smileys/love.gif' alt='Love' "+addStuff+">");
  349. s = s.replace(/:mad:/g,"<img src='smileys/mad.gif' alt='Mad' "+addStuff+">");
  350. s = s.replace(/:w00t:/g,"<img src='smileys/smiley_woot.gif' alt='w00t' "+addStuff+">");
  351. s = s.replace(/(^| )\*\.\*/g,"$1<img src='smileys/psychedelicO_O.gif' alt='O.O.O' "+addStuff+">");
  352. s = s.replace(/(^| )D:/g,"$1<img src='smileys/bigfrown.gif' alt='Big Frown' "+addStuff+">");
  353. s = s.replace(/(^| )(XD|xD)/g,"$1<img src='smileys/XD.gif' alt='XD' "+addStuff+">");
  354. s = s.replace(/(^| )x\.x/g,"$1<img src='smileys/X_X.gif' alt='x.x' "+addStuff+">");
  355. s = s.replace(/:ninja:/g,"<img src='smileys/ninja.gif' alt='Ninja' "+addStuff+">");
  356. }
  357. return s;
  358. }
  359. function parseColors(colorStr) //colors
  360. {
  361. if (!colorStr || colorStr == null || colorStr == undefined) return;
  362. colorStr = clickable_links(colorStr);
  363. colorStr = parseSmileys(colorStr);
  364. //lcount = 0;
  365. //a = colorStr;
  366. var arrayResults = Array();
  367. colorStr+="\x0f";
  368. arrayResults = colorStr.split(RegExp("([\x02\x03\x0f\x16\x1d\x1f])"));
  369. colorStr="";
  370. var isBool = false;
  371. var numSpan = 0;
  372. var isItalic = false;
  373. var isUnderline = false;
  374. var s;
  375. var colorStrTemp = "1,0";
  376. for (var i=0;i<arrayResults.length;i++) {
  377. switch (arrayResults[i]) {
  378. case "\x03":
  379. for (var j=0;j<numSpan;j++)
  380. colorStr+="</span>";
  381. numSpan=1;
  382. i++;
  383. colorStrTemp = arrayResults[i];
  384. s=arrayResults[i].replace(/^([0-9]{1,2}),([0-9]{1,2})/g,"<span class=\"fg-$1\"><span class=\"bg-$2\">");
  385. if (s==arrayResults[i]) {
  386. s=arrayResults[i].replace(/^([0-9]{1,2})/g,"<span class=\"fg-$1\">");
  387. } else {
  388. numSpan++;
  389. }
  390. colorStr+=s;
  391. break;
  392. case "\x02":
  393. isBool = !isBool;
  394. if (isBool) {
  395. colorStr+="<b>";
  396. } else {
  397. colorStr+="</b>";
  398. }
  399. break;
  400. case "\x1d":
  401. isItalic = !isItalic;
  402. if (isItalic) {
  403. colorStr+="<i>";
  404. } else {
  405. colorStr+="</i>";
  406. }
  407. break;
  408. case "\x16":
  409. for (var j=0;j<numSpan;j++)
  410. colorStr+="</span>";
  411. numSpan=2;
  412. var stemp;
  413. s=colorStrTemp.replace(/^([0-9]{1,2}),([0-9]{1,2}).+/g,"<span class=\"fg-$2\"><span class=\"bg-$1\">");
  414. stemp=colorStrTemp.replace(/^([0-9]{1,2}),([0-9]{1,2}).+/g,"$2,$1");
  415. if (s==colorStrTemp) {
  416. s=colorStrTemp.replace(/^([0-9]{1,2}).+/g,"<span class=\"fg-0\"><span class=\"bg-$1\">");
  417. stemp=colorStrTemp.replace(/^([0-9]{1,2}).+/g,"0,$1");
  418. }
  419. colorStrTemp = stemp;
  420. colorStr+=s;
  421. break;
  422. case "\x1f":
  423. isUnderline = !isUnderline;
  424. if (isUnderline) {
  425. colorStr+="<u>";
  426. } else {
  427. colorStr+="</u>";
  428. }
  429. break;
  430. case "\x0f":
  431. if (isUnderline) {
  432. colorStr+="</u>";
  433. isUnderline=false;
  434. }
  435. if (isItalic) {
  436. colorStr+="</i>";
  437. isItalic=false;
  438. }
  439. if (isBool) {
  440. colorStr+="</b>"
  441. isBool = false;
  442. }
  443. for (var j=0;j<numSpan;j++)
  444. colorStr+="</span>";
  445. numSpan=0;
  446. break;
  447. default:
  448. colorStr+=arrayResults[i];
  449. }
  450. }
  451. /*Strip codes*/
  452. colorStr = colorStr.replace(/(\x03|\x02|\x1F|\x09|\x0F)/g,"");
  453. return(colorStr);
  454. }
  455. function parseHighlight(text) //highlight
  456. {
  457. if (text.toLowerCase().indexOf(userName.toLowerCase().substr(0,4)) >= 0)
  458. {
  459. style = "";
  460. if (highRed)
  461. style = style + "color:#C73232;";
  462. if (highBold)
  463. style = style + "font-weight:bold;";
  464. return '<span class="highlight" style="' + style + '">' + text + "</span>";
  465. }
  466. return text;
  467. }
  468. function clickable_links(text) //urls
  469. {
  470. if (!text || text == null || text == undefined) return;
  471. //text = text.replace(/http:\/\/www\.omnimaga\.org\//g,"h111://www.omnimaga.org/");
  472. //text = text.replace(/http:\/\/ourl\.ca\//g,"h111://ourl.ca/");
  473. //text = text.replace(/((h111:\/\/(www\.omnimaga\.org\/|ourl\.ca))[-a-zA-Z0-9@:;%_+.~#?&//=]+)/, '<a target="_top" href="$1">$1</a>');
  474. text = text.replace(RegExp("(^|.)(((f|ht)(tp|tps):\/\/)[^\\s\x02\x03\x0f\x16\x1d\x1f]*)","g"),'$1<a target="_blank" href="$2">$2</a>');
  475. text = text.replace(RegExp("(^|\\s)(www\.[^\\s\x02\x03\x0f\x16\x1d\x1f]*)","g"),'$1<a target="_blank" href="http://$2">$2</a>');
  476. //text = text.replace(/h111/g,"http");
  477. return text;
  478. }
  479. function clickable_names(name,isOnline) //omnomirc names
  480. {
  481. if (isOnline == "1")
  482. return '<a target="_top" href="http://www.omnimaga.org/index.php?action=ezportal;sa=page;p=13&userSearch=' + name + '">' + colored_names(name) + '</a>';
  483. return colored_names(name);
  484. }
  485. function colored_names(name) //colored neames (duh)
  486. {
  487. if (!coloredNames)
  488. return name;
  489. if (!name || name == null || name == undefined)
  490. return;
  491. rcolors = Array(19, 20, 22, 24, 25, 26, 27, 28, 29);
  492. sum = i = 0;
  493. while (name[i])
  494. sum += name.charCodeAt(i++);
  495. sum %= 9;
  496. return '<span class="uName-'+rcolors[sum]+'">'+name+'</span>';
  497. }
  498. function refreshThis(elementOnShow){
  499. var msie = 'Microsoft Internet Explorer';
  500. var tmp = 0;
  501. if (navigator.appName == msie){
  502. tmp = elementOnShow.offsetTop + 'px';
  503. }else{
  504. tmp = elementOnShow.offsetTop;
  505. }
  506. }
  507. //******************************
  508. // End Parser *
  509. //******************************
  510. //******************************
  511. // Userlist Start *
  512. //******************************
  513. userListContainer = document.getElementById("UserListArrContainer");
  514. userListDiv = document.getElementById("UserList");
  515. function addUser(user)
  516. {
  517. UserListArr.push(user);
  518. }
  519. function addUserJoin(user,online)
  520. {
  521. if(!hasLoaded) return;
  522. var userp = base64.encode(user) + ":" + online;
  523. UserListArr.push(userp);
  524. parseUsers();
  525. }
  526. function parseUsers()
  527. {
  528. if (!userListDiv || userListDiv == null)
  529. userListDiv = document.getElementById("UserList");
  530. userText = "";
  531. i = 0;
  532. UserListArr.sort(function(a,b)
  533. {
  534. var al=base64.decode(a).toLowerCase(),bl=base64.decode(b).toLowerCase();
  535. return al==bl?(a==b?0:a<b?-1:1):al<bl?-1:1;
  536. });
  537. for (i=0;i<UserListArr.length;i++)
  538. {
  539. parts = UserListArr[i].split(":");
  540. if (parts[1] == "0") userText = userText + "#" + base64.decode(parts[0]) + "<br/>";
  541. if (parts[1] == "1")
  542. userText = userText + '<a target="_top" href="http://www.omnimaga.org/index.php?action=ezportal;sa=page;p=13&userSearch=' +base64.decode(parts[0]) +
  543. '"><img src="http://omnomirc.www.omnimaga.org/omni.png" alt="Omnimaga User" title="Omnimaga User" border=0 width=8 height=8 />' + base64.decode(parts[0]) + '</a><br/>';
  544. if (parts[1] == "2") userText = userText + "!" + base64.decode(parts[0]) + "<br/>";
  545. }
  546. userText = userText + "<br/><br/>";
  547. userListDiv.innerHTML = userText;
  548. }
  549. function removeUser(user)
  550. {
  551. if(!hasLoaded) return;
  552. for (i in UserListArr)
  553. {
  554. parts = UserListArr[i].split(":");
  555. if (base64.decode(parts[0]) == user)
  556. UserListArr.splice(i,1);
  557. }
  558. parseUsers();
  559. }
  560. //******************************
  561. // Userlist End *
  562. //******************************
  563. //******************************
  564. // Load Start *
  565. //******************************
  566. function load()
  567. {
  568. cookieLoad();
  569. lineHigh = getOption(6,"T") == "T";
  570. doHigh = false;
  571. coloredNames = getOption(3,"F") == "T";
  572. highRed = getOption(2,"T") == "T";
  573. highBold = getOption(1,"T") == "T";
  574. enabled = getOption(5,"T") == "T";
  575. notifications = getOption(7,"F") == "T";
  576. highDing = getOption(8,"F") == "T";
  577. showExChans = getOption(9,"F") == "T";
  578. showTime = getOption(10,"F") == "T";
  579. doStatusUpdates = getOption(11,"T") == "T";
  580. showSmileys = getOption(12,"T") == "T";
  581. hasLoaded = false;
  582. if (!showSmileys) {
  583. document.getElementById('smileyMenuButton').src='smileys/smiley_grey.png';
  584. document.getElementById('smileyMenuButton').style.cursor='default';
  585. }
  586. if (!enabled)
  587. {
  588. mboxCont.appendChild(messageBox);
  589. messageBox.innerHTML = '<a href="#" onclick="toggleEnable();">OmnomIRC is disabled. Click here to enable.</a>';
  590. return false;
  591. }
  592. doLineHigh=true;
  593. var body= document.getElementsByTagName('body')[0];
  594. var chanScr= document.createElement('script');
  595. chanScr.type= 'text/javascript';
  596. chanScr.src= 'Channels.php';
  597. chanScr.onload= function(){channelSelectorCallback();readOldMessagesCookies();};
  598. body.appendChild(chanScr);
  599. chanList = document.getElementById('chanList');
  600. isBlurred();
  601. if (userName == "Guest"){
  602. var message = document.getElementById("message");
  603. message.disabled = "true";
  604. message.value = "You need to login if you want to chat!";
  605. }
  606. }
  607. //window.onLoad = load();
  608. //******************************
  609. // Load End *
  610. //******************************
  611. //******************************
  612. // Links Start *
  613. //******************************
  614. function toggleEnable()
  615. {
  616. setOption(5,!(getOption(5,'T') == 'T')?'T':'F');
  617. window.location.reload(true);
  618. }
  619. //******************************
  620. // Links End *
  621. //******************************
  622. //******************************
  623. // Message Send Start *
  624. //******************************
  625. function sendAJAXMessage(name,signature,message,chan) //'chan' kept for legacy purposes.
  626. {
  627. if (message[0] == "/")
  628. {
  629. if (parseCommand(message.substr(1)))
  630. return;
  631. }
  632. if (getChannelDe()[0] == "*")
  633. {
  634. d = new Date();
  635. str="0:pm:0:" + d.getTime()/1000 + ":" + base64.encode(name) + ":" + base64.encode(HTMLEncode(message)); //Print PMs locally.
  636. //addLine(str);
  637. }
  638. var theURL = "message.php?nick=" + base64.encode(name) + "&signature="+base64.encode(signature)+"&message=" + base64.encode(message) +"&channel=" + getChannelEn();
  639. xmlhttp2=new XMLHttpRequest();
  640. xmlhttp2.open("GET", theURL ,false);
  641. xmlhttp2.send(null);
  642. }
  643. //******************************
  644. // Message Send End *
  645. //******************************
  646. //******************************
  647. // Channel Selector Start *
  648. //******************************
  649. function channelSelectorCallback()
  650. {
  651. messageBox.cellPadding = "0px";
  652. messageBox.cellSpacing = "0px";
  653. if (showExChans)
  654. for (i in exChannels)
  655. channels.push(exChannels[i]);
  656. /*if (moreChans)
  657. for(i in moreChans)
  658. channels.push(base64.encode(moreChans[i]));*/
  659. loadChannels(); //From cookies
  660. drawChannels();
  661. scrolledDown = true;
  662. var body= document.getElementsByTagName('body')[0];
  663. var script= document.createElement('script');
  664. script.type= 'text/javascript';
  665. script.src= 'Load.php?count=125&channel=' + getChannelEn() + "&nick=" + base64.encode(userName) + "&signature=" + base64.encode(Signature) + "&time=" + (new Date).getTime();
  666. script.onload= function(){mBoxCont.appendChild(messageBox);parseUsers();startLoop();mBoxCont.scrollTop = mBoxCont.scrollHeight;hasLoaded = true;stopIndicator();};
  667. body.appendChild(script);
  668. }
  669. function changeChannel()
  670. {
  671. //Empty out dirty holders
  672. cancelRequest();
  673. startIndicator();
  674. mBoxCont.innerHTML = '';
  675. messageBox = document.createElement("table");
  676. messageBox.className='MessageBox';
  677. messageBox.style.width="100%";
  678. messageBox.style.height="100%";
  679. messageBox.cellPadding = "0px";
  680. messageBox.cellSpacing = "0px";
  681. hasLoaded = false;
  682. scrolledDown = true;
  683. curLine = 0;
  684. UserListArr = Array();
  685. userListDiv.innerHTML = "";
  686. drawChannels();
  687. var body= document.getElementsByTagName('body')[0];
  688. var script= document.createElement('script');
  689. script.type= 'text/javascript';
  690. script.src= 'Load.php?count=125&channel=' + getChannelEn() + "&nick=" + base64.encode(userName) + "&signature=" + base64.encode(Signature) + "&time=" + (new Date).getTime();;
  691. script.onload= function(){mBoxCont.appendChild(messageBox);parseUsers();startLoop();mBoxCont.scrollTop = mBoxCont.scrollHeight;hasLoaded = true;stopIndicator();};
  692. body.appendChild(script);
  693. }
  694. function drawChannels()
  695. {
  696. var chanText = '';//'<table>';
  697. for (i in channels)
  698. {
  699. var chanName = base64.decode(channels[i]);
  700. //partChannel
  701. style = "chan";
  702. chanText += '<table class="chanList"><td id="' + chanName + '" class="';
  703. if (getChannelIndex()==i)
  704. style = "curchan";
  705. chanText += style;
  706. chanText += '">';
  707. if (chanName.substr(0,1) != "#")
  708. chanText += '<span onclick="partChannel(\'' + chanName + '\')" onmouseover="this.style.color=\'#C73232\';this.style.font-weight=\'bolder\'" onmouseout="this.style.color=\'' + ((getChannelIndex()==i)?'#FFF':'#22C') + '\';this.style.font-weight=\'normal\'">x</span> ';
  709. chanText += '<span onclick="selectChannel(' + i + ')">';
  710. chanText += chanName;
  711. chanText += "</span>";
  712. chanText += "</td></table>";
  713. }
  714. //chanText += "</table>";
  715. document.getElementById("ChanList").innerHTML = chanText;
  716. }
  717. function selectChannel(index)
  718. {
  719. setOption(4,String.fromCharCode(index + 32),true);
  720. changeChannel();
  721. readOldMessagesCookies();
  722. }
  723. function getChannelEn()
  724. {
  725. return channels[getChannelIndex()];
  726. }
  727. function getChannelDe()
  728. {
  729. return base64.decode(channels[getChannelIndex()]);
  730. }
  731. function getChannelIndex()
  732. {
  733. var index = getOption(4,String.fromCharCode(32)).charCodeAt(0) - 32;
  734. if (index > (channels.length - 1))
  735. index = 0;
  736. return index;
  737. }
  738. //******************************
  739. // Channel Selector End *
  740. //******************************
  741. //******************************
  742. // Tab Completion Start *
  743. //******************************
  744. function searchUser(start,startAt)
  745. {
  746. if(!startAt)
  747. startAt = 0;
  748. for (i=0;i<UserListArr.length;i++)
  749. {
  750. parts = UserListArr[i].split(":");
  751. name = base64.decode(parts[0]).toLowerCase();
  752. if (name.indexOf(start.toLowerCase()) == 0 && startAt-- <= 0)
  753. return base64.decode(parts[0]);
  754. }
  755. return start;
  756. }
  757. //******************************
  758. // Tab Completion End *
  759. //******************************
  760. //******************************
  761. // Commands Start *
  762. //******************************
  763. function setTopic(message)
  764. {
  765. document.getElementById('topic').innerHTML = message;
  766. }
  767. function sendInternalMessage(message)
  768. {
  769. d = new Date();
  770. str="0:internal:0:" + parseInt(d.getTime()*1000) + ":" + base64.encode(message);
  771. addLine(str);
  772. }
  773. function OmnomIRC_Error(message)
  774. {
  775. sendInternalMessage('<span style="color:#C73232;">'+message+"</span>");
  776. }
  777. function joinChannel(paramaters)
  778. {
  779. if (paramaters.substr(0,1) != "@" && paramaters.substr(0,1) != "#")
  780. paramaters = "@" + paramaters;
  781. //Check if it already exists or not. If so, try to join it.
  782. var count = 0;
  783. for (i in channels)
  784. {
  785. if (base64.decode(channels[i]).toLowerCase() == paramaters.toLowerCase())
  786. {
  787. selectChannel(count);
  788. return;
  789. }
  790. count++;
  791. }
  792. //Channel not in existance.
  793. if (paramaters.substr(0,1) == "#")
  794. {
  795. sendInternalMessage('<span style="color:#C73232;"> Join Error: Cannot join new channels starting with #.</span>');
  796. return;
  797. }
  798. //Valid chan, add to list.
  799. channels.push(base64.encode(paramaters));
  800. saveChannels();
  801. selectChannel(channels.length-1);
  802. }
  803. function openPMWindow(paramaters)
  804. {
  805. if (paramaters.substr(0,1) == "@" && paramaters.substr(0,1) == "#")
  806. sendInternalMessage('<span style="color:#C73232;"> Query Error: Cannot query a channel. Use /join instead.</span>');
  807. if (paramaters.substr(0,1) != "*")
  808. paramaters = "*" + paramaters;
  809. for (i in channels)
  810. if (base64.decode(channels[i]).toLowerCase() == paramaters.toLowerCase())
  811. return; //PM already opened, don't open another.
  812. channels.push(base64.encode(paramaters));
  813. saveChannels();
  814. drawChannels();
  815. }
  816. function partChannel(paramaters)
  817. {
  818. if (paramaters == "")
  819. {
  820. partChannel(getChannelDe());
  821. return;
  822. }
  823. if (paramaters.substr(0,1) != "#")
  824. {
  825. for (i in channels)
  826. {
  827. if (base64.decode(channels[i]) == paramaters)
  828. {
  829. if (getChannelDe() == paramaters)
  830. {
  831. channels.splice(i,1);
  832. selectChannel(i-1);
  833. }
  834. else
  835. {
  836. channels.splice(i,1);
  837. drawChannels();
  838. }
  839. saveChannels();
  840. return;
  841. }
  842. }
  843. if (paramaters.substr(0,1) != "@" && paramaters.substr(0,1) != "#")
  844. {
  845. paramaters = "@" + paramaters;
  846. partChannel(paramaters);
  847. }
  848. else
  849. {
  850. sendInternalMessage('<span style="color:#C73232;"> Part Error: I cannot part ' + paramaters + '. (You are not in it.)</span>');
  851. }
  852. }
  853. else
  854. sendInternalMessage('<span style="color:#C73232;"> Part Error: I cannot part ' + paramaters + '. (That is not an OmnomIRC channel.)</span>');
  855. }
  856. function parseCommand(message)
  857. {
  858. var command = message.split(" ")[0];
  859. var paramaters = message.substr(command.length+1).toLowerCase();
  860. switch(command)
  861. {
  862. case "j":
  863. case "join":
  864. joinChannel(paramaters);
  865. return true;
  866. case "q":
  867. case "query":
  868. openPMWindow(paramaters);
  869. return true;
  870. case "win":
  871. case "w":
  872. case "window":
  873. if (parseInt(paramaters) > channels.length || parseInt(paramaters) <= 0)
  874. sendInternalMessage('<span style="color:#C73232;"> Invalid window selection. Valid options: 1-'+channels.length+'</span>');
  875. else
  876. selectChannel(parseInt(paramaters)-1);
  877. return true;
  878. case "p":
  879. case "part":
  880. partChannel(paramaters);
  881. return true;
  882. case "test":
  883. sendInternalMessage(Signature);
  884. return true;
  885. default:
  886. return false;
  887. }
  888. }
  889. //******************************
  890. // Commands End *
  891. //******************************
  892. //******************************
  893. // Dynamic Channels Start *
  894. //******************************
  895. function loadChannels()
  896. {
  897. if (document.cookie.indexOf("OmnomChannels") >= 0)
  898. {
  899. var moreChans = document.cookie.split(";")[0].replace(/^.*OmnomChannels=(.+?)|.*/, "\$1").split("%");
  900. for (i in moreChans)
  901. {
  902. if (moreChans[i][0] != "#" && moreChans[i] != "")
  903. {
  904. if (moreChans[i][0] == "^") moreChans[i][0] = "#";
  905. channels.push(moreChans[i]);
  906. }
  907. }
  908. }
  909. }
  910. function saveChannels()
  911. {
  912. var chanList = "";
  913. for (i in channels)
  914. {
  915. if (base64.decode(channels[i]).substr(0,1) != "#")
  916. {
  917. chanList = chanList + channels[i] + "%";
  918. }
  919. }
  920. chanList = chanList.substr(0,chanList.length-1);
  921. document.cookie = "OmnomChannels=" + chanList + ";expires=Sat, 20 Nov 2286 17:46:39 GMT;";
  922. }
  923. //******************************
  924. // Dynamic Channels End *
  925. //******************************
  926. //******************************
  927. // Focus Handler Start *
  928. //******************************
  929. var focusHandlerRegistered = false;
  930. function isBlurred() {
  931. if (focusHandlerRegistered == undefined)
  932. focusHandlerRegistered = false;
  933. if (!focusHandlerRegistered)
  934. registerFocusHandler();
  935. if (parent != undefined)
  936. return parent.window.bIsBlurred;
  937. else
  938. return bIsBlurred;
  939. }
  940. function registerFocusHandler() {
  941. focusHandlerRegistered = true;
  942. if (parent != undefined)//Child(iframe)
  943. {
  944. parent.window.bIsBlurred = false;
  945. parent.window.onblur = function(){ parent.window.bIsBlurred=true;if(console.log)console.log("Blur");return true; }
  946. parent.window.onfocus= function(){ parent.window.bIsBlurred=false;resize();if(console.log)console.log("Focus");return true;}
  947. }
  948. else //Not a child
  949. {
  950. window.onblur = function(){ bIsBlurred=true;if(console.log)console.log("Blur");return true; }
  951. window.onfocus= function(){ bIsBlurred=false;resize();if(console.log)console.log("Focus");return true;}
  952. }
  953. }
  954. //******************************
  955. // Focus Handler End *
  956. //******************************
  957. //******************************
  958. // Status Bar Updater Start *
  959. //******************************
  960. statusTxt = "";
  961. statusStarted = false;
  962. function startStatusBarUpdate()
  963. {
  964. if (!doStatusUpdates) return;
  965. if (!statusStarted)
  966. setInterval(doStatusBarUpdate,500);
  967. statusStarted = true;
  968. }
  969. function doStatusBarUpdate()
  970. {
  971. window.status=statusTxt;
  972. if (parent)
  973. parent.window.status=statusTxt;
  974. }
  975. function changeStatusBarText(msg)
  976. {
  977. statusTxt = msg;
  978. if (!statusStarted)
  979. startStatusBarUpdate();
  980. }
  981. //******************************
  982. // Status Bar Updater End *
  983. //******************************
  984. //******************************
  985. // HTML Tools Start *
  986. //******************************
  987. function HTMLEncode(str)
  988. {
  989. var div = document.createElement('div');
  990. var text = document.createTextNode(str);
  991. div.appendChild(text);
  992. return div.innerHTML;
  993. }
  994. function StripHTML(str)
  995. {
  996. var tmp = document.createElement("div");
  997. tmp.innerHTML = str;
  998. return tmp.textContent||tmp.innerText;
  999. }
  1000. String.prototype.trim = function() { return this.replace(/^\s+|\s+$/g, ""); };
  1001. //******************************
  1002. // HTML Tools End *
  1003. //******************************