omnomirc.js 26 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097
  1. /*
  2. OmnomIRC COPYRIGHT 2010,2011 Netham45
  3. OmnomIRC3 rewrite COPYRIGHT 2013 Nathaniel 'Eeems' van Diepen
  4. This file is part of OmnomIRC.
  5. OmnomIRC is free software: you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation, either version 3 of the License, or
  8. (at your option) any later version.
  9. OmnomIRC is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with OmnomIRC. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. (function(window,$,io,undefined){
  17. "use strict";
  18. var $o = window.OmnomIRC = window.$o = function(){
  19. return 'Version: '+version;
  20. },
  21. event = function(msg,type){
  22. if(settings.debug){
  23. type=typeof type == 'undefined'?'event':type;
  24. switch(type){
  25. case 'ready':type='document_ready';break;
  26. }
  27. log('['+type.toUpperCase()+'] '+msg);
  28. }
  29. },
  30. emit = window.emit = function(type,data){
  31. if($o.chat.connected()){
  32. socket.emit.apply(socket,arguments);
  33. }else{
  34. if(tabs.length > 0){
  35. $o.msg('Disconnected, cannot do anything');
  36. }
  37. }
  38. },
  39. noop = function(){},
  40. log = function(){
  41. console.log.apply(console,arguments);
  42. },
  43. exists = function(object){
  44. return typeof object != 'undefined';
  45. },
  46. prevent = function(e){
  47. e.stopImmediatePropagation();
  48. e.stopPropagation();
  49. e.preventDefault();
  50. return false;
  51. },
  52. selectedTab=0,
  53. settings = {
  54. colour: false,
  55. debug: false,
  56. timestamp: 'exact',
  57. server: location.origin,
  58. autoconnect: true,
  59. autojoin: [
  60. '#omnimaga',
  61. '#omnimaga-fr',
  62. '#irp'
  63. ],
  64. scrollspeed: 100,
  65. theme: 'default',
  66. nick: 'User'
  67. },
  68. tabs = [],
  69. properties = {
  70. nick: 'User',
  71. sig: '',
  72. tabs: tabs,
  73. themes: [
  74. 'default'
  75. ]
  76. },
  77. commands = [
  78. { // names
  79. cmd: 'names',
  80. fn: function(args){
  81. emit('names',{
  82. name: $o.ui.tabs.current().name
  83. });
  84. }
  85. },
  86. { // me
  87. cmd: 'me',
  88. help: 'Say something in third person',
  89. fn: function(args){
  90. var i,ret='';
  91. for(i=1;i<args.length;i++){
  92. ret += ' '+args[i];
  93. }
  94. emit('message',{
  95. from: 0,
  96. message: properties.nick+' '+ret,
  97. room: $o.ui.tabs.current().name
  98. });
  99. }
  100. },
  101. { // connect
  102. cmd: 'connect',
  103. fn: function(){
  104. if(!$o.chat.connected()){
  105. $o.chat.connect();
  106. }
  107. }
  108. },
  109. { // disconnect
  110. cmd: 'disconnect',
  111. fn: function(){
  112. $o.disconnect();
  113. }
  114. },
  115. { // nick
  116. cmd: 'nick',
  117. fn: function(args){
  118. $o.set('nick',args[1]);
  119. }
  120. },
  121. { // help
  122. cmd: 'help',
  123. fn: function(args){
  124. if(typeof args[1] == 'undefined'){
  125. var m = 'Commands:',i;
  126. for(i in commands){
  127. m += ' '+commands[i].cmd;
  128. }
  129. $o.msg(m);
  130. }else{
  131. var i,cmd;
  132. for(i in commands){
  133. cmd = commands[i];
  134. if(cmd.cmd == args[1] && typeof cmd.help != 'undefined'){
  135. $o.msg('Command /'+cmd.cmd+': '+cmd.help);
  136. return;
  137. }
  138. }
  139. $o.send('/help');
  140. }
  141. }
  142. },
  143. { // open
  144. cmd: 'open',
  145. fn: function(args){
  146. $o.ui.tabs.add(args[1]);
  147. }
  148. },
  149. { // clear
  150. cmd: 'clear',
  151. fn: function(args){
  152. $o.ui.tabs.current().clear();
  153. }
  154. },
  155. { // close
  156. cmd: 'close',
  157. fn: function(args){
  158. if(args.length > 1){
  159. $o.ui.tabs.remove(args[1]);
  160. }else{
  161. $o.ui.tabs.remove(selectedTab);
  162. }
  163. }
  164. },
  165. { // tabs
  166. cmd: 'tabs',
  167. fn: function(args){
  168. $o.msg('tabs:');
  169. for(var i in tabs){
  170. $o.msg(' ['+i+'] '+tabs[i].name);
  171. }
  172. }
  173. }
  174. ],
  175. handles = [
  176. { // names
  177. on: 'names',
  178. fn: function(data){
  179. var tab = $o.ui.tabs.tab(data.room),
  180. users = tab.users,
  181. i;
  182. tab.users = data.names;
  183. if($o.ui.tabs.idForName(data.room) == selectedTab){
  184. $o.ui.render.users();
  185. }
  186. $(users).each(function(i,v){
  187. if(v != null){
  188. if(tab.users.indexOf(v.trim()) == -1){
  189. emit('echo',{
  190. room: data.room,
  191. message: v+' left the room',
  192. from: 0
  193. });
  194. runHook('part',[
  195. v,
  196. data.room
  197. ]);
  198. }
  199. }
  200. });
  201. $(tab.users).each(function(i,v){
  202. if(v != null){
  203. if(users.indexOf(v.trim()) == -1){
  204. runHook('join',[
  205. v,
  206. data.room
  207. ]);
  208. }
  209. }
  210. });
  211. }
  212. },
  213. { // authorized
  214. on: 'authorized',
  215. fn: function(data){
  216. properties.nick = data.nick;
  217. for(var i in settings.autojoin){
  218. emit('join',{
  219. name: settings.autojoin[i]
  220. });
  221. }
  222. runHook('authorized');
  223. }
  224. },
  225. { // join
  226. on: 'join',
  227. fn: function(data){
  228. event('joined '+data.name);
  229. var flag = tabs.length == 0;
  230. $o.ui.tabs.add(data.name);
  231. if(flag){
  232. $o.ui.tabs.select(0);
  233. }
  234. }
  235. },
  236. { // reconnect
  237. on: 'reconnect',
  238. fn: function(data){
  239. event('reconnected');
  240. properties.connected = true;
  241. $o.chat.auth();
  242. runHook('reconnect');
  243. emit('echo',{
  244. room: $o.ui.tabs.current().name,
  245. from: 0,
  246. message: 'reconnected'
  247. });
  248. }
  249. },
  250. { // connect
  251. on: 'connect',
  252. fn: function(data){
  253. event('connected');
  254. properties.connected = true;
  255. $o.chat.auth();
  256. runHook('connect');
  257. emit('echo',{
  258. room: $o.ui.tabs.current().name,
  259. from: 0,
  260. message: 'connected'
  261. });
  262. }
  263. },
  264. { // disconnect
  265. on: 'disconnect',
  266. fn: function(data){
  267. event('disconnected');
  268. properties.connected = false;
  269. runHook('disconnected');
  270. $o.msg('* disconnected');
  271. }
  272. },
  273. { // message
  274. on: 'message',
  275. fn: function(data){
  276. event('recieved message');
  277. var date = new Date(),
  278. string,
  279. time = date.getTime(),
  280. child,
  281. i,
  282. msg = function(msg){
  283. string = '<span class="cell date_cell">[<abbr class="date date_'+time+'" title="'+date.toISOString()+'"></abbr>]</span>';
  284. child = $('<li>').html(string+'<span class="cell">'+
  285. msg
  286. .htmlentities()
  287. .replace(
  288. /(https?:\/\/(([-\w\.]+)+(:\d+)?(\/([\w/_\.]*(\?\S+)?)?)?))/g,
  289. "<a href=\"$1\" title=\"\">$1</a>"
  290. )
  291. +'</span>');
  292. $o.msg({html:child},data.room);
  293. };
  294. if(data.from != 0){
  295. msg(' <'+data.from+'> '+data.message);
  296. }else{
  297. msg(' * '+data.message);
  298. }
  299. abbrDate('abbr.date_'+time);
  300. if(settings.timestamp == ''){
  301. $('.date_cell').css('visibility','hidden');
  302. }else{
  303. $('.date_cell').css('visibility','visible');
  304. }
  305. runHook('message',[
  306. data.message,
  307. data.from,
  308. data.room
  309. ]);
  310. }
  311. }
  312. ],
  313. hooks = [
  314. { // load - style
  315. type: 'style',
  316. hook: 'load',
  317. fn: function(){
  318. // STUB
  319. event('testing == '+testing,'debug');
  320. }
  321. }
  322. ],
  323. currentPlugin = 0,
  324. runHook = function(name,args){
  325. var i,r,hook,fn,sandbox = {
  326. testing: 'test'
  327. };
  328. args=typeof args == 'undefined'?[]:args;
  329. for(i in hooks){
  330. hook = hooks[i];
  331. if(hook.hook == name){
  332. fn = (hook.fn+'').replace(/\/\/.+?(?=\n|\r|$)|\/\*[\s\S]+?\*\//g,'').replace(/\"/g,'\\"').replace(/\n/g,'').replace(/\r/g,'');
  333. fn = 'eval("with(this){r = ('+fn+').apply(this,args);}");';
  334. try{
  335. (new Function(fn)).call(sandbox);
  336. }catch(e){
  337. event('Hook failed to run: '+e+"\nFunction that ran: "+fn,'hook_error');
  338. }
  339. }
  340. if(r == false){
  341. break;
  342. }
  343. }
  344. return r;
  345. },
  346. version = '3.0',
  347. abbrDate = function(selector){
  348. if(settings.timestamp == 'fuzzy'){
  349. $(selector).timeago();
  350. }else{
  351. $(selector).each(function(){
  352. var timestamp = settings.timestamp,
  353. i,
  354. text='',
  355. date = new Date($(this).attr('title'));
  356. if(timestamp == 'exact'){
  357. timestamp = 'H:m:s t';
  358. }
  359. for(i=0;i<timestamp.length;i++){
  360. switch(timestamp[i]){
  361. case 'H':text+=((date.getHours()+11)%12)+1;break;
  362. case 'h':text+=date.getHours();break;
  363. case 'm':text+=(date.getMinutes()>9?'':'0')+date.getMinutes();break;
  364. case 's':text+=(date.getSeconds()>9?'':'0')+date.getSeconds();break;
  365. case 't':text+=(date.getHours()>11)?'pm':'am';break;
  366. default:text+=timestamp[i];
  367. }
  368. }
  369. $(this).text(text);
  370. }).timeago('dispose');
  371. }
  372. },
  373. socket,$i,$s,$h,$cl,$c,$tl,hht;
  374. $.extend($o,{
  375. version: function(){
  376. return version;
  377. },
  378. register: {
  379. theme: function(name){
  380. if(-1==$.inArray(properties.themes,name)){
  381. properties.themes.push(name);
  382. runHook('theme',[name]);
  383. return true;
  384. }
  385. return false;
  386. },
  387. command: function(name,fn,help){
  388. if(-1==$.inArray(commands,name)){
  389. var o = {
  390. cmd: name,
  391. fn: fn
  392. };
  393. if(typeof help != 'undefined'){
  394. o.help = help;
  395. }
  396. commands.push(o);
  397. return true;
  398. }
  399. return false;
  400. },
  401. plugin: function(){
  402. // STUB
  403. },
  404. setting: function(name,defaultVal,validate,values){
  405. // STUB
  406. },
  407. hook: function(event,fn){
  408. }
  409. },
  410. hook: function(event,fn){
  411. $o.register.hook(event,fn);
  412. },
  413. ui: {
  414. render: {
  415. settings: function(){
  416. var name,setting,frag = document.createDocumentFragment(),item;
  417. for(name in settings){
  418. setting = $o.get(name,true);
  419. switch(setting.type){
  420. case 'select':
  421. item = $('<select>')
  422. .attr('id','setting_'+name)
  423. .change(function(){
  424. $o.set(this.id.substr(8),$(this).find(':selected').text(),false);
  425. });
  426. for(var i in setting.values){
  427. item.append(
  428. $('<option>')
  429. .text(setting.values[i])
  430. );
  431. }
  432. item.find(':contains('+setting.val+')').attr('selected','selected');
  433. break;
  434. case 'array':
  435. item = $('<input>')
  436. .attr({
  437. type: 'text',
  438. id: 'setting_'+name
  439. })
  440. .val(setting.val)
  441. .change(function(){
  442. $o.set(this.id.substr(8),$(this).val().split(','),false);
  443. });
  444. break;
  445. case 'boolean':
  446. item = $('<input>')
  447. .attr({
  448. type: 'checkbox',
  449. id: 'setting_'+name
  450. })
  451. .change(function(){
  452. $o.set(this.id.substr(8),$(this).is(':checked'),false);
  453. });
  454. if(setting.val){
  455. item.attr('checked','checked');
  456. }
  457. break;
  458. case 'number':
  459. case 'string':default:
  460. item = $('<input>')
  461. .attr({
  462. type: 'text',
  463. id: 'setting_'+name
  464. })
  465. .val(setting.val)
  466. .change(function(){
  467. $o.set(this.id.substr(8),$(this).val(),false);
  468. });
  469. }
  470. $(frag).append(
  471. $('<li>')
  472. .addClass('row')
  473. .append(
  474. $('<span>')
  475. .text(name)
  476. .addClass('cell')
  477. )
  478. .append(
  479. $('<span>')
  480. .append(item)
  481. .addClass('cell')
  482. )
  483. );
  484. }
  485. if(settings.debug){
  486. $(frag).append(
  487. $('<li>')
  488. .addClass('row')
  489. .attr('id','console-log-controls')
  490. .append(
  491. $('<span>')
  492. .text('Debug Log')
  493. .addClass('cell')
  494. )
  495. .append(
  496. $('<span>')
  497. .addClass('cell')
  498. .append(
  499. $('<button>')
  500. .text('Show')
  501. .click(function(){
  502. $(this).text($('#console-log').is(':visible')?'Show':'Hide');
  503. $('#console-log').toggle();
  504. $('#console-log-clear').toggle();
  505. $('#content').toggle();
  506. })
  507. )
  508. .append(
  509. $('<button>')
  510. .text('Clear')
  511. .attr('id','console-log-clear')
  512. .hide()
  513. .click(function(){
  514. $('#console-log-pre').html('');
  515. })
  516. )
  517. )
  518. );
  519. }else{
  520. $('#console-log-pre').html('');
  521. $('#console-log').hide();
  522. $('#content').show();
  523. }
  524. $('#settings-list').html(frag);
  525. },
  526. users: function(){
  527. event('Rendering userlist');
  528. var $ul = $('#user-list').html(''),
  529. i,
  530. names = $o.ui.tabs.current().users;
  531. for(i in names){
  532. $ul.append(
  533. $('<li>').text(names[i])
  534. );
  535. }
  536. },
  537. tab: function(){
  538. $cl.html($($o.ui.tabs.current().body).clone());
  539. },
  540. tablist: function(){
  541. $tl.html('');
  542. var i,tab;
  543. for(i in tabs){
  544. tab = $o.ui.tabs.obj(i);
  545. if(i==selectedTab){
  546. tab.addClass('clicked');
  547. $('#title').text(tabs[i].name);
  548. $('#topic').text(tabs[i].topic);
  549. }
  550. $tl.append(tab);
  551. }
  552. if($tl.get(0).scrollHeight-20 != $tl.scrollTop()){
  553. $('#tabs-scroll-right').removeClass('disabled');
  554. }
  555. if($tl.scrollTop() != 0){
  556. $('#tabs-scroll-left').removeClass('disabled');
  557. }
  558. }
  559. },
  560. tabs: {
  561. add: function(name){
  562. event('Tab added: '+name);
  563. if(!(function(){
  564. for(var i in tabs){
  565. if(name==tabs[i].name){
  566. return true;
  567. }
  568. }
  569. return false;
  570. })()){
  571. var scroll = $.localStorage('tabs'),
  572. i,
  573. frag = document.createDocumentFragment(),
  574. id = tabs.length;
  575. for(i in scroll){
  576. if(scroll[i].name == name){
  577. scroll[i].body = $(scroll[i].body).slice(-10);
  578. $(frag)
  579. .append(scroll[i].body)
  580. .append(
  581. $('<li>').html('<span class="to_remove">-- loaded old scrollback for '+scroll[i].date+' --</span>')
  582. )
  583. .children()
  584. .children('.remove')
  585. .remove();
  586. $(frag)
  587. .children()
  588. .children('.to_remove')
  589. .removeClass('to_remove')
  590. .addClass('remove');
  591. event('loading old tab scrollback for '+name+' last saved +'+scroll[i].date);
  592. }
  593. }
  594. tabs.push({
  595. name: name,
  596. body: frag,
  597. date: new Date(),
  598. send: function(msg){
  599. $o.chat.send(msg,$o.ui.tabs.tab(id).name);
  600. },
  601. close: function(){
  602. $o.ui.tabs.remove(id);
  603. },
  604. users: [],
  605. names: function(){
  606. emit('names',{
  607. name: $o.ui.tabs.tab(id).name
  608. });
  609. },
  610. select: function(){
  611. $o.ui.tabs.select(id);
  612. },
  613. clear: function(){
  614. $cl.html('');
  615. $o.ui.tabs.tab(id).body = document.createDocumentFragment();
  616. emit('echo',{
  617. room: $o.ui.tabs.tab(id).name,
  618. message: 'messages cleared',
  619. from: 0
  620. });
  621. }
  622. });
  623. $tl.append($o.ui.tabs.obj(id));
  624. $o.ui.render.tablist();
  625. $o.ui.render.users();
  626. }else{
  627. event('Attempted to add an existing tab');
  628. }
  629. },
  630. remove: function(name){
  631. if(typeof name == 'number'){
  632. name = tabs[name].name;
  633. }
  634. for(var id=0;id<tabs.length;id++){
  635. if($o.ui.tabs.tab(id).name == name){
  636. event('Tab removed: '+$o.ui.tabs.tab(id).name);
  637. emit('part',{
  638. name: $o.ui.tabs.tab(id).name
  639. });
  640. tabs.splice(id,1);
  641. if(selectedTab==id&&selectedTab>0){
  642. selectedTab--;
  643. }
  644. break;
  645. }
  646. }
  647. $o.ui.render.tablist();
  648. $cl.html($o.ui.tabs.current().body);
  649. $o.ui.render.users();
  650. },
  651. selected: function(){
  652. return selectedTab;
  653. },
  654. idForName: function(name){
  655. for(var i in tabs){
  656. if(tabs[i].name == name){
  657. return i;
  658. }
  659. }
  660. return false;
  661. },
  662. tab: function(id){
  663. if(typeof id == 'string' && !id.isNumber()){
  664. id = $o.ui.tabs.idForName(id);
  665. if(!id) return false;
  666. }
  667. return typeof tabs[id] == 'undefined'?false:tabs[id];
  668. },
  669. dom: function(id){
  670. if(typeof id == 'string' && !id.isNumber()){
  671. id = $o.ui.tabs.idForName(id);
  672. if(!id) return false;
  673. }
  674. return typeof tabs[id] == 'undefined'?false:tabs[id].body;
  675. },
  676. obj: function(id){
  677. if(typeof id !== 'undefined'){
  678. if(typeof id == 'string' && !id.isNumber()){
  679. id = $o.ui.tabs.idForName(id);
  680. if(!id) return;
  681. }
  682. return $('<div>')
  683. .addClass('tab')
  684. .text($o.ui.tabs.tab(id).name)
  685. .mouseup(function(e){
  686. switch(e.which){
  687. case 1: // RMB
  688. if($(this).data('id')!=selectedTab){
  689. $o.ui.tabs.select($(this).data('id'));
  690. return prevent(e);
  691. }
  692. break;
  693. case 2: // MMB
  694. $(this).children('span.close-button').click();
  695. return prevent(e);
  696. break;
  697. case 3: // LMB
  698. return prevent(e);
  699. break;
  700. default:
  701. return prevent(e);
  702. }
  703. })
  704. .append(
  705. $('<span>')
  706. .addClass('close-button')
  707. .click(function(){
  708. $o.ui.tabs.remove(id);
  709. return false;
  710. })
  711. .css({
  712. 'position': 'absolute',
  713. 'background-color': 'inherit',
  714. 'top': 0,
  715. 'right': 0
  716. })
  717. .html('&times;')
  718. )
  719. .data('id',id);
  720. }
  721. },
  722. select: function(id){
  723. if(typeof id == 'string' && !id.isNumber()){
  724. id = $o.ui.tabs.idForName(id);
  725. if(!id) return false;
  726. }
  727. event(id+' '+$o.ui.tabs.tab(id).name,'tab_select');
  728. if(id<tabs.length&&id>=0){
  729. selectedTab=id;
  730. }
  731. $tl.children('.clicked').removeClass('clicked');
  732. $($tl.children().get(id)).addClass('clicked');
  733. $('#title').text($o.ui.tabs.tab(id).name);
  734. $('#topic').text($o.ui.tabs.tab(id).topic);
  735. $cl.html($($o.ui.tabs.tab(id).body).clone());
  736. abbrDate('abbr.date');
  737. $o.ui.render.users();
  738. setTimeout(function scrollContent(){
  739. if($c.scrollTop() < $c[0].scrollHeight){
  740. $c.scrollTop($c.scrollTop()+1);
  741. setTimeout(scrollContent,settings.scrollspeed);
  742. }else{
  743. event('scrolling stopped');
  744. }
  745. },settings.scrollspeed);
  746. },
  747. current: function(){
  748. if(tabs.length > 0 && tabs.length > selectedTab){
  749. return tabs[selectedTab];
  750. }else{
  751. return {
  752. name: '',
  753. body: document.createDocumentFragment(),
  754. date: new Date(),
  755. send: noop,
  756. close: noop,
  757. users: [],
  758. names: noop,
  759. select: noop,
  760. clear: noop
  761. }
  762. }
  763. }
  764. },
  765. },
  766. chat: {
  767. connect: function(server){
  768. if($o.chat.connected()){
  769. $o.disconnect();
  770. }
  771. if(typeof server == 'undefined'){
  772. server = settings.server;
  773. }
  774. socket = window.socket = io.connect(server);
  775. for(var i in handles){
  776. socket.on(handles[i].on,handles[i].fn);
  777. }
  778. $o.chat.auth();
  779. },
  780. disconnect: function(){
  781. if($o.chat.connected()){
  782. socket.disconnect();
  783. }
  784. },
  785. connected: function(){
  786. return typeof socket == 'undefined'?false:properties.connected;
  787. },
  788. send: function(msg,room){
  789. if(typeof room == 'undefined'){
  790. room = $o.ui.tabs.current().name;
  791. }
  792. if(msg !== ''){
  793. if(msg[0] == '/' && msg[1] != '/'){
  794. var args = msg.split(' '),
  795. cmd = args[0].substr(1),
  796. i;
  797. event(msg,'command');
  798. for(i in commands){
  799. if(commands[i].cmd == cmd){
  800. commands[i].fn(args);
  801. return;
  802. }
  803. }
  804. $o.msg(cmd+' is not a valid command.');
  805. }else{
  806. event(msg,'send');
  807. emit('message',{
  808. message: msg,
  809. room: room,
  810. from: properties.nick
  811. });
  812. }
  813. }
  814. },
  815. auth: function(){
  816. if(settings.nick == ''){
  817. $o.set('nick','User');
  818. return;
  819. }
  820. emit('auth',{
  821. nick: settings.nick
  822. // TODO - send authorization info
  823. });
  824. }
  825. },
  826. get: function(name,formatted){
  827. if(typeof formatted == 'undefined'){
  828. return exists(settings[name])?settings[name]:false;
  829. }else{
  830. var val = $o.get(name),
  831. type,
  832. values = false;
  833. switch(name){
  834. case 'theme':
  835. type = 'select';
  836. values = properties.themes;
  837. break;
  838. case 'autojoin':type = 'array';break;
  839. case 'timestamp':type = 'string';break;
  840. default:
  841. type = typeof val;
  842. }
  843. return {
  844. type: type,
  845. val: val,
  846. values: values,
  847. name: name
  848. };
  849. }
  850. },
  851. set: function(name,value,render){
  852. if(exists(settings[name])){
  853. if(!runHook('setting',[
  854. name,
  855. settings[name],
  856. value,
  857. $o.get(name,true).values
  858. ])){
  859. return false;
  860. }
  861. settings[name] = value;
  862. $.localStorage('settings',JSON.stringify(settings));
  863. switch(name){
  864. case 'timestamp':
  865. abbrDate('abbr.date');
  866. if(settings.timestamp == ''){
  867. $('.date_cell').css('visibility','hidden');
  868. }else{
  869. $('.date_cell').css('visibility','visible');
  870. }
  871. break;
  872. case 'nick':
  873. $o.chat.auth();
  874. break;
  875. case 'debug':
  876. if(typeof render != 'undefined'){
  877. $o.ui.render.settings();
  878. }
  879. break;
  880. }
  881. if(typeof render == 'undefined'){
  882. $o.ui.render.settings();
  883. }
  884. return true;
  885. }else{
  886. return false;
  887. }
  888. },
  889. prop: function(name){
  890. return exists(properties[name])?properties[name]:null;
  891. },
  892. send: function(msg){
  893. $o.chat.send(msg);
  894. },
  895. msg: function(msg,tabName){
  896. var frag;
  897. if(typeof tabName == 'undefined' || tabName == $o.ui.tabs.current().name || typeof $o.ui.tabs.tab(tabName).body == 'undefined'){
  898. frag = document.createDocumentFragment();
  899. }else{
  900. frag = $o.ui.tabs.tab(tabName).body;
  901. }
  902. try{
  903. switch(typeof msg){
  904. case 'string':
  905. $(frag).append($('<li>').html(msg.htmlentities()));
  906. break;
  907. case 'object':
  908. if(typeof msg.html == 'undefined'){
  909. $(frag).append($('<li>').html('&lt;'+msg.user+'&gt;&nbsp;'+msg.text.htmlentities()));
  910. }else{
  911. $(frag).append(msg.html);
  912. }
  913. break;
  914. }
  915. }catch(e){event('Failed to add message','error')}
  916. if(tabs.length > 0){
  917. $($o.ui.tabs.tab(tabName).body || $o.ui.tabs.current().body).append(frag);
  918. }
  919. var scroll = [],i,html;
  920. for(i in tabs){
  921. html = '';
  922. $(tabs[i].body).children().each(function(){
  923. html += this.outerHTML;
  924. });
  925. scroll.push({
  926. name: tabs[i].name,
  927. body: html,
  928. date: new Date().toString()
  929. });
  930. }
  931. $.localStorage('tabs',scroll);
  932. if(typeof tabName == 'undefined' || tabName == $o.ui.tabs.current().name){
  933. $o.ui.tabs.select(selectedTab);
  934. }
  935. },
  936. event: function(event_name,message){
  937. event(message,event_name);
  938. }
  939. });
  940. String.prototype.htmlentities = function(){
  941. return this
  942. .replace(/&/g, '&amp;')
  943. .replace(/</g, '&lt;')
  944. .replace(/>/g, '&gt;')
  945. .replace(/\n/g,'<br/>')
  946. .replace(/\t/g, '&nbsp;&nbsp;&nbsp;&nbsp;')
  947. .replace(/\s/g, '&nbsp;')
  948. .replace(/"/g, '&quot;');
  949. };
  950. $(document).ready(function(){
  951. $.extend(settings,$.parseJSON($.localStorage('settings')));
  952. $.localStorage('settings',JSON.stringify(settings));
  953. $i = $('#input');
  954. $s = $('#send');
  955. $cl = $('#content-list');
  956. $c = $('#content');
  957. $tl = $('#tabs-list');
  958. $h = $('#head');
  959. $s.click(function(){
  960. if(!$s.hasClass('clicked')){
  961. $s.addClass('clicked');
  962. setTimeout(function(){
  963. $s.removeClass('clicked');
  964. },500);
  965. }
  966. $o.send($i.val());
  967. $i.val('');
  968. });
  969. $i.keypress(function(e){
  970. if(e.keyCode == 13){
  971. if(!$s.hasClass('clicked')){
  972. $s.addClass('clicked');
  973. setTimeout(function(){
  974. $s.removeClass('clicked');
  975. },500);
  976. }
  977. $o.send($i.val());
  978. $i.val('');
  979. }
  980. });
  981. $('#settings, #users').click(function(){
  982. $(this).addClass('open');
  983. $(this).children('.close-button').show();
  984. }).hover(function(){
  985. $(this).addClass('hovered');
  986. },function(){
  987. $(this).removeClass('hovered');
  988. }).children('.close-button').click(function(){
  989. $(this).parent().removeClass('open');
  990. $(this).hide();
  991. return false;
  992. }).hide();
  993. $('#users').hoverIntent({
  994. out: function(){
  995. $(this).removeClass('open');
  996. $(this).children('.close-button').hide();
  997. },
  998. timeout: 1000
  999. });
  1000. $('#content').click(function(){
  1001. $('#settings, #users, #head').removeClass('hovered').removeClass('open');
  1002. $('#settings, #users').children('.close-button').hide()
  1003. });
  1004. $('.unselectable').attr('unselectable','on');
  1005. $.contextMenu({
  1006. selector: 'div.tab',
  1007. items: {
  1008. add: {
  1009. name: 'New Tab',
  1010. icon: 'add',
  1011. callback: function(){
  1012. $(this).contextMenu('hide');
  1013. $o.ui.tabs.add(prompt('Channel'));
  1014. }
  1015. },
  1016. s1: '',
  1017. close: {
  1018. name: 'Close',
  1019. icon: 'delete',
  1020. callback: function(){
  1021. $(this).contextMenu('hide');
  1022. $o.ui.tabs.remove($(this).data('id'));
  1023. }
  1024. }
  1025. },
  1026. zIndex: 99999,
  1027. trigger: 'right'
  1028. });
  1029. $.contextMenu({
  1030. selector: '#tabs-list',
  1031. items: {
  1032. add: {
  1033. name: 'New Tab',
  1034. icon: 'add',
  1035. callback: function(){
  1036. $(this).contextMenu('hide');
  1037. $o.ui.tabs.add(prompt('channel'));
  1038. }
  1039. }
  1040. },
  1041. zIndex: 99999,
  1042. trigger: 'right'
  1043. });
  1044. $('#tabs-scroll-right').click(function(){
  1045. event('scroll right');
  1046. $tl.scrollTop(($tl.scrollTop()||0)+20);
  1047. if($tl.get(0).scrollHeight-20 == $tl.scrollTop()){
  1048. $('#tabs-scroll-right').addClass('disabled');
  1049. }
  1050. $('#tabs-scroll-left').removeClass('disabled');
  1051. });
  1052. $('#tabs-scroll-left').click(function(){
  1053. event('scroll left');
  1054. $tl.scrollTop(($tl.scrollTop()||0)-20);
  1055. if($tl.scrollTop() == 0){
  1056. $('#tabs-scroll-left').addClass('disabled');
  1057. }
  1058. $('#tabs-scroll-right').removeClass('disabled');
  1059. });
  1060. (function scrollup(){
  1061. $('#tabs-scroll-left').click();
  1062. if($tl.scrollTop() != 0){
  1063. setTimeout(scrollup,10);
  1064. }
  1065. })();
  1066. event('Date '+new Date,'ready');
  1067. $h.addClass('hovered');
  1068. setTimeout(function(){
  1069. $h.removeClass('hovered');
  1070. },1000);
  1071. $o.ui.render.settings();
  1072. if(settings.autoconnect){
  1073. $o.chat.connect();
  1074. }
  1075. });
  1076. window.io = null;
  1077. runHook('load');
  1078. })(window,jQuery,io);
  1079. if (!Date.prototype.toISOString) {
  1080. Date.prototype.toISOString = function() {
  1081. function pad(n) { return n < 10 ? '0' + n : n }
  1082. return this.getUTCFullYear() + '-'
  1083. + pad(this.getUTCMonth() + 1) + '-'
  1084. + pad(this.getUTCDate()) + 'T'
  1085. + pad(this.getUTCHours()) + ':'
  1086. + pad(this.getUTCMinutes()) + ':'
  1087. + pad(this.getUTCSeconds()) + 'Z';
  1088. };
  1089. }
  1090. if(!String.prototype.isNumber){
  1091. String.prototype.isNumber = function(){return /^\d+$/.test(this);}
  1092. }