forked from crazypeace/gh-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
77 lines (61 loc) · 2.38 KB
/
main.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
function convertScript() {
inputStr = document.querySelector("#githubScript").value;
if (inputStr == "") {
return;
}
ghproxy = document.querySelector("#ghproxy").value;
perlcmdbegin = ' | perl -pe "$(curl -L ';
perlcmdend = ')"';
perlrule = ghproxy + 'perl-pe-para';
// 先给裸的git类链接前面加上 https://
inputStr = inputStr.replace(/ git/g, ' https://git');
// 再进行加github proxy的转换
// 处理 bash <( curl xxx.sh) 或 bash <( wget -O- xxx.sh)
regex1 = /(bash.*?)(https?:\/\/.*?)(\).*)/s;
// 考虑嵌套调用的情况
replacement1 = '$1' + ghproxy + '$2' + perlcmdbegin + perlrule + perlcmdend + '$3';
resultStr1 = inputStr.replace(regex1, replacement1);
if (resultStr1 !== inputStr) {
document.querySelector("#result1").value = resultStr1;
}
// 只考虑处理一层Github脚本的情况
replacement2 = '$1' + ghproxy + '$2' + ' | perl -pe "s#(http.*?git[^/]*?/)#' + ghproxy + '\\1#g"' + '$3';
resultStr2 = inputStr.replace(regex1, replacement2);
if (resultStr2 !== inputStr) {
document.querySelector("#result2").value = resultStr2;
}
// 处理 wget xxx.sh && bash xxx.sh 或 wget xxx.sh && chmod +x xxx.sh && ./xxx.sh
regex2 = /(wget.*?)(https?:\/\/.*)(&&[^&]*[ /])(.*?sh)/s;
//replacement3 = '1 : $1 ; 2 : $2 ; 3 : $3 ; 4 : $4 ;'
replacement3 = '$1' + ghproxy + '$2' + '&& perl -i -pe "s#(http.*?git[^/]*?/)#' + ghproxy + '\\1#g" ' + '$4 $3$4';
resultStr2 = inputStr.replace(regex2, replacement3);
if (resultStr2 !== inputStr) {
document.querySelector("#result2").value = resultStr2;
}
}
function copyResult1() {
resultStr = document.querySelector("#result1").value;
navigator.clipboard.writeText(resultStr);
}
function copyResult2() {
resultStr = document.querySelector("#result2").value;
navigator.clipboard.writeText(resultStr);
}
function getLocalUrl() {
document.querySelector("#ghproxy").value = window.location.href;
}
function convertRes() {
inputStr = document.querySelector("#githubRes").value;
if (inputStr == "") {
return;
}
ghproxy = document.querySelector("#ghproxy").value;
// 先给裸的git类链接前面加上 https://
inputStr = inputStr.replace(/ git/g, ' https://git');
resultStr = ghproxy + inputStr;
document.querySelector("#resAfterGhproxy").value = resultStr;
}
function fetchRes() {
window.open(document.querySelector("#resAfterGhproxy").value);
}
getLocalUrl()