-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent.js
426 lines (367 loc) · 11.1 KB
/
content.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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
(function () {
console.log("LeetWithGit: Content script loaded");
function debugLog(message) {
console.log(`LeetWithGit: ${message}`);
try {
chrome.runtime.sendMessage({
type: "debug",
message: message,
});
} catch (e) {
console.error("Error sending debug message:", e);
}
}
function cleanupDescription(rawDescription) {
// Split the description into lines
const lines = rawDescription.split(/\n+/);
// Clean and structure the description
const cleanedLines = lines
.map((line) => {
// Remove excessive bolding and clean up
line = line.replace(/\*\*/g, "").trim();
// Handle specific LeetCode description patterns
if (line.match(/^Example \d:/i)) {
return `\n**${line}**`;
}
// Handle constraints section
if (line.match(/^Constraints:/i)) {
return `\n**Constraints:**`;
}
return line;
})
.filter((line) => line.length > 0);
// Process and clean up the description
const processedLines = [];
let inExplanation = false;
for (let i = 0; i < cleanedLines.length; i++) {
const line = cleanedLines[i];
// Skip duplicate or redundant lines
if (line.match(/^(Given a|0-indexed)$/i)) continue;
// Handle examples with proper formatting
if (line.match(/^Example \d:/i)) {
processedLines.push(`\n${line}`);
inExplanation = false;
continue;
}
// Handle explanation with line breaks
if (line.startsWith("Explanation:")) {
processedLines.push(`\n${line}`);
inExplanation = true;
continue;
}
// Add explanation lines with proper formatting
if (inExplanation && line) {
processedLines.push(line);
} else if (!inExplanation) {
processedLines.push(line);
}
}
// Combine and clean up final description
let finalDescription = processedLines
.join("\n")
.replace(/\n{3,}/g, "\n\n")
.trim();
return finalDescription;
}
function extractTextContent(element) {
let text = "";
// Special handling for <pre> tags to preserve formatting
if (element.tagName === "PRE") {
return element.textContent + "\n\n";
}
if (element.nodeType === Node.TEXT_NODE) {
// Preserve original line breaks in text nodes
text += element.textContent;
} else if (element.nodeType === Node.ELEMENT_NODE) {
// Add line breaks for specific block-level elements
const breakElements = [
"p",
"div",
"br",
"li",
"h1",
"h2",
"h3",
"h4",
"h5",
"h6",
"pre",
];
// Special handling for <strong> tags to add context
if (element.tagName === "STRONG") {
text += `\n**${element.textContent.trim()}**\n`;
}
// Recursive processing of child nodes
for (let i = 0; i < element.childNodes.length; i++) {
text += extractTextContent(element.childNodes[i]);
// Add line break after certain elements to preserve structure
if (element.childNodes[i].nodeType === Node.ELEMENT_NODE) {
const lineBreakTags = ["p", "div", "br"];
if (
lineBreakTags.includes(element.childNodes[i].tagName.toLowerCase())
) {
text += "\n";
}
}
}
// Add line break for block elements
if (breakElements.includes(element.tagName.toLowerCase())) {
text += "\n";
}
}
return text;
}
function extractProblemDescription() {
const descriptionDivs = [
document.querySelector(".elfjs"), // Original selector
document.querySelector(".elfjS"), // Newer layout selector
];
for (let descriptionDiv of descriptionDivs) {
if (descriptionDiv) {
// Use the enhanced extractTextContent method
const rawDescription = extractTextContent(descriptionDiv);
// Clean up the description
return cleanupDescription(rawDescription);
}
}
return "Description not found";
}
function extractProblemDetails() {
// Multiple strategies to extract problem title and difficulty
const extractionStrategies = [
// Strategy 1: Direct selector method
() => {
const titleElement = document.querySelector(
'div[data-cy="question-title"]'
);
const difficultyElement = document.querySelector(
"div[data-difficulty]"
);
const descriptionC = extractProblemDescription();
if (titleElement && difficultyElement) {
return {
title: titleElement.textContent.trim(),
difficulty: difficultyElement.textContent.trim(),
description: descriptionC,
};
}
return null;
},
// Strategy 2: Problem page with newer LeetCode layout
() => {
const titleElement = document.querySelector(".text-title-large");
const difficultyElement = document.querySelector(
".text-difficulty-easy, .text-difficulty-medium, .text-difficulty-hard"
);
let difficultyS;
if (difficultyElement) {
const classList = difficultyElement.classList;
for (let i = 0; i < classList.length; i++) {
const className = classList[i];
if (className === "text-difficulty-easy") {
difficultyS = "Easy";
break;
} else if (className === "text-difficulty-medium") {
difficultyS = "Medium";
break;
} else if (className === "text-difficulty-hard") {
difficultyS = "Hard";
break;
}
}
if (!difficultyS) {
difficultyS = "unknown"; // Handle cases where no matching difficulty class is found
}
}
const description = extractProblemDescription();
if (titleElement && difficultyElement) {
return {
title: titleElement.textContent,
difficulty: difficultyS,
description: description,
};
}
return null;
},
];
// Try each strategy
for (let strategy of extractionStrategies) {
const result = strategy();
if (result) return result;
}
return {
title: "Unknown Problem",
difficulty: "Unknown Difficulty",
description: "Unknown Description",
};
}
function extractCode() {
const extractionMethods = [
// Monaco Editor (preferred for modern LeetCode)
() => {
const monacoEditor = document.querySelector(".monaco-editor");
if (monacoEditor) {
const lines = monacoEditor.querySelectorAll(".view-line");
return Array.from(lines)
.map((line) => line.textContent)
.join("\n");
}
return null;
},
// CodeMirror (older LeetCode layout)
() => {
const codeMirror = document.querySelector(".CodeMirror");
return codeMirror?.CodeMirror?.getValue();
},
// Textarea fallback
() => {
return document.querySelector("textarea")?.value;
},
];
for (let method of extractionMethods) {
const code = method();
if (code) return code;
}
return null;
}
function findLanguageButton() {
const buttons = document.querySelectorAll(
".rounded.items-center.whitespace-nowrap"
);
const languageMap = {
"c++": "cpp",
java: "java",
python: "py",
python3: "py",
c: "c",
"c#": "csharp",
javascript: "js",
typescript: "ts",
php: "php",
swift: "swift",
kotlin: "kotlin",
dart: "dart",
go: "go",
ruby: "ruby",
scala: "scala",
rust: "rust",
racket: "racket",
erlang: "erlang",
elixir: "elixir",
};
for (const button of buttons) {
const languageText = button.textContent.trim().toLowerCase();
if (languageMap.hasOwnProperty(languageText)) {
return button;
}
}
return null;
}
// Detect programming language based on code content
function detectLanguage() {
// Check for language selector or active language tab
const languageButton = findLanguageButton();
if (!languageButton) return "txt";
const languageText = languageButton.textContent.trim().toLowerCase();
const languageMap = {
"c++": "cpp",
java: "java",
python: "py",
python3: "py",
c: "c",
"c#": "csharp",
javascript: "js",
typescript: "ts",
php: "php",
swift: "swift",
kotlin: "kotlin",
dart: "dart",
go: "go",
ruby: "ruby",
scala: "scala",
rust: "rust",
racket: "racket",
erlang: "erlang",
elixir: "elixir",
};
return languageMap[languageText] || "txt";
}
async function captureSubmission() {
try {
debugLog("Attempting to capture submission");
// Comprehensive success detection
const successSelectors = [
'div[data-cy="submission-result-status"]',
'[data-e2e-locator="submission-result"]',
".success-message",
".submission-success",
];
const successElement = successSelectors.reduce(
(found, selector) => found || document.querySelector(selector),
null
);
// Check for 'Accepted' in multiple ways
const isAccepted =
successElement &&
(successElement.textContent.includes("Accepted") ||
successElement.innerHTML.includes("Accepted"));
if (!isAccepted) {
debugLog("No successful submission found");
return;
}
debugLog("Successful submission detected!");
// Extract problem details
const { title, difficulty, description } = extractProblemDetails();
const code = extractCode();
if (!code) {
debugLog("No code found to submit");
return;
}
debugLog(
`Problem: ${title}, Difficulty: ${difficulty}, Description:${description}`
);
debugLog(`Code length: ${code.length} characters`);
// Send to background script for GitHub push
chrome.runtime.sendMessage({
type: "push_to_github",
payload: {
problemTitle: title,
difficulty: difficulty,
description: description,
code: code,
language: detectLanguage(),
},
});
} catch (error) {
debugLog(`Capture submission error: ${error.message}`);
console.error(error);
}
}
// Mutation observer for detecting submissions
function setupSubmissionObserver() {
debugLog("Setting up submission observer");
const observer = new MutationObserver((mutations) => {
for (let mutation of mutations) {
if (mutation.addedNodes.length > 0) {
captureSubmission();
break;
}
}
});
observer.observe(document.body, {
childList: true,
subtree: true,
});
}
// Initial setup
function init() {
debugLog("Initializing LeetWithGit");
setupSubmissionObserver();
}
// Run initialization
if (document.readyState === "complete") {
init();
} else {
window.addEventListener("load", init);
}
})();