-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchatHacks.js
641 lines (588 loc) · 24.5 KB
/
chatHacks.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
/*
* ChatHacks.js, by Monchoman45.
* Version 7.0
*
* Features:
* Ability to clear your chat window
* A host of slash commands
* Ability to create multi user private chats
* Inline alerts every time your away status changes
* Icons next to messages by staff and chat mods in the room
* Pings when someone mentions your name or any other specified phrases
*/
if(wgCanonicalSpecialPageName == 'Chat') {
window.hasFocus = true;
window.dinged = false;
window.ding = 0;
window.titleorig = document.title;
function Unding() { //for fixing the title after you've been dinged
document.getElementsByTagName('title')[0].innerHTML = window.titleorig;
clearInterval(window.ding);
window.dinged = false;
}
$(window).bind('focus', Unding);
$(window).bind('focus', function() {window.hasFocus = true;});
$(window).bind('blur', function() {window.hasFocus = false;});
//Function for adding messages to the window
NodeChatDiscussion.prototype.iconPing = function (chat) {
var icon = '';
for(var i in this.model.users.models) {
if(this.model.users.models[i].attributes.name == chat.attributes.name) {
if(this.model.users.models[i].attributes.isStaff) {
icon = ' <img class="stafficon" src="http://images2.wikia.nocookie.net/monchbox/images/f/f3/Icon-staff.png">';
}
else if(this.model.users.models[i].attributes.isModerator) {
icon = ' <img class="modicon" src="http://vignette2.wikia.nocookie.net/clubpenguin/images/c/c7/Moderator_badge.png/revision/latest?cb=20120723155212">';
}
break;
}
}
if(icon) {this.chatUL.children().last().children('.username').html(this.chatUL.children().last().children('.username').html() + icon);}
if(mainRoom.isInitialized && chat.attributes.name != wgUserName && !chat.attributes.isInlineAlert) {
window.dinged = true;
//resolve HTML
var text = chat.attributes.text;
var pings = document.getElementById('pings').value.removeTrailing('\n').split('\n');
for(var i = 0; i < pings.length; i++) {
if(text.toLowerCase().indexOf(pings[i].toLowerCase()) != -1 || this != mainRoom.viewDiscussion) {
if(!window.hasFocus) { //Only annoy people if the window isn't focused
document.getElementById('sound').innerHTML = '<audio src="http://vignette2.wikia.nocookie.net/clubpenguin/images/c/ca/Ding_Sound_Effect.ogg/revision/latest?cb=20160117104141" autoplay=""></audio>';
if(!window.dinged) {window.ding = setInterval('FlashTitle()', 500);}
}
this.scrollToBottom();
if(this == mainRoom.viewDiscussion) {
var ref = text.toLowerCase().indexOf(pings[i].toLowerCase());
var phrase = text.slice(ref, ref + pings[i].length);
this.chatUL.children().last().children('.message').addClass('ping');
}
break;
}
}
}
//Kill emoticons
this.chatUL.children().last().children('.message img').each(function() {this.outerHTML = '<span onclick="this.outerHTML = decodeURIComponent(\'' + encodeURIComponent(this.outerHTML) + '\');" style="color:blue; cursor:pointer;" title="' + i18n['emote'] + '">' + this.title + '</span>';});
}
mainRoom.model.chats.bind('afteradd', $.proxy(mainRoom.viewDiscussion.iconPing, mainRoom.viewDiscussion));
//Away status functions
NodeChatController.prototype.setAway = function (msg){
if(!msg) {var msg = '';}
$().log("Attempting to go away with message: " + msg);
var setStatusCommand = new models.SetStatusCommand({
statusState: STATUS_STATE_AWAY,
statusMessage: msg
});
this.inlineAlert(i18n['away']);
this.socket.send(setStatusCommand.xport());
}
NodeChatController.prototype.setBack = function (){
if( !this.comingBackFromAway ) { // if we have sent this command (but just haven't finished coming back yet), don't keep spamming the server w/this command
$().log("Telling the server that I'm back.");
this.comingBackFromAway = true;
var setStatusCommand = new models.SetStatusCommand({
statusState: STATUS_STATE_PRESENT,
statusMessage: ''
});
this.inlineAlert(i18n['back']);
this.socket.send(setStatusCommand.xport());
}
}
//Send message function
NodeChatController.prototype.sendMessage = function (event) {
if(!this.active) {
return true;
}
if (event.which == 13 && !event.shiftKey) {
event.preventDefault();
mainRoom.resetActivityTimer();
var inputField = this.viewDiscussion.getTextInput();
var send = Preparse.call(this, inputField.val());
if (inputField.val() && send) {
var chatEntry = new models.ChatEntry({roomId: this.roomId, name: wgUserName, text: inputField.val()});
if( this.isPrivate == true ) { //is prive
if( this.afterInitQueue.length < 1 || this.model.users.length < 2 ){
this.mainController.socket.send( this.model.privateRoom.xport() );
}
if( !this.isInitialized ) {
this.afterInitQueue.push(chatEntry.xport());
//temp chat entry in case of slow connection time
chatEntry.set({temp : true, avatarSrc: wgAvatarUrl });
this.model.chats.add(chatEntry);
} else {
this.socket.send(chatEntry.xport());
}
} else {
this.socket.send(chatEntry.xport());
}
event.preventDefault();
}
inputField.val('');
$().log('submitting form');
inputField.focus();
}
}
mainRoom.viewDiscussion.unbind('sendMessage');
mainRoom.viewDiscussion.bind('sendMessage', $.proxy(mainRoom.sendMessage, mainRoom));
//Functions that have to be changed for interwiki chat
NodeChatController.prototype.openPrivateRoom = function(users) {
users.push( wgUserName );
$.ajax({
type: 'POST',
url: wgScript + '?action=ajax&rs=ChatAjax&method=getPrivateRoomID',
data: {
users : users.join(',')
},
success: $.proxy(function(data) {
$().log("Attempting create private room with users " + users.join(','));
var data = new models.OpenPrivateRoom({roomId: data.id, users: users});
this.baseOpenPrivateRoom(data, true);
this.showRoom(data.get('roomId') );
this.chats.privates[ data.get('roomId') ].isPrivate = true;
this.chats.privates[ data.get('roomId') ].init();
//this.socket.send(data.xport());
}, this)
});
this.viewUsers.hideMenu();
}
NodeRoomController.prototype.onJoin = function(message) {
var joinedUser = new models.User();
joinedUser.mport(message.joinData);
var connectedUser = this.model.users.findByName(joinedUser.get('name'));
if(typeof connectedUser == "undefined"){
this.model.users.add(joinedUser);
this.fire('afterJoin', joinedUser);
//TODO: move it to other class
if( !this.isPrivate ) {
// Create the inline-alert (on client side so that we only display it if the user actually IS new to the room and not just disconnecting/reconnecting).
var newChatEntry = new models.InlineAlert({text: $.msg('chat-user-joined', [joinedUser.get('name')] ) });
this.model.chats.add(newChatEntry);
}
this.disableRoom(joinedUser, false);
} else {
// The user is already in the room... just update them (in case they have changed).
this.model.users.remove(connectedUser);
this.model.users.add(joinedUser);
}
}
NodeRoomController.prototype.onPart = function(message) {
var partedUser = new models.User();
partedUser.mport(message.data);
var connectedUser = this.model.users.findByName(partedUser.get('name'));
if(typeof connectedUser != "undefined"){
//TODO: move it to other class
if( !this.isPrivate ) {
var newChatEntry = new models.InlineAlert({text: $.msg('chat-user-parted', [connectedUser.get('name')] ) });
this.model.chats.add(newChatEntry);
}
this.model.users.remove(connectedUser);
this.disableRoom(connectedUser, true);
}
}
NodeRoomController.prototype.disableRoom = function(user, flag) {
if( this.isPrivate == false ) {
//TODO: fix it for multiuser priv chat
var privateUser = this.model.privateUsers.findByName(user.get('name'));
if(typeof privateUser != "undefined"){
var roomId = privateUser.get('roomId');
if( typeof( this.chats.privates[roomId] ) != "undefined" ){
this.chats.privates[roomId].model.room.set({
'blockedMessageInput': flag
});
}
//try to reconnect
if(flag === false && this.chats.privates[roomId].model.chats.length > 0) {
this.socket.send( this.chats.privates[roomId].model.privateRoom.xport() );
}
}
}
}
NodeChatController.prototype.showRoom = function(roomId) {
$().log(roomId);
if( this.activeRoom == roomId ) {
return false;
}
this.activeRoom = roomId;
if(roomId == 'main') {
this.chats.main.setActive(true);
} else {
this.chats.main.setActive(false);
}
for(var i in this.chats.privates) {
if(i == roomId) {
this.chats.privates[i].setActive(true);
} else {
this.chats.privates[i].setActive(false);
}
}
for(var i in this.chats.opens) {
if(i == roomId) {
this.chats.opens[i].setActive(true);
} else {
this.chats.opens[i].setActive(false);
}
}
return true;
}
NodeChatController.prototype.openPublicRoom = function(roomId) {
this.chats.opens[roomId] = new NodeRoomController(roomId);
this.chats.opens[roomId].mainController = this; //set main controller for this chat room
this.showRoom(roomId);
this.chats.opens[roomId].init();
}
/*//For interwiki chatting, a merger of NodeRoomController's private management functions, and NodeChatController's public management functions.
NodeInterwikiController = $.createClass(NodeRoomController, {
constructor: function (roomId) {
NodeInterwikiController.superclass.constructor.apply(this,arguments);
this.socket.bind('updateUser', $.proxy(this.onUpdateUser, this)); //Check
this.bind('afterJoin', $.proxy(this.afterJoin, this));
this.viewUsers = new NodeChatUsers({model: this.model, el: $('body')});
this.viewUsers.bind('showPrivateMessage', $.proxy(this.privateMessage, this) );
this.viewUsers.bind('kickBan', $.proxy(this.kickBan, this) );
this.viewUsers.bind('giveChatMod', $.proxy(this.giveChatMod, this) );
this.viewUsers.bind('blockPrivateMessage', $.proxy(this.blockPrivate, this) ); //Check
this.viewUsers.bind('allowPrivateMessage', $.proxy(this.allowPrivate, this) ); //Check
this.viewUsers.bind('mainListClick', $.proxy(this.mainListClick, this) ); //Check
this.viewUsers.bind('privateListClick', $.proxy(this.privateListClick, this) ); //Check
this.viewUsers.bind('clickAnchor', $.proxy(this.clickAnchor, this) ); //Check
this.viewUsers.render();
this.viewDiscussion.show();
return this;
}
});*/
NodeChatController.prototype.inlineAlert = function(text) {
for(var i in text.split('\n')) {
this.viewDiscussion.chatUL.append('<li class="inline-alert">' + text.split('\n')[i] + '</li>');
}
this.viewDiscussion.scrollToBottom();
}
function FlashTitle() {
if(document.getElementsByTagName('title')[0].innerHTML == window.titleorig) {
document.getElementsByTagName('title')[0].innerHTML = i18n['activity'].replace(/\$1/g, wgSiteName);
}
else {
document.getElementsByTagName('title')[0].innerHTML = window.titleorig;
}
}
function Preparse(input) { //Parse slash commands.
if(input.charAt(0) == '/') {
var com = input.split(' ');
com[0] = com[0].substring(1, com[0].length);
var ref = '.' + com[0].toLowerCase();
if(window.commands[com[0].toLowerCase()] == undefined) {return true;}
while(typeof eval('window.commands' + ref) != 'function') {
if(typeof eval('window.commands' + ref) == 'string') {
ref = ref.substring(0, ref.lastIndexOf('.')) + '.' + eval('window.commands' + ref).toLowerCase();
continue;
}
if(typeof eval('window.commands' + ref) == 'object') {
if(!com[1]) {
if(typeof eval('window.commands' + ref).default == 'function') {eval('window.commands' + ref).default.call(this, '', chat);}
return true;
}
if(eval('window.commands' + ref)[com[1].toLowerCase()]) {ref += '.' + com[1].toLowerCase();}
else if(eval('window.commands' + ref).default) {
ref += '.default';
if(typeof eval('window.commands' + ref) == 'function') {break;}
}
else {return true;}
com = com.slice(1, com.length);
continue;
}
if(typeof eval('window.commands' + ref) == 'undefined') {return true;}
}
com = com.slice(1, com.length);
return eval('window.commands' + ref).call(this, com.join(' '), input);
}
else {return true;}
}
window.commands = {
'away': 'afk',
'afk': function(com, text) {
if($('#ChatHeader .User').hasClass('away') == false) {toggleAway();} //if you're away, hitting enter has already sent you back
},
'clear': function(com, text) { //Clear the active chat window
this.clearWindow();
},
'nc': function(com, text) { //Nobody cares
$('#Write [name="message"]').val('[[' + i18n['uncyc'] + '|' + (com ? com : i18n['nobodycares']) + ']]');
return true;
},
'devoice': function(com, text) { //IRCpwnt
$('#Write [name="message"]').val('* ChanServ set channel mode -v ' + (com ? com : wgUserName));
return true;
},
'coppa': function(com, text) { //Too young
if(com) {$('#Write [name="message"]').val('http://coppa.org ' + com);}
else {$('#Write [name="message"]').val('http://coppa.org ' + i18n['coppa']);}
return true;
},
'silence': function(com, text) { //Idle
$('#Write [name="message"]').val('People idle, enjoy the silence. http://www.youtube.com/watch?v=diT3FvDHMyo');
return true;
},
'kick': 'kickban',
'ban': 'kickban',
'kb': 'kickban',
'kickban': function(com, text) { //Kickban a user
if(com) {
var mod = new models.KickBanCommand({userToBan: com});
this.socket.send(mod.xport());
}
else {this.inlineAlert(i18n['erruser'].replace(/\$1/g, text.split(' ')[0]));}
},
'unban': function(com, text) { //Unban a user
if(com) {
api.newQuery(POST, 'action=userrights&user=' + com + '&remove=bannedfromchat', function(result) {
if(result.userrights.removed[0] == 'bannedfromchat') {
this.inlineAlert(i18n['unbanned'].replace(/\$1/g, com));
}
else {
this.inlineAlert(i18n['notbanned'].replace(/\$1/g, com));
}
});
api.send(0, true);
}
else {this.inlineAlert(i18n['erruser'].replace(/\$1/g, text.split(' ')[0]));}
},
'mod': function(com, text) { //Make a user a mod
if(com) {
var giveChatModCommand = new models.GiveChatModCommand({userToPromote: com});
this.socket.send(giveChatModCommand.xport());
}
else {this.inlineAlert(i18n['erruser'].replace(/\$1/g, text.split(' ')[0]));}
},
'demod': function(com, text) { //Remove a user's mod right
if(com) {
api.newQuery(POST, 'action=userrights&user=' + com + '&remove=chatmoderator', function(result) {
if(result.userrights.removed[0] == 'chatmoderator') {
this.inlineAlert(i18n['demodded'].replace(/\$1/g, com));
}
else {
this.inlineAlert(i18n['notmod'].replace(/\$1/g, com));
}
});
api.send(0, true);
}
else {this.inlineAlert(i18n['erruser'].replace(/\$1/g, text.split(' ')[0]));}
},
'block': function(com, text) { //Block a user from private chatting you
if(com) {this.blockPrivate({name: com});}
else {this.inlineAlert(i18n['erruser'].replace(/\$1/g, text.split(' ')[0]));}
},
'unblock': function(com, text) { //Unblock a user from private chatting you - should merge this into a toggle
if(com) {this.allowPrivate({name: com});}
else {this.inlineAlert(i18n['erruser'].replace(/\$1/g, text.split(' ')[0]));}
},
'chat': 'private',
'room': 'private',
'private': function(com, text) { //Invoke a private room
if(com) {
var arr = com.split('#');
for(var i in arr) {array[i] = arr[i].removeTrailing(' ');}
mainRoom.openPrivateChat(arr);
}
else {this.inlineAlert(i18n['erruser'].replace(/\$1/g, text.split(' ')[0]));}
},
/*'enter': 'join',
'join': function(com, text) { //Now for a command with chutzpah - join any chat on Wikia
//Need to fix this so that joined rooms can be selected
if(com) {
var data = new models.OpenPrivateRoom({roomId: com});
mainRoom.baseOpenPrivateRoom(data, true);
$('.private').before('<h1 id="Room_' + com + '" class="public wordmark" onclick="mainRoom.showRoom(' + com + ')"><span class="font-">' + com + '</span><span id="MsgCount_' + com + '" class="splotch">0</span></h1>');
mainRoom.showRoom(com);
mainRoom.chats.privates[com].init();
}
else {this.inlineAlert(i18n['errroom'].replace(/\$1/g, text.split(' ')[0]));}
},
'leave': 'part',
'part': function(com, text) { //Leave the room you're looking at, or the room you specify
if(!com) {var id = this.roomId; var chat = this;}
else {var id = com; var chat = mainRoom.chats.privates[com];}
$('#Room_' + id).remove();
chat.socket.autoReconnect = false;
chat.socket.socket.disconnect();
if(!com) {mainRoom.show('main');}
},*/
'roomid': 'id',
'id': function(com, text) {
this.inlineAlert(i18n['id'] + ': ' + this.roomId);
},
'self': function(com, text) { //Send a message to yourself
if(com) {
newstr = '';
for(var i = 0; i < com.length; i++) {
switch(com.charAt(i)) {
case '[':
if(com.charAt(i + 1) == '[') {
var k = com.indexOf(']', i);
if(com.charAt(k + 1) == ']') {
var substr = com.substring(i + 2, k);
if(substr.indexOf('|') != -1) {
var link = substr.substring(0, substr.indexOf('|'));
var linktext = substr.substring(substr.indexOf('|') + 1, substr.length);
}
else {
var link = substr;
var linktext = link;
}
var linkspl = link.split(' ');
link = '';
for(var j in linkspl) {link += linkspl[j] + '_';}
link = link.substring(0, link.length - 1);
newstr += '<a href="/wiki/' + link + '">' + linktext + '</a>';
i = k + 1;
}
}
else if(com.substring(i + 1, i + 8) == 'http://') {
var k = com.indexOf(']', i);
var splstr = com.substring(i + 1, k).split(' ');
if(splstr == com.substring(i + 1, k)) {
var linktext = '[1]';
}
else {
var linktext = build(splstr, 1);
}
newstr += '<a href="' + splstr[0] + '">' + linktext + '</a>';
i = k;
}
break;
default:
newstr += com.charAt(i);
break;
}
}
this.viewDiscussion.chatUL.append('<li><img class="avatar" src="' + $('#ChatHeader .User img').attr('src') + '"><span class="username">' + wgUserName + '</span><span class="message" style="color:#999;"> (' + i18n['self'] + ') ' + newstr + '</span></li>');
}
else {
this.viewDiscussion.chatUL.append('<li><img class="avatar" src="' + $('#ChatHeader .User img').attr('src') + '"><span class="username">' + wgUserName + '</span><span class="message" style="color:#999;"> (' + i18n['self'] + ')</span></li>');
}
this.viewDiscussion.scrollToBottom();
},
'help': function(com, text) {
if(com) {
var ref = com.replace(/ /g, '.');
var str = '';
var subcoms = [];
var subdirs = [];
while(typeof eval('window.commands.' + ref) == 'string') {ref.substring(0, ref.lastIndexOf('.')) + '.' + eval('window.commands' + ref).toLowerCase();}
var command = eval('window.commands.' + ref);
if(i18n['help-' + ref]) {str += i18n['help'].replace(/\$1/g, ref.replace(/\./g, ' ')).replace(/\$2/g, i18n['help-' + ref].replace(/\$1/g, i18n['example']).replace(/\$1/g, i18n['exampleuser']));}
if(typeof command == 'object') {
for(var i in command) {
if(typeof command[i] == 'function') {subcoms.push(i);}
if(typeof command[i] == 'object') {subdirs.push(i);}
}
}
if(subcoms.length > 0) {str += '\n' + i18n['subcoms'] + ': ' + subcoms.join(', ');}
if(subdirs.length > 0) {str += '\n' + i18n['subdirs'] + ': ' + subdirs.join(', ');}
str = str.removeTrailing('\n');
if(str != '') {this.inlineAlert(str);}
else {this.inlineAlert(i18n['nohelp'].replace(/\$1/g, command));}
}
else {
var str = [];
for(var i in window.commands) {
if(typeof window.commands[i] == 'function' || typeof window.commands[i] == 'object') {str.push(i);}
}
this.inlineAlert(i18n['commands'].replace(/\$1/g, str.join(', ')));
}
}
};
//Parser helping function - takes an array of text created with .split(' '),
//and an index number for where to start, then rebuilds the string.
//Can also accept an index value for where to stop.
function build(text, index, stop) {
var newtext = '';
if(stop == undefined || stop == 0) {stop = text.length}
else if(stop < 0) {stop += text.length}
if(index == stop || index == text.length - 1) {return text[index];}
for(var i = index; i < stop; i++) {
newtext += text[i] + ' ';
}
return newtext;
}
function toggleAway(msg) {
if(!msg) {var msg = '';}
if($('#ChatHeader .User').hasClass('away') == true) {
mainRoom.setBack();
}
else {
mainRoom.setAway(msg);
}
}
toggleAway.back = function() { //Force back status
if($('#ChatHeader .User').hasClass('away') == true) {mainRoom.setBack();}
}
toggleAway.away = function(msg) { //Force away status
if(!msg) {var msg = '';}
if($('#ChatHeader .User').hasClass('away') == false) {mainRoom.setAway(msg);}
}
NodeChatController.prototype.clearWindow = function() {
this.viewDiscussion.chatUL.html('');
this.inlineAlert(i18n['cleared']);
}
function active() { //Returns the NodeChatController for the active window
if(mainRoom.activeRoom && mainRoom.activeRoom != 'main') {return mainRoom.chats.privates[mainRoom.activeRoom];}
else {return mainRoom;}
}
String.prototype.removeTrailing = function(char) { //Remove extraneous characters
var str = this;
while(str.charAt(0) == char) {str = str.substring(1, str.length);}
while(str.charAt(str.length - 1) == char) {str = str.substring(0, str.length - 1);}
return str;
}
function createCookie(name,value,days) {
if (days) {
var date = new Date();
date.setTime(date.getTime()+(days*24*60*60*1000));
var expires = "; expires="+date.toGMTString();
}
else var expires = "";
document.cookie = name+"="+value+expires+"; path=/";
}
function readCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for(var i=0;i < ca.length;i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return null;
}
$(function () {
if(!importScriptURI) {function importScriptURI(a){var b=document.createElement("script");b.setAttribute("src",a);b.setAttribute("type","text/javascript");document.getElementsByTagName("head")[0].appendChild(b);return b}}
importScriptURI('http://c.wikia.com/index.php?title=User:Monchoman45/ChatHacks.js/i18n.js&action=raw&ctype=text/javascript');
importScriptURI('http://monchbox.wikia.com/index.php?title=MediaWiki:APIQuery.js&action=raw&ctype=text/javascript'); //APIQuery for /unban
$('head').append('<style type="text/css">\n.stafficon {\n\tmargin-bottom:-4px;\n\twidth:14px;\n\theight:14px;\n}\n.modicon {\n\tmargin-bottom:-3px;\n\twidth:14px;\n\theight:14px;\n}\n.UserStatsMenu {\n\tcolor:#000;\n}\n.Write [name="message"] {\n\twidth:93%;\n}\n.inline-alert span {\n\tcolor:#006CB0;\n\tcursor:pointer;\n}\n.inline-alert span:hover {\n\ttext-decoration:underline;\n}\n#pingspan {\n\tposition:absolute;\n\tz-index:5;\n\ttop:23px;\n\tmargin-left:15px;\n\tfont-size:15px;\n\tfont-weight:normal;\n\tline-height:15px;\n}\n#pings {\n\tresize:none;\n\tmargin-left:0;\n\tfont-size:12px;\n\theight:100px;\n\tdisplay:block;\n}\n#pingspan div span {\n\tfont-size:55%;\n}\n#ChatHeader {\n\tz-index:9999;\n}\n#ChatHeader {\n\tz-index:9999;\n}\n</style>');
//Unbind all of the window listeners that set your status to back
$(window).unbind('mousemove').unbind('focus').unbind('keypress');
//Add the sound space
$('body').append('<span id="sound" style="display:none;"></span>');
});
}
else {
$(function () {
var a = document.getElementsByTagName('a');
for(var i = 0; i < a.length; i++) {
if(a[i].href && a[i].href.indexOf('/wiki/Special:Chat') != -1) {
a[i].addEventListener('click', function(event) {event.preventDefault(); OpenChatWindow();});
a[i].removeAttribute('data-canonical');
}
}
if(document.body.className.indexOf('skin-oasis') != -1) {window.chatcheck = setInterval('ChatCheck()', 200);}
});
function ChatCheck() {
if($('.chat-join button').length != 0) {
$('.chat-join button').replaceWith('<a class="wikia-button" onclick="OpenChatWindow()">' + $('.chat-join button').html() + '</a>');
clearInterval(window.chatcheck);
}
}
function OpenChatWindow() {
window.chatwindow = window.open('/wiki/Special:Chat?useskin=wikia', 'chat');
window.chatwindow.onload = function () {
window.chatwindow.importScriptPage('User:' + wgUserName + '/global.js', 'c');
window.chatwindow.importScript('User:' + wgUserName + '/wikia.js');
}
}
}