pre.js 7.6 KB
Newer Older
H
hjdhnx 已提交
1
var VODS = [];
H
hjdhnx 已提交
2
var $ = {};
H
hjdhnx 已提交
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
 if (!String.prototype.includes) {
    String.prototype.includes = function (search, start) {

      if (typeof start !== 'number') {
        start = 0;
      }

      if (start + search.length > this.length) {
        return false;
      } else {
        return this.indexOf(search, start) !== -1;
      }
    };
  }

  if (!Array.prototype.includes) {
    Object.defineProperty(Array.prototype, 'includes', {
      value: function (searchElement, fromIndex) {

        if (this == null) {//this是空或者未定义,抛出错误
          throw new TypeError('"this" is null or not defined');
        }

        var o = Object(this);//将this转变成对象
        var len = o.length >>> 0;//无符号右移0位,获取对象length属性,如果未定义就会变成0

        if (len === 0) {//length为0直接返回false未找到目标值
          return false;
        }

        var n = fromIndex | 0;//查找起始索引
        var k = Math.max(n >= 0 ? n : len - Math.abs(n), 0);//计算正确起始索引,因为有可能是负值

        while (k < len) {//从起始索引处开始循环
          if (o[k] === searchElement) {//如果某一位置与寻找目标相等,返回true,找到了
            return true;
          }
          k++;
        }
        return false;//未找到,返回false
      }
    });
  }
H
hjdhnx 已提交
46 47 48 49 50 51 52 53 54 55 56
if (typeof String.prototype.startsWith != 'function') {
	String.prototype.startsWith = function (prefix){
		return this.slice(0, prefix.length) === prefix;
	};
}
if (typeof String.prototype.endsWith != 'function') {
	String.prototype.endsWith = function(suffix) {
		return this.indexOf(suffix, this.length - suffix.length) !== -1;
	};
}

H
hjdhnx 已提交
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
Object.assign = function () {
	var target = arguments[0];
    for (var i = 1; i < arguments.length; i++) {
        var source = arguments[i];
        for (var key in source) {
            if (Object.prototype.hasOwnProperty.call(source, key)) {
                target[key] = source[key];
            }
        }
    }
    return target;
};
Object.prototype.myValues=function(obj){
   if(obj ==null) {
   	 throw new TypeError("Cannot convert undefined or null to object");
   }
   var res=[]
   for(var k in obj){
     if(obj.hasOwnProperty(k)){//需判断是否是本身的属性
   		res.push(obj[k]);
   	 }
   }
   return res;
}
H
hjdhnx 已提交
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
if (typeof Object.prototype.values != 'function') {
	Object.prototype.values=function(obj){
   if(obj ==null) {
   	 throw new TypeError("Cannot convert undefined or null to object");
   }
   var res=[]
   for(var k in obj){
     if(obj.hasOwnProperty(k)){//需判断是否是本身的属性
   		res.push(obj[k]);
   	 }
   }
   return res;
}
}

