bilibili toothbrush

牙刷科技,还原哔哩哔哩播放器,404页面视频需挂代理

当前为 2014-08-21 提交的版本,查看 最新版本

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name        bilibili toothbrush
// @namespace   http://www.icycat.com
// @description 牙刷科技,还原哔哩哔哩播放器,404页面视频需挂代理
// @include     *www.bilibili.tv*
// @include     *www.bilibili.com*
// @include     *bilibili.kankanews.com*
// @version     2.9
// @grant       GM_xmlhttpRequest
// @run-at      document-start
// ==/UserScript==

var bili = {
    aid: null,
    cid: null,
    bofqi: null,
    oPlayer: null,
    title: null,
    iframe: function() {
        return '<iframe id="bofqi_embed" width="950" height="482" class="player" src="https://secure.bilibili.tv/secure,cid=' + this.cid + '&aid=' + this.aid + '" scrolling="no" border="0" frameborder="no" framespacing="0" onload="window.securePlayerFrameLoaded=true"></iframe>';
    },
    embed: function() {
        return '<embed id="bofqi_embed" rel="noreferrer" width="950" height="482" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" allowFullScreenInteractive="true" flashvars="cid=' + this.cid + '&aid=' + this.aid + '" src="http://static.hdslb.com/play.swf" type="application/x-shockwave-flash" AllowScriptAccess="always" allowfullscreen="true" quality="high" />';
    },
    embedFull: function() {
        return '<embed id="bofqi_embed" rel="noreferrer" width="100%" height="100%" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" allowFullScreenInteractive="true" flashvars="cid=' + this.cid + '&aid=' + this.aid + '" src="http://static.hdslb.com/play.swf" type="application/x-shockwave-flash" AllowScriptAccess="always" allowfullscreen="true" quality="high" />';
    },
};

document.addEventListener('DOMContentLoaded', init, false);

function init() {
    var z = document.querySelector('.z');
    if (z) {
        z.scrollIntoView();
    }
    var ad = document.querySelector('.ad-f');
    if (ad) {
        ad.style.display = 'none';
    }
    checkUrl();
}

function checkUrl() {
    var url = document.location.href;
    if (url.match(/av/)) {
        handleAv();
    } else if(url.match(/sp/)){
        handleSp(1);
    } else {
        console.log('页面不存在视频内容');
        return;
    }
}

