Flashget_base64.js
上传用户:whzhongbo
上传日期:2022-07-31
资源大小:1531k
文件大小:5k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

DOS

  1. function FlashgetDown(str,uid){
  2. str = str+"&1188811424";
  3. AddLink(str,"快车专用下载通道",window.location.href,uid);
  4. }
  5. function AddLink(durl,text,qurl,uid){ 
  6. var JetCarCatch;
  7. try{
  8. JetCarCatch=new ActiveXObject("FG2CatchUrl.Netscape");
  9. }catch(e){
  10. try{
  11. JetCarCatch=new ActiveXObject("JetCar.Netscape");
  12. }catch(e){}
  13. }
  14. if(JetCarCatch){
  15. try{
  16. JetCarCatch.IsVersion2(); JetCarCatch.AddUrl(durl,text,qurl);
  17. }catch(e){
  18. kuaicheMsg(uid,qurl,durl);
  19. }
  20. }else{
  21. kuaicheMsg(uid,qurl,durl);
  22.     }
  23. }
  24. function kuaicheMsg(uid,qurl,durl){
  25. qurl = encodeURIComponent(qurl.replace("#",""));
  26. durl  = encodeURIComponent(durl);
  27. location.href="http://search.kuaiche.com/union/down/flashget_total.html?fid="+uid+"&durl="+durl+"&qurl="+qurl;
  28. }
  29. var fg_base64EncodeChars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
  30. var fg_base64DecodeChars = new Array(
  31.     -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
  32.     -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
  33.     -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 62, -1, -1, -1, 63,
  34.     52, 53, 54, 55, 56, 57, 58, 59, 60, 61, -1, -1, -1, -1, -1, -1,
  35.     -1,  0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14,
  36.     15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -1, -1, -1, -1, -1,
  37.     -1, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
  38.     41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1);
  39. function fg_base64encode(str) {
  40.     var out, i, len;
  41.     var c1, c2, c3;
  42.     len = str.length;
  43.     i = 0;
  44.     out = "";
  45.     while(i < len) {
  46. c1 = str.charCodeAt(i++) & 0xff;
  47. if(i == len)
  48. {
  49.     out += fg_base64EncodeChars.charAt(c1 >> 2);
  50.     out += fg_base64EncodeChars.charAt((c1 & 0x3) << 4);
  51.     out += "==";
  52.     break;
  53. }
  54. c2 = str.charCodeAt(i++);
  55. if(i == len)
  56. {
  57.     out += fg_base64EncodeChars.charAt(c1 >> 2);
  58.     out += fg_base64EncodeChars.charAt(((c1 & 0x3)<< 4) | ((c2 & 0xF0) >> 4));
  59.     out += fg_base64EncodeChars.charAt((c2 & 0xF) << 2);
  60.     out += "=";
  61.     break;
  62. }
  63. c3 = str.charCodeAt(i++);
  64. out += fg_base64EncodeChars.charAt(c1 >> 2);
  65. out += fg_base64EncodeChars.charAt(((c1 & 0x3)<< 4) | ((c2 & 0xF0) >> 4));
  66. out += fg_base64EncodeChars.charAt(((c2 & 0xF) << 2) | ((c3 & 0xC0) >>6));
  67. out += fg_base64EncodeChars.charAt(c3 & 0x3F);
  68.     }
  69.     return out;
  70. }
  71. function fg_base64decode(str) {
  72.     var c1, c2, c3, c4;
  73.     var i, len, out;
  74.     len = str.length;
  75.     i = 0;
  76.     out = "";
  77.     while(i < len) {
  78. /* c1 */
  79. do {
  80.     c1 = fg_base64DecodeChars[str.charCodeAt(i++) & 0xff];
  81. } while(i < len && c1 == -1);
  82. if(c1 == -1)
  83.     break;
  84. /* c2 */
  85. do {
  86.     c2 = fg_base64DecodeChars[str.charCodeAt(i++) & 0xff];
  87. } while(i < len && c2 == -1);
  88. if(c2 == -1)
  89.     break;
  90. out += String.fromCharCode((c1 << 2) | ((c2 & 0x30) >> 4));
  91. /* c3 */
  92. do {
  93.     c3 = str.charCodeAt(i++) & 0xff;
  94.     if(c3 == 61)
  95. return out;
  96.     c3 = fg_base64DecodeChars[c3];
  97. } while(i < len && c3 == -1);
  98. if(c3 == -1)
  99.     break;
  100. out += String.fromCharCode(((c2 & 0XF) << 4) | ((c3 & 0x3C) >> 2));
  101. /* c4 */
  102. do {
  103.     c4 = str.charCodeAt(i++) & 0xff;
  104.     if(c4 == 61)
  105. return out;
  106.     c4 = fg_base64DecodeChars[c4];
  107. } while(i < len && c4 == -1);
  108. if(c4 == -1)
  109.     break;
  110. out += String.fromCharCode(((c3 & 0x03) << 6) | c4);
  111.     }
  112.     return out;
  113. }
  114. function fg_utf16to8(str) {
  115.     var out, i, len, c;
  116.     out = "";
  117.     len = str.length;
  118.     for(i = 0; i < len; i++) {
  119. c = str.charCodeAt(i);
  120. if ((c >= 0x0001) && (c <= 0x007F)) {
  121.     out += str.charAt(i);
  122. } else if (c > 0x07FF) {
  123.     out += String.fromCharCode(0xE0 | ((c >> 12) & 0x0F));
  124.     out += String.fromCharCode(0x80 | ((c >>  6) & 0x3F));
  125.     out += String.fromCharCode(0x80 | ((c >>  0) & 0x3F));
  126. } else {
  127.     out += String.fromCharCode(0xC0 | ((c >>  6) & 0x1F));
  128.     out += String.fromCharCode(0x80 | ((c >>  0) & 0x3F));
  129. }
  130.     }
  131.     return out;
  132. }
  133. function fg_utf8to16(str) {
  134.     var out, i, len, c;
  135.     var char2, char3;
  136.     out = "";
  137.     len = str.length;
  138.     i = 0;
  139.     while(i < len) {
  140. c = str.charCodeAt(i++);
  141. switch(c >> 4)
  142.   case 0: case 1: case 2: case 3: case 4: case 5: case 6: case 7:
  143.     // 0xxxxxxx
  144.     out += str.charAt(i-1);
  145.     break;
  146.   case 12: case 13:
  147.     // 110x xxxx   10xx xxxx
  148.     char2 = str.charCodeAt(i++);
  149.     out += String.fromCharCode(((c & 0x1F) << 6) | (char2 & 0x3F));
  150.     break;
  151.   case 14:
  152.     // 1110 xxxx  10xx xxxx  10xx xxxx
  153.     char2 = str.charCodeAt(i++);
  154.     char3 = str.charCodeAt(i++);
  155.     out += String.fromCharCode(((c & 0x0F) << 12) |
  156.    ((char2 & 0x3F) << 6) |
  157.    ((char3 & 0x3F) << 0));
  158.     break;
  159. }
  160.     }
  161.     return out;
  162. }
  163. function convertFgURL(url,id){
  164. try{
  165. FlashgetDown(FlashgetEncode_js(url,id),id);
  166. }catch(e){
  167. //alert(e.message);
  168. location.href = url;
  169. }
  170. }
  171. function Flashget_SetHref_js(obj,uid){
  172. obj.href = FlashgetEncode_js(this.fUrl,uid) ;
  173. }
  174. function FlashgetEncode_js(t_url,uid) {
  175. var prefix = "Flashget://";
  176. var FlashgetURL =  prefix + fg_base64encode(fg_utf16to8("[FLASHGET]" +t_url + "[FLASHGET]"))+"&"+uid;
  177. return FlashgetURL;
  178. }