forked from kobe-koto/Icon-Proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworker.cjs
140 lines (122 loc) · 4.2 KB
/
worker.cjs
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
const AccessControl = {
enabled: false,
// `Block` or `Allow`.
method: "Block",
// More key can be found in http header.
follow: "Referer",
// note: it will not correct your spell mistakes automaticlly
FuzzyMatching: true,
// ...i dont know how to explain this
List: []
}
const AvailableProvider = [
"github"
// ,
// "gravatar"
];
addEventListener("fetch", event => {
event.respondWith(main(event.request));
})
async function main(request) {
const CurrentURL = new URL(request.url),
RequestHeaders = new Headers(request.headers);
if (AccessControl.enabled === true) {
const FollowValue = RequestHeaders.get(AccessControl.follow);
let isBlockRequest;
if (AccessControl.FuzzyMatching === true) {
for (let i=0; i<AccessControl.List.length; i++) {
let status = AccessControl.List[i].includes(FollowValue);
if (status) {
isBlockRequest = true;
}
}
isBlockRequest = false;
} else {
isBlockRequest = AccessControl.List.includes(FollowValue);
}
if (isBlockRequest) {
return new Response("403 Forbidden, This request has been blocked due the owner's config.", {
status: 400,
headers: DefaultHeader.Response
});
}
}
if (CurrentURL.pathname.startsWith("/icon/")) {
const ServiceProvider = CurrentURL.pathname.split("/icon/")[1],
ID = GetQueryString("id", CurrentURL.search);
if (!ServiceProvider) {
return new Response("400 Bad Request, Please specify the service provider.", {
status: 400,
headers: DefaultHeader.Response
});
}
if (!ID) {
return new Response("400 Bad Request, Please specify a user.", {
status: 400,
headers: DefaultHeader.Response
});
}
if (!AvailableProvider.includes(ServiceProvider)) {
return new Response("404 Not Found, Unsupported service provider", {
status: 400,
headers: DefaultHeader.Response
});
}
return await HandleIconProxy(ServiceProvider, ID, CurrentURL.host);
}
if (CurrentURL.pathname.startsWith("/favicon.ico")) {
return new Response("204 No Content", {
status: 204,
headers: DefaultHeader.Response
});
}
return new Response("200 OK, Here is a kobe-koto/Icon-Proxy service, Ping Pong!", {
status: 200,
headers: DefaultHeader.Response
});
}
async function HandleIconProxy (ServiceProvider, ID, OriginHost) {
let TargetURL;
if (ServiceProvider === "github") {
let Data = await fetch(`https://api.github.com/users/${ID}`, {
headers: DefaultHeader.Request
});
if (Data.status === 304 || Data.status === 200) {
Data = await Data.json();
TargetURL = Data.avatar_url;
} else if (Data.status === 404) {
return new Response("404 Not Found, The icon for the ID is not found.", {
status: 404,
headers: DefaultHeader.Response
})
}
} else if (ServiceProvider === "gravatar") {}
const OriginalResponse = await fetch(TargetURL, {
headers: DefaultHeader.Request
})
return new Response(OriginalResponse.body, {
status: OriginalResponse.status,
headers: {
"Content-Type": new Headers(OriginalResponse.headers).get("Content-Type"),
"Access-Control-Allow-Origin": OriginHost,
"Access-Control-Allow-Credentials": "true",
"Cache-Control": "public, max-age=2592000",
"X-Robots-Tag": "noindex"
}
});
}
function GetQueryString (name, query) {
const reg = new RegExp(`(^|&)${name}=([^&]*)(&|$)`, "i");
let r = query.slice(1).match(reg);
return !!r ? r[2] : null;
}
const DefaultHeader = {
Response: {
"Content-Type": "text/plain",
"Access-Control-Allow-Origin": "*",
"X-Robots-Tag": "noindex"
},
Request: {
"User-Agent": "curl/8.2.1"
}
}