H
hjdhnx 已提交
96
Array.prototype.join = function (emoji) {
97 98
    // emoji = emoji||',';
    emoji = emoji||'';
H
hjdhnx 已提交
99 100 101 102 103 104 105 106 107 108 109 110 111
      let self = this;
      let str = "";
      let i = 0;
      if (!Array.isArray(self)) {throw String(self)+'is not Array'}
      if(self.length===0){return ''}
      if (self.length === 1){return String(self[0])}
      i = 1;
      str = this[0];
      for (; i < self.length; i++) {
        str += String(emoji)+String(self[i]);
      }
      return str;
};
H
hjdhnx 已提交
112
Array.prototype.append = Array.prototype.push;
H
hjdhnx 已提交
113
String.prototype.strip = String.prototype.trim;
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
function 是否正版(vipUrl){
    let flag = new RegExp('qq\.com|iqiyi\.com|youku\.com|mgtv\.com|bilibili\.com|sohu\.com|ixigua\.com|pptv\.com|miguvideo\.com|le\.com|1905\.com|fun\.tv');
    return  flag.test(vipUrl);
}
function urlDeal(vipUrl){
    if(!vipUrl){
        return ''
    }
    if(!是否正版(vipUrl)){
        return vipUrl
    }
    if(!/miguvideo/.test(vipUrl)){
        vipUrl=vipUrl.split('#')[0].split('?')[0];
    }
    return vipUrl
}
H
hjdhnx 已提交
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
function setResult(d){
    if(!Array.isArray(d)){
        return []
    }
    d.forEach(function (it){
        let obj = {
            vod_id:it.url||'',
            vod_name: it.title||'',
            vod_remarks: it.desc||'',
            vod_content: it.content||'',
            vod_pic: it.pic_url||it.img||'',
        };
        let keys = Object.keys(it);
        if(keys.includes('tname')){
            obj.type_name = it.tname||'';
        }
        if(keys.includes('tid')){
            obj.type_id = it.tid||'';
        }
        if(keys.includes('year')){
            obj.vod_year = it.year||'';
        }
        if(keys.includes('actor')){
            obj.vod_actor = it.actor||'';
        }
        if(keys.includes('director')){
            obj.vod_director = it.director||'';
        }
        if(keys.includes('area')){
            obj.vod_area = it.area||'';
        }
        VODS.push(obj);
    });
    return VODS
}
H
hjdhnx 已提交
165
function setResult2(res){
H
hjdhnx 已提交
166
    VODS = res.list||[];
H
hjdhnx 已提交
167 168 169 170 171 172 173 174
    return VODS
}
function setHomeResult(res){
    if(!res||typeof(res)!=='object'){
        return []
    }
    return setResult(res.list);
}
H
hjdhnx 已提交
175
// 千万不要用for in 推荐 forEach (for in 会打乱顺序)
176
//猫函数
H
hjdhnx 已提交
177 178 179
function maoss(jxurl, ref, key) {
    eval(getCryptoJS());
    try {
180 181
        var getVideoInfo = function (text) {
                return CryptoJS.AES.decrypt(text, key, {iv: iv, padding: CryptoJS.pad.Pkcs7}).toString(CryptoJS.enc.Utf8);
H
hjdhnx 已提交
182 183 184 185 186 187 188 189 190 191 192
        };
        var token_key = key == undefined ? 'dvyYRQlnPRCMdQSe' : key;
        if (ref) {
            var html = request(jxurl, {
                headers: {
                    'Referer': ref
                }
            });
        } else {
            var html = request(jxurl);
        }
193
        // print(html);
H
hjdhnx 已提交
194 195 196 197 198 199
        if (html.indexOf('&btwaf=') != -1) {
            html = request(jxurl + '&btwaf' + html.match(/&btwaf(.*?)"/)[1], {
                headers: {
                    'Referer': ref
                }
            })
200
        }
H
hjdhnx 已提交
201 202 203 204 205
        var token_iv = html.split('_token = "')[1].split('"')[0];
        var key = CryptoJS.enc.Utf8.parse(token_key);
        var iv = CryptoJS.enc.Utf8.parse(token_iv);
        // log("iv:"+iv);
        //  log(html);
206 207
        // print(key);
        // print(iv);
H
hjdhnx 已提交
208
        eval(html.match(/var config = {[\s\S]*?}/)[0] + '');
209 210 211
        // config.url = config.url.replace(/,/g,'');
        // print(config.url);
        if (!config.url.startsWith('http')) {
H
hjdhnx 已提交
212 213 214 215 216 217 218 219 220 221
            //config.url = decodeURIComponent(AES(config.url, key, iv));
            config.url = CryptoJS.AES.decrypt(config.url, key, {
                iv: iv,
                padding: CryptoJS.pad.Pkcs7
            }).toString(CryptoJS.enc.Utf8)
        }
        return config.url;
    } catch (e) {
        return '';
    }
H
hjdhnx 已提交
222 223 224
}

function request(url,obj){
225 226
    // obj = obj||{'user-agent': MOBILE_UA};
    let new_obj;
H
hjdhnx 已提交
227
    if(typeof(fetch_params)!=='undefined'){
228
        new_obj = obj?Object.assign(fetch_params,obj):fetch_params;
H
hjdhnx 已提交
229
    }else{
230 231
        new_obj = obj||{}
    }
H
hjdhnx 已提交
232
    if(!new_obj||!new_obj.headers||(!new_obj.headers['User-Agent']&&!new_obj.headers['user-agent'])){
233
        new_obj.headers['User-Agent'] = MOBILE_UA;
H
hjdhnx 已提交
234
    }
235
    // delete new_obj.headers['Referer'];
H
hjdhnx 已提交
236
    // print(obj);
H
hjdhnx 已提交
237
    // print(new_obj);
H
hjdhnx 已提交
238
    if(typeof(fetch)!==undefined){
239
        let html = fetch(url,new_obj);
H
hjdhnx 已提交
240 241 242
        if (/\?btwaf=/.test(html)) {//宝塔验证
            url=url.split('#')[0]+'?btwaf'+html.match(/btwaf(.*?)\"/)[1];
            log("宝塔验证跳转到:"+url);
243
            html = fetch(url, new_obj);
H
hjdhnx 已提交
244 245 246 247
        }
        return html
    }
    return ''
H
hjdhnx 已提交
248 249
}

H
hjdhnx 已提交
250 251 252 253 254 255 256 257 258
function rc(url){// 系统已经有require方法了,再覆盖的话无法操作了
    res =  eval(requireObj(url));
    // print(res);
    return res;
    // return eval.call(null, requireObj(url));
}

$.require = rc;

H
hjdhnx 已提交
259 260 261 262 263
function urlencode (str) {
    str = (str + '').toString();

    return encodeURIComponent(str).replace(/!/g, '%21').replace(/'/g, '%27').replace(/\(/g, '%28').
    replace(/\)/g, '%29').replace(/\*/g, '%2A').replace(/%20/g, '+');
H
hjdhnx 已提交
264
}