forked from wpv-chan/cf-copilot-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcf_copilot_service.js
166 lines (142 loc) · 4.67 KB
/
cf_copilot_service.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
const GithubCopilotChat = GITHUB_COPILOT_CHAT; // 此处替换你绑定KV namespace的名称
addEventListener('fetch', event => {
event.respondWith(handleRequest(event.request))
})
async function handleRequest(request) {
const corsHeaders = {
'Access-Control-Allow-Origin': '*',
'Access-Control-Allow-Methods': '*',
'Access-Control-Allow-Headers': '*',
'Access-Control-Allow-Credentials': 'true',
}
if (request.method === 'OPTIONS') {
return new Response(null, {
status: 200,
headers: corsHeaders,
})
}
if (request.method !== 'POST') {
return new Response('Method Not Allowed', {
status: 405,
headers: corsHeaders,
})
}
try {
const authorizationHeader = request.headers.get('Authorization') || ''
const match = authorizationHeader.match(/^Bearer\s+(.*)$/)
if (!match) {
throw new Error('Missing or malformed Authorization header')
}
const githubToken = match[1]
const copilotToken = await getCopilotToken(githubToken)
const headers = await createHeaders(copilotToken);
const requestData = await request.json()
const openAIResponse = await fetch('https://api.githubcopilot.com/chat/completions', {
method: 'POST',
headers: {
...headers,
},
body: typeof requestData === 'object' ? JSON.stringify(requestData) : '{}',
})
if (requestData && requestData.stream !== true) {
const results = await openAIResponse.json();
return new Response(JSON.stringify(results), {
status: openAIResponse.status,
headers: {
...corsHeaders,
"Content-Type": "application/json",
}
});
} else {
const { readable, writable } = new TransformStream();
streamResponse(openAIResponse, writable);
return new Response(readable, {
headers: {
...corsHeaders,
'Content-Type': 'text/event-stream',
}
});
/*
return new Response(openAIResponse.body, {
headers: {
...corsHeaders,
'Content-Type': 'text/event-stream',
}
});
*/
}
} catch (error) {
return new Response(error.message, {
status: 500,
headers: corsHeaders,
});
}
}
async function streamResponse(openAIResponse, writable) {
const reader = openAIResponse.body.getReader();
const writer = writable.getWriter();
const encoder = new TextEncoder();
const decoder = new TextDecoder("utf-8");
function push() {
reader.read().then(({ done, value }) => {
if (done) {
writer.close();
return;
}
const chunk = decoder.decode(value, { stream: true }).replace(/{"content":null,"role":null}}/g, '{}');
writer.write(encoder.encode(chunk));
push();
}).catch(error => {
console.error(error);
writer.close();
});
}
push();
}
async function getCopilotToken(githubToken) {
const kvKey = "copilotToken:" + githubToken;
let tokenData = await GithubCopilotChat.get(kvKey, "json");
if (tokenData && tokenData.expires_at > Date.now()) {
return tokenData.token;
}
const getTokenUrl = 'https://api.github.com/copilot_internal/v2/token';
const response = await fetch(getTokenUrl, {
headers: {
'Authorization': `token ${githubToken}`,
'User-Agent': 'GitHubCopilotChat/0.8.0',
}
});
if (!response.ok) {
const errorResponse = await response.text();
console.error('Failed to get Copilot token from GitHub:', errorResponse);
throw new Error('Failed to get Copilot token from GitHub:');
}
const data = await response.json();
const expires_at = Date.now() + data.expires_in * 1000;
await GithubCopilotChat.put(kvKey, JSON.stringify({ token: data.token, expires_at }), {
expirationTtl: data.expires_in
});
return data.token;
}
async function createHeaders(copilotToken) {
function genHexStr(length) {
const arr = new Uint8Array(length / 2);
crypto.getRandomValues(arr);
return Array.from(arr, (byte) => byte.toString(16).padStart(2, '0')).join('');
}
return {
'Authorization': `Bearer ${copilotToken}`,
'X-Request-Id': `${genHexStr(8)}-${genHexStr(4)}-${genHexStr(4)}-${genHexStr(4)}-${genHexStr(12)}`,
'Vscode-Sessionid': `${genHexStr(8)}-${genHexStr(4)}-${genHexStr(4)}-${genHexStr(4)}-${genHexStr(25)}`,
'Vscode-Machineid': genHexStr(64),
'Editor-Version': 'vscode/1.85.1',
'Editor-Plugin-Version': 'copilot-chat/0.12.2023120701',
'Openai-Organization': 'github-copilot',
'Openai-Intent': 'conversation-panel',
'User-Agent': 'GitHubCopilotChat/0.8.0',
'Content-Type': 'application/json',
'Accept': '*/*',
'Accept-Encoding': 'gzip,deflate,br',
'Connection': 'close'
};
}