chat.js
33 KB
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
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
var IM = (function(){
//登录sessionid
var sid ='';
//登录用户id
var uid ='';
//进行im聊天根目录
var url = 'http://chat.nong12.com/';
//记录进行咨询列表定时器id 用于启动与关闭
var globalTimeId = 0;
//储存咨询列表用户信息 key为userid value为chatsession 便于查询定位
var chatsessionmap = new Map();
//储存咨询列表用户信息chatsession 用于callback响应 json格式
var chatsessions=new Array();
//登录
var login = function(layout, callback) {
$.ajax({
url: url+'webchat/login.action', // 跨域URL
type: 'get',
async:false,
dataType: 'json',
//jsonp: "callback",
//jsonpCallback:"success",
data: {_t:new Date().getTime(), layout:layout}, //请求数据
timeout: 30000,
success: function (json) { //客户端jquery预先定义好的callback函数,成功获取跨域服务器上的json数据后,会动态执行这个callback函数
if(json.code == 'login_ack') {
sid = json.sid;
if(callback) {
json.msg= '登录成功';
callback(json);
}
//globalTimeId = setInterval(notification('', callback), 3000, 1000);
} else if(json.code == 'login_failed') {
if(callback) {
json.msg= '连接异常,<a href="javascript:reconnection();">点击重新连接</a>';
callback(json);
}
} else if(json.code == 'access_server_error') {
if(callback) {
json.msg= '连接异常,<a href="javascript:reconnection();">点击重新连接</a>';
callback(json);
}
} else if(json.code == 'access_service_error') {
if(callback) {
json.msg= '连接异常,<a href="javascript:reconnection();">点击重新连接</a>';
callback(json);
}
} else if(json.code == 'invalid_expired_session_error') {
if(callback) {
json.msg= '会话已断开连接,如需继续咨询,<a href="javascript:reconnection();">请点击此处</a>';
callback(json);
}
} else {
if(callback) {
json.msg= '连接异常,<a href="javascript:reconnection();">点击重新连接</a>';
callback(json);
}
}
},
error: function () {
if(callback)
callback({"code":"access_connect_error","msg": "连接异常,<a href='javascript:reconnection();'>点击重新连接</a>"});
}
});
}
//退出
var logout = function(layout, callback) {
$.ajax({
async:false,
url: url+'webchat/logout.action', // 跨域URL
type: 'GET',
dataType: 'json',
//jsonp: "callback",
//jsonpCallback:"success",
data: {sid:sid, _t:new Date().getTime(), layout:layout}, //请求数据
timeout: 30000,
success: function (json) { //客户端jquery预先定义好的callback函数,成功获取跨域服务器上的json数据后,会动态执行这个callback函数
if(json.code == 'leave_ack') {
sid = '';
if(callback) {
json.msg= '退出成功';
callback(json);
}
//globalTimeId = setInterval(notification('', callback), 3000, 1000);
} else if(json.code == 'leave_failed') {
if(callback) {
json.msg= '连接异常,<a href="javascript:reconnection();">点击重新连接</a>';
callback(json);
}
} else if(json.code == 'access_server_error') {
if(callback) {
json.msg= '连接异常,<a href="javascript:reconnection();">点击重新连接</a>';
callback(json);
}
} else if(json.code == 'access_service_error') {
if(callback) {
json.msg= '连接异常,<a href="javascript:reconnection();">点击重新连接</a>';
callback(json);
}
} else {
if(callback) {
json.msg= '连接异常,<a href="javascript:reconnection();">点击重新连接</a>';
callback(json);
}
}
},
error: function () {
sid ='';
//clearInterval(globalTimeId);
if(callback) {
callback({"code":"access_connect_error","msg": "连接异常,<a href='javascript:reconnection();'>点击重新连接</a>"});
}
}
});
}
//发送信息
var send = function(uid, msg, layout, callback) {
$.ajax({
async:false,
url: url+'webchat/send.action', // 跨域URL
type: 'POST',
dataType: 'json',
//jsonp: "callback",
//jsonpCallback:"success",
data: {sid:sid, uid:uid, _t:new Date().getTime(), layout:layout, message:msg}, //请求数据
timeout: 30000,
success: function (json) { //客户端jquery预先定义好的callback函数,成功获取跨域服务器上的json数据后,会动态执行这个callback函数
if(json.code == 'send_ack') {
if(callback) {
json.msg= '发送成功';
callback(json, msg);
}
} else if(json.code == 'send_failed') {
if(callback) {
json.msg= '网络原因导致信息发送失败,您可以重新发送,如多次不成功,建议重新打开对话';
callback(json, msg);
}
} else if(json.code == 'access_server_error') {
if(callback) {
json.msg= '连接异常,<a href="javascript:reconnection();">点击重新连接</a>';
callback(json, msg);
}
} else if(json.code == 'access_service_error') {
if(callback) {
json.msg= '连接异常,<a href="javascript:reconnection();">点击重新连接</a>';
callback(json, msg);
}
} else if(json.code == 'invalid_expired_session_error') {
if(callback) {
json.msg= '会话已断开连接,如需继续咨询,<a href="javascript:reconnection();">请点击此处</a>';
callback(json, msg);
}
} else if(json.code == 'user_not_online') {
if(callback) {
json.msg= '对方已下线,您现在发送的信息对方上线后将会收到';
callback(json, msg);
}
} else {
if(callback) {
json.msg= '连接异常,<a href="javascript:reconnection();">点击重新连接</a>';
callback(json, msg);
}
}
},
error: function () {
callback({"code":"access_connect_error","msg": "连接异常,<a href='javascript:reconnection();'>点击重新连接</a>"}, msg);
}
});
}
//发送离线信息
var sendoffline = function(uid, msg, layout, callback) {
$.ajax({
async:false,
url: url+'webchat/send.action', // 跨域URL
type: 'POST',
dataType: 'json',
//jsonp: "callback",
//jsonpCallback:"success",
data: {sid:sid, uid:uid, _t:new Date().getTime(), layout:layout, message:msg, msgType:"true"}, //请求数据
timeout: 30000,
success: function (json) { //客户端jquery预先定义好的callback函数,成功获取跨域服务器上的json数据后,会动态执行这个callback函数
if(json.code == 'send_offline_ack') {
if(callback) {
json.msg= '发送成功';
callback(json, msg);
}
} else if(json.code == 'send_offline_failed') {
if(callback) {
json.msg= '网络原因导致信息发送失败,您可以重新发送,如多次不成功,建议重新打开对话';
callback(json, msg);
}
} else if(json.code == 'access_server_error') {
if(callback) {
json.msg= '连接异常,<a href="javascript:reconnection();">点击重新连接</a>';
callback(json, msg);
}
} else if(json.code == 'access_service_error') {
if(callback) {
json.msg= '连接异常,<a href="javascript:reconnection();">点击重新连接</a>';
callback(json, msg);
}
} else if(json.code == 'invalid_expired_session_error') {
if(callback) {
json.msg= '会话已断开连接,如需继续咨询,<a href="javascript:reconnection();">请点击此处</a>';
callback(json, msg);
}
} else {
if(callback) {
json.msg= '连接异常,<a href="javascript:reconnection();">点击重新连接</a>';
callback(json, msg);
}
}
},
error: function () {
callback({"code":"access_connect_error","msg": "连接异常,<a href='javascript:reconnection();'>点击重新连接</a>"}, msg);
}
});
}
//建立聊天会话
var join = function(toUserId, layout, callback) {
$.ajax({
async:false,
url: url+'webchat/join.action', // 跨域URL
type: 'get',
dataType: 'json',
//jsonp: "callback",
//jsonpCallback:"success",
data: {sid:sid, uid:toUserId, _t:new Date().getTime(), layout:layout}, //请求数据
timeout: 30000,
success: function (json) { //客户端jquery预先定义好的callback函数,成功获取跨域服务器上的json数据后,会动态执行这个callback函数
if(json.code == 'join_ack') {
if(callback) {
json.msg= 'join成功';
callback(json, toUserId);
}
} else if(json.code == 'join_failed') {
if(callback) {
json.msg= '连接异常,<a href="javascript:reconnection();">点击重新连接</a>';
callback(json, toUserId);
}
} else if(json.code == 'user_not_online') {
if(callback) {
json.msg= '对方已下线,您现在发送的信息对方上线后将会收到';
callback(json, toUserId);
}
} else if(json.code == 'access_server_error') {
if(callback) {
json.msg= '连接异常,<a href="javascript:reconnection();">点击重新连接</a>';
callback(json, toUserId);
}
} else if(json.code == 'access_service_error') {
if(callback) {
json.msg= '连接异常,<a href="javascript:reconnection();">点击重新连接</a>';
callback(json, toUserId);
}
} else if(json.code == 'invalid_expired_session_error') {
if(callback) {
json.msg= '会话已断开连接,如需继续咨询,<a href="javascript:reconnection();">请点击此处</a>';
callback(json, toUserId);
}
} else {
if(callback) {
json.msg= '连接异常,<a href="javascript:reconnection();">点击重新连接</a>';
callback(json, toUserId);
}
}
},
error: function () {
callback({"code":"access_connect_error","msg": "连接异常,<a href='javascript:reconnection();'>点击重新连接</a>"}, toUserId);
}
});
}
//建立两个点对点关系
var launch = function(toUserId, type) {
if(type == '1') {
window.open( url+'launch/launch.action?type='+type+'&uid='+toUserId +'&_t='+(new Date().getTime()), '_new' ,'height=600,width=800,resizable=yes,top='+(screen.height-500)/2+',left='+(screen.width-800)/2);
} else {
window.open( url+'launch/launch.action?type='+type+'&uid='+toUserId +'&_t='+(new Date().getTime()), '\''+toUserId +'\'' ,'height=555,width=800,resizable=yes,top='+(screen.height-500)/2+',left='+(screen.width-800)/2);
}
}
//聊天列表通知
var notification = function(obj) {
$.ajax({
async:false,
url: url+'user/notification.action', // 跨域URL
type: 'post',
dataType: 'jsonp',
//jsonp: "callback",
//jsonpCallback:"success",
data: {_t:new Date().getTime()}, //请求数据
timeout: 30000,
success: function (json) { //客户端jquery预先定义好的callback函数,成功获取跨域服务器上的json数据后,会动态执行这个callback函数
var connector = '';
var num = 0;
var ntf = json.ntf;
for(i = 0 ;i < ntf.length; i ++ ) {
if(i == 0) {
connector += '<li onclick="javascript:window.open(\''+ url+'launch/launch.action?sid='+ntf[i].tuid+'&type=0&uid='+ntf[i].fuid+'&_t='+(new Date().getTime())+'\', \''+ntf[i].fuid+ '\' ,\'height=555,width=800,resizable=yes,top='+(screen.height-500)/2+',left='+(screen.width-800)/2+'\');document.getElementById(\'total\').innerHTML=(parseInt(document.getElementById(\'total\').innerHTML)-'+ntf[i].unreadNum+');document.getElementById(\'contacts\').innerHTML=(parseInt(document.getElementById(\'contacts\').innerHTML)-1);this.remove();" class="act">'+ntf[i].fuid+'<span>'+ntf[i].unreadNum+'</span></li>';
num = parseInt(num) + parseInt(ntf[i].unreadNum);
} else {
connector += '<li onclick="javascript:window.open(\''+ url+'launch/launch.action?sid='+ntf[i].tuid+'&type=0&uid='+ntf[i].fuid+'&_t='+(new Date().getTime())+'\', \''+ntf[i].fuid+ '\' ,\'height=555,width=800,resizable=yes,top='+(screen.height-500)/2+',left='+(screen.width-800)/2+'\');document.getElementById(\'total\').innerHTML=(parseInt(document.getElementById(\'total\').innerHTML)-'+ntf[i].unreadNum+');document.getElementById(\'contacts\').innerHTML=(parseInt(document.getElementById(\'contacts\').innerHTML)-1);this.remove();">'+ntf[i].fuid+'<span>'+ntf[i].unreadNum+'</span></li>';
num = parseInt(num) + parseInt(ntf[i].unreadNum);
}
}
var html = '';
if(json.type == '0') {
html = '<div class="text"><em class="u-mail"></em>消息<b></b><span id="total">'+num+'</span></div>' ;
if(connector) {
html += '<div class="h-user-more">'+
' <div class="h-msg-h">'+
' <p>最近联系人</p>'+
' <span id="contacts">'+ntf.length+'</span>'+
' </div>'+
' <ul>'+
connector +
' </ul>'+
'</div>';
} else {
html += '<div class="h-user-more">'+
'<div class="no-msg">'+
'<em class="no-msg"></em>'+
'\" 没有新消息了 \"'+
'</div>'+
'</div>';
}
} else {
html = '<div class="text" onclick="javascript:IM.launch(\'\',\'1\');$(\'#total\').text(0);"><em class="u-mail"></em>消息<b style="display:none"></b><span id="total">'+num+'</span></div>';
}
obj.html(html);
},
error: function () {
var html = '<div class="text"><em class="u-mail"></em>消息<b></b><span>0</span></div>' ;
//'<div class="h-user-more">'+
//' <div class="h-msg-h">'+
//' <p>最近联系人</p>'+
//' <span>0/300</span>'+
//' </div>'+
//' <ul>'+
//' </ul>'+
//'</div>';
obj.html(html);
}
});
setTimeout(function(){notification(obj)},30000);
}
//拉取历史聊天信息
var history = function(uid, lastTime, layout, callback) {
$.ajax({
async:false,
url: url+'webchat/history.action', // 跨域URL
type: 'post',
dataType: 'json',
//jsonp: "callback",
//jsonpCallback:"success",
data: {sid:sid, uid:uid, _t:new Date().getTime(), lastTime:lastTime, layout:layout}, //请求数据
timeout: 30000,
success: function (json) { //客户端jquery预先定义好的callback函数,成功获取跨域服务器上的json数据后,会动态执行这个callback函数
if(json.code == 'history_ack') {
if(callback) {
json.msg= '拉取历史记录成功';
callback(json);
}
} else if(json.code == 'history_failed') {
if(callback) {
json.msg= '拉取历史记录失败';
callback(json);
}
} else if(json.code == 'access_server_error') {
if(callback) {
json.msg= '连接异常,<a href="javascript:reconnection();">点击重新连接</a>';
callback(json);
}
} else if(json.code == 'access_service_error') {
if(callback) {
json.msg= '连接异常,<a href="javascript:reconnection();">点击重新连接</a>';
callback(json);
}
} else if(json.code == 'invalid_expired_session_error') {
if(callback) {
json.msg= '会话已断开连接,如需继续咨询,<a href="javascript:reconnection();">请点击此处</a>';
callback(json);
}
} else {
if(callback) {
json.msg= '连接异常,<a href="javascript:reconnection();">点击重新连接</a>';
callback(json);
}
}
},
error: function () {
callback({"code":"access_connect_error","msg": "连接异常,<a href='javascript:reconnection();'>点击重新连接</a>"});
}
});
}
//拉取聊天信息
var poll = function(uid, layout, divId, callback) {
$.ajax({
async:false,
url: url+'webchat/poll.action', // 跨域URL
type: 'post',
dataType: 'json',
//jsonp: "callback",
//jsonpCallback:"success",
data: {sid:sid, uid:uid, _t:new Date().getTime(), layout:layout}, //请求数据
timeout: 30000,
success: function (json) { //客户端jquery预先定义好的callback函数,成功获取跨域服务器上的json数据后,会动态执行这个callback函数
if(json.code == 'poll_ack') {
if(callback) {
json.msg= '拉取成功';
callback(json, divId);
}
} else if(json.code == 'poll_failed') {
if(callback) {
json.msg= '连接异常,<a href="javascript:reconnection();">点击重新连接</a>';
callback(json, divId);
}
} else if(json.code == 'access_server_error') {
if(callback) {
json.msg= '连接异常,<a href="javascript:reconnection();">点击重新连接</a>';
callback(json, divId);
}
} else if(json.code == 'access_service_error') {
if(callback) {
json.msg= '连接异常,<a href="javascript:reconnection();">点击重新连接</a>';
callback(json, divId);
}
} else if(json.code == 'invalid_expired_session_error') {
if(callback) {
json.msg= '会话已断开连接,如需继续咨询,<a href="javascript:reconnection();">请点击此处</a>';
callback(json, divId);
}
} else {
if(callback) {
json.msg= '连接异常,<a href="javascript:reconnection();">点击重新连接</a>';
callback(json, divId);
}
}
},
error: function () {
callback({"code":"access_connect_error","msg": "连接异常,<a href='javascript:reconnection();'>点击重新连接</a>"}, divId);
}
});
}
//拉取商家及地利聊天信息 包括会话列表及聊天详情
var pollAll = function(layout, callback) {
var uids = '';
for(var i=0;i<chatsessions.length;i++) {
if(i == 0) {
uids += chatsessions[i].uid;
} else {
uids += ',' + chatsessions[i].uid;
}
}
$.ajax({
async:false,
url: url+'webchat/pollAll.action', // 跨域URL
//url: url+'webchat/poll.action', // 跨域URL
type: 'post',
dataType: 'json',
//jsonp: "callback",
//jsonpCallback:"success",
data: {sid:sid, uid:uids, _t:new Date().getTime(), layout:layout}, //请求数据
timeout: 30000,
success: function (json) { //客户端jquery预先定义好的callback函数,成功获取跨域服务器上的json数据后,会动态执行这个callback函数
if(json.code == 'poll_ack') {
var ntflist = json.ntf;
if(ntflist && typeof(ntflist)!="undefined") {
for(i = 0 ;i < ntflist.length; i ++ ) {
if(ntflist[i].type == '2') {
var chat = chatsessionmap.get(ntflist[i].fuid);
if(chat) {
if(!chat.online) {
chat.online = true;
if(chat.exist == 1) {
appendWarning("content-msg_"+chat.uid, "对方已上线,对方会及时接收到您的信息");
document.getElementById("content-msg_"+chat.uid).scrollTop = document.getElementById("content-msg_"+chat.uid).scrollHeight;
}
}
} else {
var chat = addchat(ntflist[i]);
chatsessionmap.put(ntflist[i].fuid, chat)
chatsessions.push(chat);
}
} else if(ntflist[i].type == '4') {
var chat = chatsessionmap.get(ntflist[i].fuid);
if(chat) {
if(chat.online) {
chat.online = false;
if(chat.exist == 1) {
appendWarning("content-msg_"+chat.uid, "对方已下线,您现在发送的信息对方上线后将会收到");
document.getElementById("content-msg_"+chat.uid).scrollTop = document.getElementById("content-msg_"+chat.uid).scrollHeight;
}
}
}
} else if(ntflist[i].type == '8') {
var chat = chatsessionmap.get(ntflist[i].fuid);
if(chat) {
if(!chat.online) {
chat.online = true;
if(chat.exist == 1) {
appendWarning("content-msg_"+chat.uid, "对方已上线,对方会及时接收到您的信息");
document.getElementById("content-msg_"+chat.uid).scrollTop = document.getElementById("content-msg_"+chat.uid).scrollHeight;
}
}
} else {
var chat = addchat(ntflist[i]);
chatsessionmap.put(ntflist[i].fuid, chat)
chatsessions.push(chat);
}
} else if(ntflist[i].type == '16') {
var chat = chatsessionmap.get(ntflist[i].fuid);
if(chat) {
chat.data.push({"mid": "", "fuid": '\"'+ntflist[i].fuid+'\"', "tuid": '\"'+ntflist[i].tuid+'\"', "msg": '\"'+ntflist[i].msg+'\"', "type": "16", "time": '\"'+new Date().getTime()+'\"'});
}
} else if(ntflist[i].type == '32') {
var chat = chatsessionmap.get(ntflist[i].fuid);
if(chat) {
chat.isconnection = false;
if(chat.exist == 1) {
appendWarning("content-msg_"+chat.uid, '会话已断开连接,如需继续咨询,<a href="javascript:reconnection();">请点击此处</a>');
document.getElementById("content-msg_"+chat.uid).scrollTop = document.getElementById("content-msg_"+chat.uid).scrollHeight;
}
}
}
}
}
var datalist = json.data;
if(datalist && typeof(datalist)!="undefined") {
for(i = 0 ;i < datalist.length; i ++ ){
var chat = chatsessionmap.get(datalist[i].fuid);
if(chat) {
if(chat.state == 0 || chat.state == 2) {
chat.msgNum = chat.msgNum + 1;
}
chat.newTime = new Date();
chat.exist = 1;
chat.data.push(datalist[i]);
} else {
chat = addchat(datalist[i]);
chat.msgNum = 1;
chat.data.push(datalist[i]);
chatsessionmap.put(datalist[i].fuid, chat)
chatsessions.push(chat);
}
if(datalist[i].type == 2) {
if(chat.online) {
chat.online = false;
if(chat.exist == 1) {
appendWarning("content-msg_"+chat.uid, "对方已下线,您现在发送的信息对方上线后将会收到");
}
}
}
if(chat.lastTime > datalist[i].time) {
chat.lastTime = datalist[i].time;
}
}
}
if(callback) {
json.msg= '拉取成功';
callback(json);
}
} else if(json.code == 'poll_failed') {
if(callback) {
json.msg= '连接异常,<a href="javascript:reconnection();">点击重新连接</a>';
callback(json);
}
} else if(json.code == 'access_server_error') {
if(callback) {
json.msg= '连接异常,<a href="javascript:reconnection();">点击重新连接</a>';
callback(json);
}
} else if(json.code == 'access_service_error') {
if(callback) {
json.msg= '连接异常,<a href="javascript:reconnection();">点击重新连接</a>';
callback(json);
}
} else if(json.code == 'invalid_expired_session_error') {
if(callback) {
json.msg= '会话已断开连接,如需继续咨询,<a href="javascript:reconnection();">请点击此处</a>';
callback(json);
}
} else {
if(callback) {
json.msg= '连接异常,<a href="javascript:reconnection();">点击重新连接</a>';
callback(json);
}
}
},
error: function () {
callback({"code":"access_connect_error","msg": "连接异常,<a href='javascript:reconnection();'>点击重新连接</a>"});
}
});
}
//每获得一条聊天信息需要进行信息确认
var check = function(messageIds, layout, callback) {
$.ajax({
async:false,
url: url+'webchat/ack.action', // 跨域URL
type: 'post',
dataType: 'json',
data: {sid:sid, messageIds:messageIds, _t:new Date().getTime(), layout:layout}, //请求数据
timeout: 30000,
success: function (json) { //客户端jquery预先定义好的callback函数,成功获取跨域服务器上的json数据后,会动态执行这个callback函数
if(json.code == 'ack_ack') {
if(callback) {
json.msg= '消息确认成功';
callback(json);
}
} else if(json.code == 'ack_failed') {
if(callback) {
json.msg= '连接异常,<a href="javascript:reconnection();">点击重新连接</a>';
callback(json);
}
} else if(json.code == 'access_server_error') {
if(callback) {
json.msg= '连接异常,<a href="javascript:reconnection();">点击重新连接</a>';
callback(json);
}
} else if(json.code == 'access_service_error') {
if(callback) {
json.msg= '网连接异常,<a href="javascript:reconnection();">点击重新连接</a>';
callback(json);
}
} else if(json.code == 'invalid_expired_session_error') {
if(callback) {
json.msg= '会话已断开连接,如需继续咨询,<a href="javascript:reconnection();">请点击此处</a>';
callback(json);
}
} else {
if(callback) {
json.msg= '连接异常,<a href="javascript:reconnection();">点击重新连接</a>';
callback(json);
}
}
},
error: function () {
callback({"code":"0","msg": "连接异常,<a href='javascript:reconnection();'>点击重新连接</a>"});
}
});
}
//分派客服
var selectcs = function(code, uid, layout, callback) {
$.ajax({
async:false,
url: url+'select/select.action', // 跨域URL
type: 'post',
dataType: 'json',
data: {sid:sid, code:code, uid:uid, _t:new Date().getTime(), layout:layout}, //请求数据
timeout: 30000,
success: function (json) { //客户端jquery预先定义好的callback函数,成功获取跨域服务器上的json数据后,会动态执行这个callback函数
if(json.code == 'select_ack') {
if(callback) {
json.msg= '分派成功';
callback(json);
}
} else if(json.code == 'select_failed') {
if(callback) {
json.msg= '该市场的客服目前服务繁忙,请稍后再选择';
callback(json);
}
} else if(json.code == 'access_server_error') {
if(callback) {
json.msg= '连接异常,<a href="javascript:reconnection();">点击重新连接</a>';
callback(json);
}
} else if(json.code == 'access_service_error') {
if(callback) {
json.msg= '连接异常,<a href="javascript:reconnection();">点击重新连接</a>';
callback(json);
}
} else if(json.code == 'invalid_expired_session_error') {
if(callback) {
json.msg= '连接异常,<a href="javascript:reconnection();">点击重新连接</a>';
callback(json);
}
} else {
if(callback) {
json.msg= '连接异常,<a href="javascript:reconnection();">点击重新连接</a>';
callback(json);
}
}
},
error: function () {
callback({"code":"0","msg": "连接异常,<a href='javascript:reconnection();'>点击重新连接</a>"});
}
});
}
//关闭chatsession
var closechat = function(uid, layout, callback) {
$.ajax({
async:false,
url: url+'webchat/close.action', // 跨域URL
type: 'post',
dataType: 'json',
data: {sid:sid, uid:uid, _t:new Date().getTime(), layout:layout}, //请求数据
timeout: 30000,
success: function (json) { //客户端jquery预先定义好的callback函数,成功获取跨域服务器上的json数据后,会动态执行这个callback函数
if(json.code == 'close_ack') {
if(callback) {
json.msg= '关闭成功';
callback(json, uid);
}
} else if(json.code == 'close_failed') {
if(callback) {
json.msg= '连接异常,<a href="javascript:reconnection();">点击重新连接</a>';
callback(json, uid);
}
} else if(json.code == 'access_server_error') {
if(callback) {
json.msg= '连接异常,<a href="javascript:reconnection();">点击重新连接</a>';
callback(json, uid);
}
} else if(json.code == 'access_service_error') {
if(callback) {
json.msg= '连接异常,<a href="javascript:reconnection();">点击重新连接</a>';
callback(json, uid);
}
} else if(json.code == 'invalid_expired_session_error') {
if(callback) {
json.msg= '会话已断开连接,如需继续咨询,<a href="javascript:reconnection();">请点击此处</a>';
callback(json, uid);
}
} else {
if(callback) {
json.msg= '连接异常,<a href="javascript:reconnection();">点击重新连接</a>';
callback(json, uid);
}
}
},
error: function () {
callback({"code":"0","msg": "连接异常,<a href='javascript:reconnection();'>点击重新连接</a>"}, uid);
}
});
}
//关闭chatsession
var closeAllChat = function(layout, callback) {
var uids = '';
for(var i=0;i<chatsessions.length;i++) {
if(i == 0) {
uids += chatsessions[i].uid;
} else {
uids += ',' + chatsessions[i].uid;
}
}
$.ajax({
async:false,
url: url+'webchat/closeAll.action', // 跨域URL
type: 'post',
dataType: 'json',
data: {sid:sid, uid:uids, _t:new Date().getTime(), layout:layout}, //请求数据
timeout: 30000,
success: function (json) { //客户端jquery预先定义好的callback函数,成功获取跨域服务器上的json数据后,会动态执行这个callback函数
if(json.code == 'close_ack') {
if(callback) {
json.msg= '关闭成功';
callback(json, uid);
}
} else if(json.code == 'close_failed') {
if(callback) {
json.msg= '连接异常,<a href="javascript:reconnection();">点击重新连接</a>';
callback(json, uid);
}
} else if(json.code == 'access_server_error') {
if(callback) {
json.msg= '连接异常,<a href="javascript:reconnection();">点击重新连接</a>';
callback(json, uid);
}
} else if(json.code == 'access_service_error') {
if(callback) {
json.msg= '连接异常,<a href="javascript:reconnection();">点击重新连接</a>';
callback(json, uid);
}
} else if(json.code == 'invalid_expired_session_error') {
if(callback) {
json.msg= '会话已断开连接,如需继续咨询,<a href="javascript:reconnection();">请点击此处</a>';
callback(json, uid);
}
} else {
if(callback) {
json.msg= '连接异常,<a href="javascript:reconnection();">点击重新连接</a>';
callback(json, uid);
}
}
},
error: function () {
callback({"code":"0","msg": "连接异常,<a href='javascript:reconnection();'>点击重新连接</a>"}, uid);
}
});
}
//跳转页面后赋值sid uid
var assign = function(sessionid, userid) {
sid = sessionid;
uid = userid;
}
//添加新的chatsession
var addchat = function(json) {
return new chatsession(json.fuid);
}
//定义chatsession对象
var chatsession = function(userId) {
this.uid = userId;//每个会话对象的id
this.msgNum = 0;//会话条数
this.newTime = new Date();//会话记录时间
this.lastTime = new Date().getTime();//获取历史历史记录的上一次时间
this.sendTime = new Date().getTime();//记录信息发送间隔时间
this.timeId = 0;
this.error = 0;//记录异常出现次数 如果不为0就表示异常需加载 否则就不需加载
this.online = true;//是否在线
this.state = 0;//表示是否开启会话 1表示开启(正在聊天) 0没有开启 2表示开启隐藏
this.exist = 0;//表示该会话是否已存在 1表示已存在 0表示不存在
this.data = new Array();//会话信息
this.isconnection = false;
this.startmsgtimer = function(divId, callback) {
timeId = setInterval(poll(uid, "json", divId, callback), 3000, 1000);
}
this.endmsgtimer = function() {
clearInterval(timeId);
}
this.open = function() {
this.state = 1;
}
this.close = function() {
this.state = 0;
}
this.hidden = function() {
this.state = 2;
}
}
//根据咨询列表对应userid获得chatsesiion对象
var pollchatsession = function(userId) {
return chatsessionmap.get(userId);
}
//根据咨询列表对应userid删除chatsesiion对象
var removechatsession = function(userId) {
var chat = pollchatsession(userId);
for(var i=0;i<chatsessions.length;i++) {
if(chatsessions[i].uid == chat.uid) {
chatsessions.splice(i , 1);
break;
}
}
chatsessionmap.remove(userId);
}
//获取全部chatsesiion咨询对象
var pollAllchatsessions = function() {
return chatsessions;
}
//提供外部调用api
var o = {
login : login,
logout : logout,
poll : poll,
notification : notification,
pollAll : pollAll,
join : join,
check : check,
assign : assign,
launch : launch,
history : history,
closechat : closechat,
closeAllChat : closeAllChat,
send : send,
selectcs : selectcs,
sendoffline : sendoffline,
pollchatsession : pollchatsession,
removechatsession : removechatsession,
pollAllchatsessions : pollAllchatsessions
};
return o;
})();
$(document).ready(function(){
if(typeof($("#notify")[0])!='undefined'&& $("#notify")) {
IM.notification($("#notify"));
}
});
function Map(){
this.container = new Object();
}
Map.prototype.put = function(key, value){
this.container[key] = value;
}
Map.prototype.get = function(key){
return this.container[key];
}
Map.prototype.keySet = function() {
var keyset = new Array();
var count = 0;
for (var key in this.container) {
// 跳过object的extend函数
if (key == 'extend') {
continue;
}
keyset[count] = key;
count++;
}
return keyset;
}
Map.prototype.size = function() {
var count = 0;
for (var key in this.container) {
// 跳过object的extend函数
if (key == 'extend'){
continue;
}
count++;
}
return count;
}
Map.prototype.remove = function(key) {
delete this.container[key];
}
Map.prototype.toString = function(){
var str = "";
for (var i = 0, keys = this.keySet(), len = keys.length; i < len; i++) {
str = str + keys[i] + "=" + this.container[keys[i]] + ";\n";
}
return str;
}