-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathblivePlus.user.js
745 lines (738 loc) · 39.1 KB
/
blivePlus.user.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
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
// ==UserScript==
// @name bilibili直播间工具
// @namespace indefined
// @supportURL https://github.com/indefined/UserScripts/issues
// @version 0.5.52
// @author indefined
// @description 可配置 直播间切换勋章/头衔、网页全屏发送弹幕、轮播显示链接(仅限HTML5)
// @include /^https?:\/\/live\.bilibili\.com\/(blanc\/)?\d/
// @grant GM_getValue
// @grant GM_setValue
// @license MIT
// @run-at document-idle
// ==/UserScript==
(function(){
'use strict';
const helper = {
create(nodeType,config,appendTo){
const element = document.createElement(nodeType);
config&&this.set(element,config);
if(appendTo) appendTo.appendChild(element);
return element;
},
set(element,config,appendTo){
if(config){
for(const [key, value] of Object.entries(config)){
element[key] = value;
}
}
if(appendTo) appendTo.appendChild(element);
return element;
},
get(selector){
if(selector instanceof Array) {
return selector.map(item=>this.get(item));
}
return document.body.querySelector(selector);
},
replace(oldItem,newItem){
oldItem.parentNode.replaceChild(newItem,oldItem);
},
encodeURIC(data){
return (
(data==undefined)?data:
!(data instanceof Object)?encodeURIComponent(data):
Object.entries(data).map(([k,v])=>{
return (v instanceof Array)?
v.map(i=>encodeURIComponent(k+'[]')+'='+encodeURIComponent(i)).join('&'):
(v instanceof Object)?
Object.entries(v).map(([k1,v1])=>`${encodeURIComponent(`${k}[${k1}]`)}=${encodeURIComponent(v1)}`)
:(encodeURIComponent(k)+'='+encodeURIComponent(v))
}).join('&')
);
},
xhr(url,data){
return fetch(url, {
method: data?'POST':'GET',
credentials: 'include',
body: this.encodeURIC(data),
headers: {
'content-type': 'application/x-www-form-urlencoded; charset=UTF-8'
},
}).then(res => res.json());
},
toast(msg,error){
if(error) console.error(error);
let toast = this.create('div',{
innerHTML:`<div class="link-toast fixed success" style="left: 40%;top: 50%;"><span class="toast-text">${msg} ${error||''}</span></div>`
});
document.body.appendChild(toast);
setTimeout(()=>document.body.removeChild(toast),3000);
},
window:typeof(unsafeWindow)!="undefined"?unsafeWindow:window,
roomInfo:typeof(unsafeWindow)!="undefined"?unsafeWindow.BilibiliLive:window.BilibiliLive,
isFirefox:navigator.userAgent.indexOf('Firefox')!=-1
};
const LiveHelper = {
settingInfos:{
timeSync:{
name:'直播时间同步',
group:'timeSync'
},
fullScreenChat:{
name:'无侧边网页全屏弹幕发送框',
group:'elementAdjuster'
},
showVideoLink:{
name:'轮播显示链接',
group:'elementAdjuster'
},
/*
replaceMedalTitle:{
name:'勋章/头衔扩展',
group:'advancedSwitcher'
},
showOtherGift:{
name:'显示其它礼物',
group:'otherGift'
},
*/
},
elementAdjuster: {
getRoomID() {
if (helper.roomInfo) return Promise.resolve(helper.roomInfo.ROOMID);
const roomid = document.URL.match('[0-9]+')[0];
return helper.xhr('https://api.live.bilibili.com/room/v1/Room/room_init?id='+roomid).then(roominfo =>roominfo.data && roominfo.data.room_id);
},
//轮播链接
updateVideoLink(){
const titlePanel = helper.get('.upper-row>.left-ctnr');
if(!this.settings.showVideoLink) {
if(titlePanel&&titlePanel.contains(this.title)){
titlePanel.removeChild(this.title);
}
}
else{
this.getRoomID().then(id=> {
if (!id) return;
helper.xhr('https://api.live.bilibili.com/live/getRoundPlayVideo?room_id='+id+'?type=flv').then(resp => {
console.log(resp.data);
resp.data.bvid && helper.set(this.title, {
innerText: resp.data.bvid,
href:`${resp.data.bvid_url}?p=${resp.data.pid}`
}, titlePanel);
});
});
}
},
update(item,value){
this.updateVideoLink();
this.titleObserver.disconnect();
this.updateFullscreenChatStyle();
if(this.settings.showVideoLink) {
this.titleObserver.observe(helper.get('#live-player'), {childList:true});
}
},
updateFullscreenChatStyle(){
this.fullscreenChatStyle.innerHTML = this.settings.fullScreenChat? '.hide-aside-area.player-full-win .fullscreen-danmaku { display: block !important; }' : '';
},
init(settings){
this.settings = settings;
this.fullscreenChatStyle = helper.create('style', {}, document.head);
this.giftPackage = helper.get('.item.z-gift-package');
if(this.giftPackage) this.giftPackage.id = 'giftPackage';
this.title = helper.create('a',{
target:'_blank',
className:'info-section dp-i-block v-middle title-link',
style:'margin-left:16px;font-size:16px'
});
this.titleObserver = new MutationObserver(mutations => {
//console.log(mutations);
for (const mutation of mutations) {
for (const node of mutation.addedNodes) {
if (node instanceof HTMLVideoElement) {
this.updateVideoLink();
return;
}
}
}
});
this.update();
}
},
timeSync: {
status: false,
init(settings) {
try{if (!helper.window.livePlayer && !helper.window.top.livePlayer) return;}catch(e){return console.error(e);}
this.icon = helper.create('span',{
title: "同步时间",
className: 'icon',
innerHTML: `<svg t="1595680402158" style="width: 22px; height: 36px;" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="7532" width="22" height="22"><path d="M938.1888 534.016h-80.7936c0.4096-7.3728 0.6144-14.6432 0.6144-22.016 0-218.624-176.8448-400.7936-389.12-400.7936C257.024 111.2064 80.6912 293.1712 80.6912 512c0 218.7264 176.4352 400.7936 388.1984 400.7936 74.752 0 149.0944-22.016 208.1792-60.0064l42.7008 68.608c-75.0592 48.9472-161.9968 74.8544-250.7776 74.752C209.8176 996.1472 0 779.264 0 512S209.8176 27.8528 468.8896 27.8528C728.3712 27.8528 938.7008 244.736 938.7008 512c0 7.3728-0.2048 14.6432-0.512 22.016z m-261.12 318.7712z m-26.4192-158.1056L426.7008 556.032V291.9424h64v226.5088L689.5616 635.904l-38.912 58.7776z m245.3504-6.656L768 512h256L896 688.0256z" fill="#ffffff" p-id="7533"></path></svg>`,
onclick: this.setVideoSync
});
(helper.window.livePlayer||helper.window.top.livePlayer).on('ctrlVisibleChange', status=>{
if (status && this.status) this.append();
});
this.update('timeSync', settings.timeSync);
},
update(item, status) {
if (item != 'timeSync' || this.status == status) return;
this.status = status;
if (status) {
this.append();
}
else {
this.remove();
}
},
append() {
const area = helper.get('.live-web-player-controller .left-area');
if (area) {
area.appendChild(this.icon);
}
},
remove() {
if (this.icon.parentNode) this.icon.parentNode.removeChild(this.icon);
},
setVideoSync() {
const video = (helper.window.livePlayer||helper.window.top.livePlayer).getVideoEl
&& (helper.window.livePlayer||helper.window.top.livePlayer).getVideoEl()
|| helper.get('video');
if (video && video.buffered.length) {
video.currentTime = video.buffered.end(0)-1;
}
},
},
//勋章/头衔扩展
advancedSwitcher:{
room:helper.roomInfo,
titleInfos:undefined,
oldMedalButton:undefined,
oldTitleButton:undefined,
medalButton:undefined,
titleButton:undefined,
dialog:undefined,
strings:{
medal:{
name:'勋章',
link:'//link.bilibili.com/p/center/index#/user-center/wearing-center/my-medal',
dataUrl:'//api.live.bilibili.com/xlive/app-ucenter/v1/fansMedal/panel?page=1&page_size=10',
},
title:{
name:'头衔',
link:'//link.bilibili.com/p/center/index#/user-center/wearing-center/library',
dataUrl:'//api.live.bilibili.com/appUser/myTitleList'
}
},
update(item,value){
if(value==true){
this.replaceToNew();
}
else{
this.replaceToOld();
this.closeDialog();
}
},
init(setting){
//各种按钮
const bottomPanel = helper.get('#chat-control-panel-vm .bottom-actions');
this.container = helper.get('#chat-control-panel-vm .left-action') || bottomPanel;
this.oldMedalButton = helper.get('#chat-control-panel-vm .medal-item-margin');
//this.oldMedalButton = bottomPanel.querySelector('.action-item.medal');
this.oldTitleButton = bottomPanel.querySelector('.action-item.title');
this.medalButton = helper.create('div', {
style: "display: inline-block;height: 16px;width: 16px;background: blue;text-align: center;color: white;cursor: pointer;font-size: 12px;line-height:16px; margin: 0 1px;",
innerText: '勋',
});
this.titleButton = helper.create('div', {
style: "display: inline-block;height: 16px;width: 16px;background: #f76e9e;text-align: center;color: white;cursor: pointer;font-size: 12px;line-height:16px; margin: 0 1px;",
innerText: '衔',
});
this.medalButton.dataset.name = 'medal';
this.titleButton.dataset.name = 'title';
//对话框点击事件处理句柄
this.handler = (e)=>this.handleDialog(e.target);
//创建对话框
this.dialog = helper.create('div',{
id:'title-medal-dialog',
style:'display:none;bottom:50px',
//innerHTML:`<style>#title-medal-dialog a{color: #23ade5;}</style>`
},bottomPanel.parentNode);
//样式
helper.create('style',{
innerHTML:'#title-medal-dialog>div>div:nth-child(odd){background-color: #f1f2f4;}'
+'#title-medal-dialog .title-medal-selected-line{background: #e4f12699 !important;}'
+'#title-medal-dialog .fans-medal-item{cursor:pointer}'
+'#title-medal-dialog .fans-medal-item .label{width: 35px;display: inline-block;text-align: center;padding: 0 3px;}'
+'#title-medal-dialog .fans-medal-item .level{display: inline-block;width: 16px;text-align: center;background:#fff}'
+'#title-medal-dialog .gray span.h-100.v-top{background:#c0c0c0 !important}'
//*//以下是旧版勋章样式,大概用不到了
+'#title-medal-dialog .fans-medal-item.gray .level{color:#c0c0c0}'
+'#title-medal-dialog .fans-medal-item.gray .label{background:#c0c0c0}'
+'#title-medal-dialog .fans-medal-item.gray{border-color:#c0c0c0}'
+['#61DDCB','#5896DE','#A068F1','#FF86B2','#f6be18'].map((color,lv)=>[1,2,3,4].map(add=>{
return `#title-medal-dialog .level-${lv*4+add}{border-color: ${color}}`
+ `#title-medal-dialog .level-${lv*4+add} .label{background-color: ${color}}`
+ `#title-medal-dialog .level-${lv*4+add} .level{color: ${color}}`;
}).join('')).join('')
//*/
//深色模式
+'html[lab-style*="dark"] #title-medal-dialog > div > div:nth-child(2n+1) {background-color: #32323199;}'
+'html[lab-style*="dark"] #title-medal-dialog .title-medal-selected-line {background: #855f1699 !important;}'
+'html[lab-style*="dark"] .gift-presets .gift-package:after{color:var(--dark-font-1)}'
},this.dialog);
//对话框箭头
this.dialogArraw = helper.create('style',{
},this.dialog);
//对话框标题
this.dialogTitle = helper.create('div',{style:"font-weight: 400;font-size: 18px;"},this.dialog);
//对话框内容本体
this.dialogPanel = helper.create('div',{style:'max-height: 400px;overflow: auto;'},this.dialog);
//对话框正在载入面板
this.loadingDiv = helper.create('div',{className:"tv"},this.dialog);
//对话框底部面板
this.dialogBottom = helper.create('div',{style:"margin-top: 10px;text-align: center;"},this.dialog);
if(setting.replaceMedalTitle) this.replaceToNew();
},
replaceToNew(){
this.container.appendChild(this.medalButton);
this.oldTitleButton && helper.replace(this.oldTitleButton, this.titleButton) || this.container.appendChild(this.titleButton);
document.body.addEventListener('click', this.handler);
},
replaceToOld(){
this.container.contains(this.medalButton)&&this.container.removeChild(this.medalButton);
this.oldTitleButton && helper.replace(this.titleButton, this.oldTitleButton) ||
(this.container.contains(this.titleButton)&&this.container.removeChild(this.titleButton));
document.body.removeEventListener('click', this.handler);
},
handleDialog(target){
if (this.dialog.contains(target)) return;
const targetName = target.dataset.name;
if (
!targetName ||
this.dialog.dataset.name==targetName ||
(target!=this.medalButton&&target!=this.titleButton)
) {
return this.closeDialog();
}
const targetConfig = this.strings[targetName];
//设置当前对话框目标
this.dialog.dataset.name = targetName;
this.dialogTitle.innerText = '我的'+targetConfig.name;
//设置对话框位置
this.dialog.style = `transform-origin: ${target.offsetLeft+3}px bottom 0px;position:absolute;bottom:50px;color: #23ade5;`;
this.dialogArraw.innerHTML = `#title-medal-dialog:after,#title-medal-dialog:before{left:${target.offsetLeft+6}px}`;
//显示正在加载面板
helper.set(this.loadingDiv,{
style:"height:100px",
innerHTML:`<span data-v-ec1c3b2e="" role="progress" class="link-progress-tv" data-v-4df82965=""></span>`
})
//清空对话框本体
this.dialogPanel.innerHTML = '';
//底部面板初始化为目标链接
this.dialogBottom.innerHTML = `<a href="${targetConfig.link}" target="_blank" title="前往${
targetConfig.name}管理页面" style="color: #23ade5;">管理我的${targetConfig.name}</a>`;
//获取数据并调用显示处理
helper.xhr(targetConfig.dataUrl).then(async data=>{
if(targetName=='medal') await this.listMedal(data);
else if(targetName=='title') await this.listTitle(data);
}).then(()=>{
this.loadingDiv.style = 'display:none';
if(helper.isFirefox && (this.dialogPanel.scrollHeight>this.dialogPanel.clientHeight)) {
this.dialogPanel.style.width = this.dialogPanel.offsetWidth + 20 + 'px';
}
else {
this.dialogPanel.style.width = 'unset';
}
}).catch (e=>{
this.loadingDiv.innerHTML = `<p class="des">解析返回错误${e}~</p>`;
console.error(e);
});
this.dialog.className = 'arrow-bottom dialog-ctnr common-popup-wrap p-absolute border-box z-chat-control-panel-dialog bottom v-enter a-scale-in-ease v-enter-to';
},
closeDialog(){
if (this.dialog.classList.contains('v-enter')){
this.dialog.dataset.name = '';
this.dialog.className = 'dialog-ctnr common-popup-wrap p-absolute border-box z-chat-control-panel-dialog bottom v-leave a-scale-out';
setTimeout(()=>{this.dialog.style='display:none;';},300);
}
},
doRequire(url,text,data){
if (data) {
let token = document.cookie.match(/bili_jct=([0-9a-fA-F]{32})/);
if (!token) return helper.toast('找不到令牌');
data.csrf_token = data.csrf = token[1];
data.visit_id = '';
}
return helper.xhr(url,data).then(data=>{
helper.toast(`${text}${data.code==0?'成功':`失败 code ${data.code} ${data.message}`}`);
}).catch(e=>{
helper.toast(`${text}出错${e}`)
})
},
buyMedal(type){
if (!confirm(`是否确认使用${type=='silver'?'9900银瓜子':'20硬币'}购买本房间勋章?`)){
return;
}
return this.doRequire(`//api.vc.bilibili.com/link_group/v1/member/buy_medal`, `购买勋章`, {
coin_type: type,
master_uid: this.room.ANCHOR_UID,
platform: 'android'
});
},
async listMedal(data, medalWall){
let hasMedal = false;
if (data.code!=0||!data.data||!(data.data.list instanceof Array)) {
console.error(data);
throw(`查询勋章失败 code:${data.code}</br>${data.message}`);
}
const medalList = (data.data.special_list||[]).concat(data.data.list).map(item=>{
item.medal.room_id = item.room_info.room_id;
item.medal.target_name = item.anchor_info.nick_name;
item.medal.status = item.medal.wearing_status;
return item.medal;
});
if (this.room && this.room.UID && !medalWall) {
const wall = await helper.xhr('//api.live.bilibili.com/xlive/web-ucenter/user/MedalWall?target_id='+this.room.UID);
if (wall.code ==0 && wall.data && (wall.data.list)) {
medalWall = wall.data.list
}
}
if (medalWall instanceof Array) {
for (let item of medalWall) {
let medal = medalList.find(i=>i.target_name == item.target_name);
if (medal) medal.live_stream_status = item.live_status;
}
}
medalList.forEach((v)=>{
if (this.room.ANCHOR_UID==v.target_id) hasMedal = true;
const itemDiv = helper.create('div',{
style:'margin-top: 8px',
className:v.status&&'title-medal-selected-line'||''
},this.dialogPanel);
helper.create('div',{
title:`主播:${v.target_name}\n${v.status?'当前佩戴勋章,点击取消佩戴':'点击佩戴此'}勋章${!v.is_lighted?'\n已熄灭,投喂金瓜子礼物或者小心心点亮':''}`,
style:`border-color: #${v.medal_color_border.toString(16)}`,
innerHTML:`<div class="label" style="background:linear-gradient(45deg, #${v.medal_color_start.toString(16)}, #${v.medal_color_end.toString(16)})"><span class="content">${v.medal_name}</span></div>`
+`<span class="level" style="color:#${v.medal_color_start.toString(16)}">${v.level}</span>`,
className:`fans-medal-item v-middle level-${v.level} ${!v.is_lighted?'gray':''}`,
onclick:()=>{
if (v.status) this.doRequire('//api.live.bilibili.com/xlive/web-room/v1/fansMedal/take_off','取消佩戴勋章', {});
else this.doRequire('//api.live.bilibili.com/xlive/web-room/v1/fansMedal/wear', '切换勋章', {medal_id: v.medal_id});
this.closeDialog();
setTimeout(()=>this.oldMedalButton&&this.oldMedalButton.click()&setTimeout(()=>this.oldMedalButton.click()),200);
}
},itemDiv);
helper.create('span',{
title:`升级进度:${v.intimacy}/${v.next_intimacy}\r\n升级还差:${v.next_intimacy-v.intimacy}`,
className:`dp-i-block over-hidden v-middle ${!v.is_lighted?'gray':''}`,
style:"height: 8px;width: 64px;margin: 0 8px;border-radius: 3px;background-color: #e3e8ec;",
innerHTML:`<span class="dp-i-block h-100 v-top" style="width: ${v.intimacy/v.next_intimacy*100}%;background-color: #23ade5;"></span>`
},itemDiv);
helper.create('a',{
style:'color:#999;min-width:50px',
href:`/${v.room_id||v.roomid}`,target:"_blank",className:"intimacy-text v-middle dp-i-block",
title:`今日上限剩余${v.day_limit-v.today_feed}\n点击前往主播房间`,
innerHTML:`${v.today_feed}/${v.day_limit}${v.live_stream_status==1 ?'<img src="//s1.hdslb.com/bfs/static/blive/blfe-live-room/static/img/living.44021fe..gif" style="height: 12px;vertical-align: middle;" title="正在直播">':''}`
},itemDiv);
});
this.loadingDiv.style = '';
const pages = data.data.page_info;
if (pages && pages.current_page == 1 && medalList.length==0) {
helper.create('p',{
innerHTML:'<p data-v-17cf8b1e="" class="empty-hint-text">你还没有勋章哦~</p>'
+'<div data-v-17cf8b1e="" class="empty-image"></div>'
},this.dialogPanel);
}
else if (pages && pages.current_page < pages.total_page) {
await helper.xhr(this.strings.medal.dataUrl.replace('page=1','page=' + (+pages.current_page+1))).then(async data=>this.listMedal(data, medalWall));
}
},
async listTitle(data){
if (data.code!=0||!data.data||!(data.data.list instanceof Array)) {
console.error(data);
throw(`查询头衔失败 code:${data.code}</br>${data.message}`);
}
if (!this.titleInfos){
await helper.xhr('//api.live.bilibili.com/rc/v1/Title/webTitles').then(data => {
if (data.code!=0||!(data.data instanceof Array)) throw(`code:${data.code}\r\n${data.message}`);
this.titleInfos = {};
data.data.forEach(title=>{
this.titleInfos[title.identification] = title.web_pic_url;
});
}).catch(e=>{
console.error(e);
});
}
data.data.list.forEach((v)=>{
const lvMax = v.level.length&&v.level[v.level.length-1],
unLimit = v.expire_time == "0000-00-00 00:00:00",
outOfDate = (new Date(v.expire_time)-Date.now())/1000/60/60/24<4;
const itemDiv = helper.create('div',{style: 'margin-top: 12px',className:v.status?'title-medal-selected-line':''},this.dialogPanel);
helper.create('a',{
className:"live-title-icon pointer v-middle dp-i-block",
href:v.url==''?'javascript:':v.url,target:'_blank',
title:`${v.name} ${v.activity}\r\n${v.description}\r\n${v.url!=''?'点击前往头衔活动页面':''}`,
innerHTML: `<img alt="${v.name}" src="${(this.titleInfos&&this.titleInfos[v.title])||v.title_pic&&v.title_pic.img}" class="live-title-icon pointer">`,
style:`min-width:88px;`
},itemDiv);
helper.create('span',{
title:`头衔经验:${v.score}\r\n${lvMax?`满级还差${v.score-lvMax}`:''}`,
className:"dp-i-block v-center over-hidden v-middle",
style:"height: 8px;width: 64px;margin: 0 8px;border-radius: 3px;background-color: #e3e8ec;",
innerHTML:`<span class="dp-i-block h-100 v-top" style="width: ${lvMax?v.score/lvMax*100:100}%;background-color: #23ade5;"></span>`
},itemDiv);
helper.create('span',{
style:`color:${outOfDate?'#f00':unLimit?'#c0c0c0':'#29abe1'};border:1px solid ${unLimit?'#c0c0c0':'#a068f1'};border-radius:3px;cursor:pointer;padding:3px;`,
onclick: ()=>{
//if (unLimit) return;
if (v.status) this.doRequire('//api.live.bilibili.com/xlive/web-ucenter/v1/user_title/CancelTitle','取消佩戴头衔', {});
else this.doRequire('//api.live.bilibili.com/appUser/wearTitle', '切换头衔', {title: v.title});
this.closeDialog();
},
className:'v-middle dp-i-block',
title:unLimit?'不可佩戴':`可佩戴时间至${v.expire_time}\r\n点击${v.status?'取消佩戴':'佩戴'}`,
innerText:v.status?'取消':'佩戴'
},itemDiv);
});
if (data.data.list.length==0) {
helper.create('p',{
innerHTML:'<p data-v-17cf8b1e="" class="empty-hint-text">你还没有头衔哦~</p>'
+'<div data-v-17cf8b1e="" class="empty-image"></div>'
},this.dialogPanel);
}
}
},
otherGift:{
init (settings){
const bottomPanel = helper.get('#chat-control-panel-vm .bottom-actions');
this.panel = bottomPanel.querySelector('.left-action')|| bottomPanel;
this.newGift = helper.create('div', {
style: "display: inline-block;height: 16px;width: 16px;background: pink;text-align: center;color: white;cursor: pointer;font-size: 12px;line-height: 16px; margin: 0 1px;",
innerText:'礼',
title:'其它礼物'
});
this.handler = (ev)=>this.showGift(ev.target);
if(settings.showOtherGift) this.append();
},
append(){
this.panel.appendChild(this.newGift);
document.body.addEventListener('click',this.handler);
},
remove(){
document.body.removeEventListener('click',this.handler);
this.panel.removeChild(this.newGift);
},
update(item,value){
if(value){
this.append();
}else{
this.remove();
}
},
token:(()=>{
try{
return document.cookie.match(/bili_jct=([0-9a-fA-F]{32})/)[1];
}catch(e){
return undefined;
}
})(),
imgType:(()=>{
try{
return 0==document.createElement('canvas').toDataURL("image/webp").indexOf("data:image/webp")?'webp':'gif';
}catch(e){
return 'gif';
}
})(),
newGift:undefined,
gift:[],
room:typeof(unsafeWindow)!="undefined"?unsafeWindow.BilibiliLive:window.BilibiliLive,
sendGift(index){
let type = 'gold';
let num = 1;
this.newGift.lastChild.style.display = 'none';
const target = this.gifts[index];
const sendPanel = helper.create('div',{
style:"position: fixed;top: 0px;bottom: 0px;left: 0px;right: 0px;background: rgba(0, 0, 0, 0.4);z-index: 10000;",
innerHTML : `
<div style="width: 298px;right: 0px;left: 0px;position: absolute;padding: 20px;background: rgb(255, 255, 255);
border-radius: 8px;margin: auto;transform: translate(0px, 50%);box-sizing: content-box;">
<h2 style="font-size: 20px;color: rgb(79, 193, 233);font-weight: 400;padding-bottom: 10px;margin: 0;">赠送礼物
<span style="float: right;cursor: pointer;font-size: 15px;" class="bilibili-live-player-gfs-give-close">X</span></h2>
<div>
<div style="background-image: url(${target[this.imgType]});width: 72px;height: 72px;background-size: cover;display: inline-block;"></div>
<div class="bilibili-live-player-gfs-give-info" style="display: inline-block;vertical-align: top;">
<span>${target.name}</span>
<span class="bilibili-live-player-gfs-give-cost-gold"><i data-v-13895867="" class="svg-icon gold-seed v-middle"></i><span>${target.price}</span></span>
<p class="gift-info-desc" data-v-33a72392="" style="margin-top: 4px;color: #666;max-width: 215px;">${target.desc}</p></div>
</div>
<div style="border-top: 1px solid #f0f0f0;padding-top: 10px;margin-top: 10px;">
<label>
<span>选择:</span>
<input name="send_gift_type" type="radio" value="gold" checked id="send_gold" style="vertical-align: text-top;margin: 0 2px;"><label for="send_gold">金瓜子</label>
<input name="send_gift_type" type="radio" value="silver" id="send_silver" style="vertical-align: text-top;margin: 0 2px;"><label for="send_silver">银瓜子</label>
</label>
<input class="bilibili-live-player-gfs-give-counter" type="text" value="1" placeholder="赠送数量" style="width: 50px;box-sizing: border-box;margin: 0 10px;
border-color: #d0d7dd;vertical-align: bottom;text-align: center;height: 24px;padding: 2px 8px;line-height: 25px;
border: 1px solid #aaa;border-radius: 4px;background-color: #fff;outline: none;">
<button class="bilibili-live-player-gfs-give-confirm" style="position: relative;box-sizing: border-box;line-height: 1;min-width: 0;width: 60px;
height: 24px;background-color: #23ade5;color: #fff;font-size: 14px;border: 0;border-radius: 4px;cursor: pointer;outline: none;overflow: hidden;">赠送</button>
</div>
</div>`
},document.body);
sendPanel.querySelector('input[value="silver"]').onchange = ()=>{type='silver';};
sendPanel.querySelector('input[value="gold"]').onchange = ()=>{type='gold';};
sendPanel.querySelector('.bilibili-live-player-gfs-give-counter').onchange = (ev)=>{num=ev.target.value;};
sendPanel.querySelector('.bilibili-live-player-gfs-give-close').onclick = ()=>document.body.removeChild(sendPanel);
sendPanel.querySelector('.bilibili-live-player-gfs-give-confirm').onclick = ()=>{
document.body.removeChild(sendPanel);
if (!this.room){
return helper.toast('无法找到房间信息,赠送失败');
}
helper.xhr('//api.live.bilibili.com/gift/v2/gift/send',{
gift_id:target.id,
ruid:this.room.ANCHOR_UID,
gift_num:num,
coin_type:type,
biz_id:this.room.ROOMID,
csrf_token:this.token
}).then(data=>{
helper.toast(`赠送礼物${data.code==0?'成功':`失败 code ${data.code} ${data.message}`}`);
}).catch(error=>{
helper.toast(`赠送礼物$出错${error}`);
});
};
},
showGift(target){
if (!this.newGift.contains(target)){
if (this.newGift.lastChild.style) this.newGift.lastChild.style.display = 'none';
}else if (target==this.newGift){
if (this.newGift.lastChild.style&&this.newGift.lastChild.style.display!='none') {
return (this.newGift.lastChild.style.display = 'none');
}
else if (this.gifts) {
return (this.newGift.lastChild.style.display = 'unset');
}
const list = document.createElement('div');
const items = document.createElement('div');
items.innerHTML = '<div data-v-ec1c3b2e="" class="tv" style="height:100px"><div data-v-4df82965="" data-v-ec1c3b2e="" role="progress" class="link-progress-tv"></div></div>';
list.className = 'other-gift-dialog arrow-bottom common-popup-wrap t-left';
list.style = 'position: absolute;width: 276px;bottom: 30px;left: 0px;cursor: auto;animation:scale-in-ease 0.4s;transform-origin: 90px bottom 0px;';
list.innerHTML = `<style>.other-gift-dialog:before,.other-gift-dialog:after {left: ${target.offsetLeft+6}px !important;}</style><header style="font-size:18px;color:#23ade5;margin-bottom:10px;">其它礼物</header>`;
list.appendChild(items);
this.newGift.appendChild(list);
helper.xhr('//api.live.bilibili.com/gift/v3/live/gift_config').then(data=>{
this.gifts = data.data;
items.innerHTML = '';
items.style = 'height:233px;overflow: auto;'
for (let i=0;i<this.gifts.length;i++){
const g = this.gifts[i];
items.innerHTML += `<div data-index="${i}" style="background-image: url(${g.img_basic});width: 45px;height: 45px;"
class="bg-cover dp-i-block pointer" title="${g.name}"></div>`;
}
[].forEach.call(items.childNodes,c=>{
c.onclick = (ev) => this.sendGift(ev.target.dataset.index);
});
});
}
}
},
changeSetting(target){
try{
this.settings[target.id] = target.checked;
this[this.settingInfos[target.id].group].update(target.id,target.checked);
typeof(GM_setValue)!='undefined'?GM_setValue('BilibiliLiveHelper',JSON.stringify(this.settings))
:localStorage.BilibiliLiveHelper = JSON.stringify(this.settings);
}
catch(e){
console.error(e);
}
},
initSetting(){
this.settings = (()=>{
try{
const str = typeof(GM_setValue)!='undefined'?
GM_getValue('BilibiliLiveHelper','{}'):localStorage.BilibiliLiveHelper;
return JSON.parse(str);
}catch(e){
return {};
}
})();
for(const key in this.settingInfos){
if(this.settings[key]==undefined) this.settings[key] = true;
}
let controller = helper.get('.web-player-controller-wrap+.web-player-controller-wrap');
if (!controller) return;
const settingPanel = helper.create('div',{
className: 'player-type',
style: 'padding-top: 5px;line-height: 14px;',
innerHTML:`<div>直播间助手设置</div>`,
});
new MutationObserver((mutations, observer)=>{
//return console.log(mutations);
if (!controller.parentNode) {
console.log('reload?');
observer.disconnect();
controller = helper.get('.web-player-controller-wrap+.web-player-controller-wrap');
if (controller) observer.observe(controller, {childList:true, subtree:true});
}
for (const mutation of mutations) {
for (const panel of mutation.addedNodes) {
if (panel.classList && panel.classList.contains('danmaku-control')) {
return panel.appendChild(settingPanel);
}
}
}
}).observe(controller, {childList:true, subtree:true});
//helper.create('style',{innerHTML:'.setting-panel{width:max-content!important}'}, document.head);
for(const key in this.settingInfos){
const item = helper.create('div',{className:'blpui-checkbox-container'},settingPanel);
helper.create('input',{
type:'checkbox',
className:'player-type',
id:key,
checked:this.settings[key],
onchange:({target})=>this.changeSetting(target)
},item);
helper.create('label',{
className:'blpui-checkbox-span no-select',
innerText:this.settingInfos[key].name
},item).setAttribute('for',key);
}
},
doInit(){
try{
//已经有一个礼物包裹的ID说明脚本运行过返回true防止二次初始化
if(helper.get('#giftPackage')) return true;
//页面中没有礼物包裹说明页面没有加载完成返回false继续监听页面加载
if(!helper.get('.gift-package')) return false;
this.initSetting();
this.elementAdjuster.init(this.settings);
//this.advancedSwitcher.init(this.settings);
//this.otherGift.init(this.settings);
this.timeSync.init(this.settings);
//初始化成功返回true不用监听页面加载
return true;
} catch (e){
//helper.toast('bilibili直播间助手执行错误',e);
//初始化异常,返回true放弃继续监听页面
return true;
}
},
init(){
if(this.doInit()) return;
new MutationObserver((mutations,observer) => {
//console.log(mutations)
if(helper.get('.gift-package')){
observer.disconnect();
this.doInit();
return;
}
}).observe(helper.get('#aside-area-vm')||document.body, {
childList: true,
subtree: true
});
}
};
LiveHelper.init();
})();