function handleAv() {
    var title = document.getElementsByTagName('title')[0].text;
    bili.bofqi = document.getElementById('bofqi');
    if (bili.bofqi) {
        var aid_array = document.location.href.match(/av(\d+)/);
        bili.aid = aid_array == null ? 'error' : aid_array[1];
        console.log('aid:' + bili.aid);
        var embed_array = bili.bofqi.getElementsByTagName('embed');
        bili.oPlayer = embed_array.length > 0 ? embed_array[0] : false;
        if (bili.oPlayer) {
            var flashvars = bili.oPlayer.getAttribute('flashvars');
            var cid_array = flashvars.match(/bili-cid=(\d+)/);
            if (cid_array) {
                console.log('存在版权播放器');
                bili.cid = cid_array[1];
                console.log('cid:' + bili.cid);
                checkCid();
            } else {
                console.log('乐视源B站播放器,无需替换!');
                return;
            }
        } else {
            console.log('播放器无需替换!');
            return;
        }
    } else {
        if (title == '出错啦! - bilibili.tv') {
            console.log('404啦');
            errorAddTip('尝试自动搜寻其他视频源中...');
            var errorAid = document.location.href.match(/#(\d+)/);
            if(errorAid){
                bili.aid = errorAid[1];
                errorGetCid();
            } else {
                errorAddTip('无法获取视频AV号');
            }
        } else {
            console.log('页面不存在视频内容');
            return;
        }
    }
}

function handleSp(count) {
    var a = document.getElementById('bgm_video_container').getElementsByTagName('a');
    if(a.length>0){
        for(var i=0; i<a.length; i++){
            var aid = a[i].href.match(/av(\d+)/);
            if(aid){
                a[i].href = a[i].href+'#'+aid[1];
                console.log(a[i].href);
            }
        }
    } else {
        console.log(count);
        if(count<100){
            var t = setTimeout(function(){
            handleSp(count+1);
            },100);
        }
    }
}

function checkCid() {
    console.log('检查是否存在视频源');
    GM_xmlhttpRequest({
        method: 'GET',
        url: 'http://interface.bilibili.com/playurl?appkey=11ecf7fd943dbc58&cid=' + bili.cid,
        headers: {
            'User-Agent': navigator.userAgent,
            'Cookie': document.cookies,
        },
        onload: function(responseDetails) {
            if (responseDetails.status == 200) {
                var timelength = responseDetails.responseText.match(/<timelength>(\d+)<\/timelength>/);
                if (timelength) {
                    console.log('存在视频源,开始替换播放器');
                    replacePlayer();
                } else {
                    addCheckTip('暂无其他视频源啦!<br/>停止替换播放器!');
                    console.log('不存在视频源,停止替换');
                }
            }
        }
    });
}

function addCheckTip(str) {
    var tip = document.createElement('div');
    tip.id = 'check_tip';
    tip.innerHTML = str;
    document.body.appendChild(tip);
    addStyle('#check_tip{transition: all 0.8s ease-out;background: none repeat scroll 0 0 #27a9d8;color: #FFFFFF;font: 1.1em "微软雅黑";right: -200px;margin-left: -250px;overflow: hidden;padding: 10px;position: fixed;text-align: center;bottom: 100px;z-index: 300;}');
    var check_tip = document.getElementById('check_tip');
    var t1 = setTimeout(function() {
        check_tip.style.right = '25px';
    }, 300);
    var t2 = setTimeout(function() {
        check_tip.style.right = '-200px';
    }, 5000);
}

function createButton() {
    var info = document.querySelector('.viewbox').querySelector('.info');
    var btn = document.createElement('div');
    btn.id = 'player_btn';
    btn.onclick = function() {
        playerBackControl(true);
    };
    btn.appendChild(document.createTextNode('取消替换'));
    info.appendChild(btn);
    addStyle('#player_btn {background: none repeat scroll 0 0 #27A9D8;border-radius: 5px;cursor: pointer;color: #FFFFFF;font: 1em "微软雅黑";padding: 6px;position: absolute;right: 110px;width:30px;text-align: center;top: 8px;');
}

function addStyle(css) {
    var style = document.createElement('style');
    style.type = 'text/css';
    var node = document.createTextNode(css);
    style.appendChild(node);
    document.head.appendChild(style);
}

function replacePlayer() {
    bili.bofqi.innerHTML = bili.iframe();
    var player_fullwin = unsafeWindow.player_fullwin;
    window.addEventListener("message", function(e) {console.log(e.data);eval(e.data.substr(6));}, false);
    createButton();
    addCheckTip('找到视频源啦!<br/>替换播放器成功!');
    console.log('播放器替换成功!');
}

function playerBackControl(status) {
    console.log('backStatus:' + status);
    var player_btn = document.getElementById('player_btn');
    if (status) {
        player_btn.onclick = function() {
            playerBackControl(false);
        };
        player_btn.innerHTML = '重新替换';
        bili.bofqi.removeChild(document.getElementById('bofqi_embed'));
        bili.bofqi.appendChild(bili.oPlayer);
    } else {
        player_btn.onclick = function() {
            playerBackControl(true);
        };
        player_btn.innerHTML = '取消替换';
        bili.bofqi.innerHTML = bili.iframe();
    }
}


/* 404页面处理 */

function errorAddTip(str) {
    var isTip = document.getElementById('tip');
    if (isTip) {
        isTip.parentNode.removeChild(isTip);
    }
    var tip = document.createElement('div');
    tip.id = 'tip';
    tip.innerHTML = str;
    document.body.appendChild(tip);
    addStyle('body{text-align:center;}#tip{background: none repeat scroll 0 0 #27a9d8;color: #FFFFFF;font: 1.5em "微软雅黑";padding: 30px;position: fixed;text-align: center;top: 40%;z-index: 300;margin:0 auto;left:0;right:0;width:500px;}');
}

function errorGetCid() {
    GM_xmlhttpRequest({
        method: 'GET',
        url: 'http://api.bilibili.com/view?type=json&batch=1&appkey=11ecf7fd943dbc58&id=' + bili.aid,
        headers: {
            'User-Agent': 'bilibili toothbrush/2.6 ([email protected])',
            'Cookie': document.cookies,
        },
        onload: function(responseDetails) {
            if (responseDetails.status == 200) {
                var data = JSON.parse(responseDetails.responseText);
                bili.cid = data.list[0].cid;
                bili.title = data.title;
                console.log('cid:' + bili.cid);
                console.log('视频来源:' + data.list[0].type);
                errorCheckCid(data.list[0].type);
            }
        }
    });
}

function errorCheckCid(vtype) {
    console.log('检查是否存在视频源');
    GM_xmlhttpRequest({
        method: 'GET',
        url: 'http://interface.bilibili.com/playurl?appkey=11ecf7fd943dbc58&cid=' + bili.cid,
        headers: {
            'User-Agent': navigator.userAgent,
            'Cookie': document.cookies,
        },
        onload: function(responseDetails) {
            if (responseDetails.status == 200) {
                var timelength = responseDetails.responseText.match(/<timelength>(\d+)<\/timelength>/);
                if (timelength) {
                    console.log('存在视频源,开始替换播放器');
                    errorAddPlayer();
                } else {
                    if (vtype == "letv") {
                        errorAddTip('存在乐视源!<br/>需要挂国外代理观看!<br/>若无法观看请按CTRL+F5刷新页面!');
                    } else {
                        errorAddTip('视频被和谐啦!<br/>暂时找不到其他视频源!');
                    }
                }
            }
        }
    });
}

function errorAddPlayer() {
    errorAddTip('找到视频源!<br/>2秒后开始播放!');
    addStyle('body{margin: 0px;padding: 0px;}');
    document.getElementsByTagName('title')[0].text = bili.title;
    setTimeout(function() {
        document.body.innerHTML = bili.embedFull();

    }, 2000);
}