-
Notifications
You must be signed in to change notification settings - Fork 37
/
worker.js
169 lines (151 loc) · 5.13 KB
/
worker.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
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
const Config = {
repository: 'celetor/epg',
branch: '112114'
}
const init = {
status: 200,
headers: {
'content-type': 'application/json'
},
};
async function jq_fetch(request) {
let times = 5;
let real_url = '';
let isRedirect = false;
let response = await fetch(request);
while (times > 0) {
console.log('status', response.status);
if (response.status === 301 || response.status === 302) {
isRedirect = true;
real_url = response.headers.get('location');
} else if (response.redirected === true) {
isRedirect = true;
real_url = response.url;
} else {
break;
}
if (isRedirect) {
console.log('real_url', real_url);
let init = {
'headers': {}
};
for (var p of response.headers) {
if (p[0].toLowerCase() !== 'location') {
if (p[0].toLowerCase() === 'set-cookie') {
init.headers['cookie'] = p[1];
} else {
init.headers[p[0]] = p[1];
}
}
}
response = await fetch(new Request(real_url, init));
console.log('response', response);
times -= 1;
}
}
return response;
}
function makeRes(body, status = 200, headers = {}) {
headers['access-control-allow-origin'] = '*';
return new Response(body, {status, headers});
}
function getNowDate() {
const utc_timestamp = (new Date()).getTime();
const china_time = new Date(utc_timestamp + 8 * 60 * 60 * 1000);
const month = china_time.getMonth() + 1;
const day = china_time.getDate();
return `${china_time.getFullYear()}-${month < 10 ? '0' + month : month}-${day < 10 ? '0' + day : day}`;
}
function getFormatTime(time) {
// 20231129002400 +0800
let result = {
date: '',
time: ''
};
if (time.length < 8) {
result['date'] = getNowDate();
return result;
}
let year = time.substring(0, 4);
let month = time.substring(4, 6);
let day = time.substring(6, 8);
result['date'] = year + '-' + month + '-' + day;
if (time.length >= 12) {
let hour = time.substring(8, 10);
let minute = time.substring(10, 12);
result['time'] = hour + ':' + minute;
}
return result;
}
async function diypHandle(channel, date, request) {
const tag = date.replaceAll('-', '.');
// https://github.com/celetor/epg/releases/download/2024.02.14/112114.json
const res = await jq_fetch(new Request(`https://github.com/${Config.repository}/releases/download/${tag}/${Config.branch}.json`, request));
const response = await res.json();
console.log(channel, date);
const program_info = {
"date": date,
"channel_name": channel,
"url": `https://github.com/${Config.repository}`,
"epg_data": []
}
response.forEach(function (element) {
if (element['@channel'] === channel && element['@start'].startsWith(date.replaceAll('-', ''))) {
program_info['epg_data'].push({
"start": getFormatTime(element['@start'])['time'],
"end": getFormatTime(element['@stop'])['time'],
"title": element['title']['#text'],
"desc": (element['desc'] && element['desc']['#text']) ? element['desc']['#text'] : ''
});
}
});
console.log(program_info);
if (program_info['epg_data'].length === 0) {
program_info['epg_data'].push({
"start": "00:00",
"end": "23:59",
"title": "未知节目",
"desc": ""
});
}
return new Response(JSON.stringify(program_info), init);
}
async function fetchHandler(event) {
let request = event.request;
let uri = new URL(request.url);
let channel = uri.searchParams.get("ch");
if (!channel || channel.length === 0) {
const xml_res = await jq_fetch(new Request(
`https://github.com/${Config.repository}/releases/latest/download/${Config.branch}.xml`, request
));
const xml_blob = await xml_res.blob();
init['headers']['content-type'] = 'text/xml';
return new Response(xml_blob, init);
}
let date = uri.searchParams.get("date");
if (date) {
date = getFormatTime(date.replace(/\D+/g, ''))['date'];
} else {
date = getNowDate();
}
channel = channel.replaceAll('-', '').toUpperCase();
if (parseInt(date.replaceAll('-', '')) >= 20240214) {
return diypHandle(channel, date, request);
} else {
return new Response(JSON.stringify({
"date": date,
"channel_name": channel,
"url": `https://github.com/${Config.repository}`,
"epg_data": [{
"start": "00:00",
"end": "23:59",
"title": "未知节目",
"desc": ""
}]
}), init);
}
}
addEventListener('fetch', event => {
const ret = fetchHandler(event).catch(err => makeRes('cfworker error:\n' + err.stack, 502));
event.respondWith(ret)
})