-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextension.js
253 lines (211 loc) · 7.17 KB
/
extension.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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
const vscode = require("vscode");
const cp = require("child_process");
const http = require("http");
const https = require("https");
/**
* @param {vscode.ExtensionContext} context
*/
function activate(context) {
console.log('Congratulations, your extension "commit2share" is now active!');
let twitterShareDisposable = vscode.commands.registerCommand(
"commit2tweet.tweetCommitDiff",
async function () {
vscode.window.showInformationMessage(
"Analysing your commit and preparing the tweet..."
);
try {
// Send diff to the configured endpoint
const shareText = await shareToTwitter();
// Encode the tweet text for URL
const encodedTweetURL = encodeURI(
`http://twitter.com/share?text=${shareText}`
);
// Open Twitter with the pre-filled tweet
vscode.env.openExternal(vscode.Uri.parse(encodedTweetURL));
vscode.window.showInformationMessage(
"Tweet prepared and ready to post!"
);
} catch (error) {
vscode.window.showErrorMessage(`Error: ${error.message}`);
}
}
);
let linkedinShareDisposable = vscode.commands.registerCommand(
"commit2tweet.linkedinCommitDiff",
async function () {
vscode.window.showInformationMessage(
"Analysing your commit and preparing the linkedin post..."
);
try {
// Send diff to the configured endpoint
const shareText = await shareToLinkedin();
// Encode the linkedin post for URL
const encodedLinkedinURL = encodeURI(
`https://www.linkedin.com/feed/?shareActive=true&text=${shareText}`
);
// Open LinkedIn with the pre-filled post
vscode.env.openExternal(vscode.Uri.parse(encodedLinkedinURL));
vscode.window.showInformationMessage(
"LinkedIn post prepared and ready to post!"
);
} catch (error) {
vscode.window.showErrorMessage(`Error: ${error.message}`);
}
}
);
context.subscriptions.push(twitterShareDisposable);
context.subscriptions.push(linkedinShareDisposable);
}
async function shareToTwitter() {
const workspaceFolders = vscode.workspace.workspaceFolders;
let gitPath = null;
if (Array.isArray(workspaceFolders) && workspaceFolders.length > 0) {
gitPath = workspaceFolders[0].uri.fsPath;
} else {
throw new Error("No workspace folder found");
}
// Get the diff of the last commit
const diff = await getLastCommitDiff(gitPath);
// Get the configured endpoint and API key
const config = vscode.workspace.getConfiguration("commit2tweet");
const endpoint = config.get("endpoint");
const apiKey = config.get("apiKey");
const model = config.get("model");
if (!endpoint) {
throw new Error("Endpoint not configured");
}
// Send diff to the configured endpoint
const shareText = await getShareText(diff, endpoint, apiKey, model);
return shareText;
}
async function shareToLinkedin() {
const workspaceFolders = vscode.workspace.workspaceFolders;
let gitPath = null;
if (Array.isArray(workspaceFolders) && workspaceFolders.length > 0) {
gitPath = workspaceFolders[0].uri.fsPath;
} else {
throw new Error("No workspace folder found");
}
// Get the diff of the last commit
const diff = await getLastCommitDiff(gitPath);
// Get the configured endpoint and API key
const config = vscode.workspace.getConfiguration("commit2tweet");
const endpoint = config.get("endpoint");
const apiKey = config.get("apiKey");
const model = config.get("model");
if (!endpoint) {
throw new Error("Endpoint not configured");
}
// Send diff to the configured endpoint
const shareText = await getShareText(
diff,
endpoint,
apiKey,
model,
"linkedin"
);
return shareText;
}
function getLastCommitDiff(gitPath) {
return new Promise((resolve, reject) => {
cp.exec(
"git diff HEAD^ HEAD",
{ cwd: gitPath },
(error, stdout, stderr) => {
if (error) {
reject(new Error(`Failed to get git diff: ${stderr}`));
} else {
resolve(stdout);
}
}
);
});
}
function getTweetPrompt(diff) {
return `You are a senior developer building side projects.
For showcasing your side projects to the world, you have decided to tweet what you are building every time you commit and push your code.
Summarise the following git diff and generate a banger tweet about it:\n\n${diff}.
RESPOND WITH THE TEXT FOR THE TWEET ONLY AND DO NOT USE ANY HASHTAGS.`;
}
function getLinkedinPrompt(diff) {
return `You are a senior developer building side projects.
For showcasing your side projects to the world, you have decided to share to LinkedIn what you are building every time you commit and push your code.
Summarise the following git diff and generate a banger LinkedIn post about it:\n\n${diff}.
RESPOND WITH THE TEXT FOR THE LINKEDIN POST ONLY AND DO NOT USE ANY HASHTAGS.`;
}
function getShareText(diff, endpoint, apiKey, model, shareTo = "twitter") {
return new Promise((resolve, reject) => {
const url = new URL(endpoint);
const options = {
hostname: url.hostname,
port: url.port || null,
path: url.pathname,
method: "POST",
headers: {
"Content-Type": "application/json",
},
};
if (apiKey) {
options.headers["Authorization"] = `Bearer ${apiKey}`;
}
const protocol = url.protocol === "https:" ? https : http;
const req = protocol.request(options, (res) => {
let data = "";
res.on("data", (chunk) => {
data += chunk;
});
res.on("end", () => {
if (res.statusCode >= 200 && res.statusCode < 300) {
try {
const _data = data.data != null ? data.data : data;
const jsonResponse = JSON.parse(_data);
let content = "";
if (jsonResponse.choices && jsonResponse.choices[0]) {
if (
jsonResponse.choices[0].message &&
jsonResponse.choices[0].message.content
) {
content = jsonResponse.choices[0].message.content;
} else if (jsonResponse.choices[0].text) {
content = jsonResponse.choices[0].text;
}
} else if (jsonResponse.message && jsonResponse.message.content) {
content = jsonResponse.message.content;
}
resolve(content.trim());
} catch (error) {
reject(new Error(`Failed to parse response: ${error.message}`));
}
} else {
reject(new Error(`HTTP error! status: ${res.statusCode}`));
}
});
});
req.on("error", (error) => {
reject(error);
});
req.on("error", (error) => {
reject(new Error(`Failed to get tweet text: ${error.message}`));
});
const promptText =
shareTo == "twitter" ? getTweetPrompt(diff) : getLinkedinPrompt(diff);
const requestBody = JSON.stringify({
model: model,
messages: [
{
role: "user",
content: promptText,
},
],
stream: false,
stop: null,
});
req.write(requestBody);
req.end();
});
}
function deactivate() {}
module.exports = {
activate,
deactivate,
};