-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathelectron-safe-index.js
More file actions
399 lines (352 loc) · 9.89 KB
/
electron-safe-index.js
File metadata and controls
399 lines (352 loc) · 9.89 KB
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
const { EventEmitter } = require("events");
const path = require("path");
const fs = require("fs");
// Electron-safe native module loading
let electronSafeNativeBinding;
function loadElectronSafeModule() {
try {
// Try to load electron-safe build first
electronSafeNativeBinding = require("./build/Release/mac_recorder_electron.node");
console.log("✅ Loaded Electron-safe native module (Release)");
return true;
} catch (error) {
try {
electronSafeNativeBinding = require("./build/Debug/mac_recorder_electron.node");
console.log("✅ Loaded Electron-safe native module (Debug)");
return true;
} catch (debugError) {
console.error(
"❌ Electron-safe native module not found. Run: npm run build:electron-safe"
);
console.error("Original error:", error.message);
console.error("Debug error:", debugError.message);
return false;
}
}
}
class ElectronSafeMacRecorder extends EventEmitter {
constructor() {
super();
// Load the module safely
if (!loadElectronSafeModule()) {
throw new Error("Failed to load Electron-safe native module");
}
this.isRecording = false;
this.outputPath = null;
this.recordingTimer = null;
this.recordingStartTime = null;
this.options = {
includeMicrophone: false,
includeSystemAudio: false,
quality: "high",
frameRate: 60,
captureArea: null,
captureCursor: false,
showClicks: false,
displayId: null,
windowId: null,
};
console.log("🔌 ElectronSafeMacRecorder initialized");
}
/**
* Set recording options safely
*/
setOptions(options = {}) {
this.options = {
...this.options,
...options,
};
// Ensure boolean values
this.options.includeMicrophone = options.includeMicrophone === true;
this.options.includeSystemAudio = options.includeSystemAudio === true;
this.options.captureCursor = options.captureCursor === true;
console.log("⚙️ Options updated:", this.options);
}
/**
* Start recording with Electron-safe implementation
*/
async startRecording(outputPath, options = {}) {
if (this.isRecording) {
throw new Error("Recording is already in progress");
}
if (!outputPath) {
throw new Error("Output path is required");
}
// Update options
this.setOptions(options);
// Ensure output directory exists
const outputDir = path.dirname(outputPath);
if (!fs.existsSync(outputDir)) {
fs.mkdirSync(outputDir, { recursive: true });
}
this.outputPath = outputPath;
return new Promise((resolve, reject) => {
try {
console.log("🎬 Starting Electron-safe recording...");
console.log("📁 Output path:", outputPath);
console.log("⚙️ Options:", this.options);
// Call native function with timeout protection
const startTimeout = setTimeout(() => {
this.isRecording = false;
reject(new Error("Recording start timeout - Electron protection"));
}, 10000); // 10 second timeout
const success = electronSafeNativeBinding.startRecording(
outputPath,
this.options
);
clearTimeout(startTimeout);
if (success) {
this.isRecording = true;
this.recordingStartTime = Date.now();
// Start progress timer
this.recordingTimer = setInterval(() => {
const elapsed = Math.floor(
(Date.now() - this.recordingStartTime) / 1000
);
this.emit("timeUpdate", elapsed);
}, 1000);
// Emit started event
setTimeout(() => {
this.emit("recordingStarted", {
outputPath: this.outputPath,
timestamp: this.recordingStartTime,
options: this.options,
electronSafe: true,
});
}, 100);
this.emit("started", this.outputPath);
console.log("✅ Electron-safe recording started successfully");
resolve(this.outputPath);
} else {
console.error("❌ Failed to start Electron-safe recording");
reject(new Error("Failed to start recording - check permissions"));
}
} catch (error) {
console.error("❌ Exception during recording start:", error);
this.isRecording = false;
if (this.recordingTimer) {
clearInterval(this.recordingTimer);
this.recordingTimer = null;
}
reject(error);
}
});
}
/**
* Stop recording with Electron-safe implementation
*/
async stopRecording() {
if (!this.isRecording) {
throw new Error("No recording in progress");
}
return new Promise((resolve, reject) => {
try {
console.log("🛑 Stopping Electron-safe recording...");
// Call native function with timeout protection
const stopTimeout = setTimeout(() => {
this.isRecording = false;
if (this.recordingTimer) {
clearInterval(this.recordingTimer);
this.recordingTimer = null;
}
reject(new Error("Recording stop timeout - forced cleanup"));
}, 10000); // 10 second timeout
const success = electronSafeNativeBinding.stopRecording();
clearTimeout(stopTimeout);
// Always cleanup
this.isRecording = false;
if (this.recordingTimer) {
clearInterval(this.recordingTimer);
this.recordingTimer = null;
}
const result = {
code: success ? 0 : 1,
outputPath: this.outputPath,
electronSafe: true,
};
this.emit("stopped", result);
if (success) {
// Check if file exists
setTimeout(() => {
if (fs.existsSync(this.outputPath)) {
this.emit("completed", this.outputPath);
console.log("✅ Recording completed successfully");
} else {
console.warn("⚠️ Recording completed but file not found");
}
}, 1000);
}
resolve(result);
} catch (error) {
console.error("❌ Exception during recording stop:", error);
// Force cleanup
this.isRecording = false;
if (this.recordingTimer) {
clearInterval(this.recordingTimer);
this.recordingTimer = null;
}
reject(error);
}
});
}
/**
* Get recording status with Electron-safe implementation
*/
getStatus() {
try {
const nativeStatus = electronSafeNativeBinding.getRecordingStatus();
return {
isRecording: this.isRecording && nativeStatus.isRecording,
outputPath: this.outputPath,
options: this.options,
recordingTime: this.recordingStartTime
? Math.floor((Date.now() - this.recordingStartTime) / 1000)
: 0,
electronSafe: true,
nativeStatus: nativeStatus,
};
} catch (error) {
console.error("❌ Exception getting status:", error);
return {
isRecording: this.isRecording,
outputPath: this.outputPath,
options: this.options,
recordingTime: this.recordingStartTime
? Math.floor((Date.now() - this.recordingStartTime) / 1000)
: 0,
electronSafe: true,
error: error.message,
};
}
}
/**
* Get available displays with Electron-safe implementation
*/
async getDisplays() {
try {
const displays = electronSafeNativeBinding.getDisplays();
console.log(`📺 Found ${displays.length} displays`);
return displays;
} catch (error) {
console.error("❌ Exception getting displays:", error);
return [];
}
}
/**
* Get available windows with Electron-safe implementation
*/
async getWindows() {
try {
const windows = electronSafeNativeBinding.getWindows();
console.log(`🪟 Found ${windows.length} windows`);
return windows;
} catch (error) {
console.error("❌ Exception getting windows:", error);
return [];
}
}
/**
* Check permissions with Electron-safe implementation
*/
async checkPermissions() {
try {
const hasPermission = electronSafeNativeBinding.checkPermissions();
return {
screenRecording: hasPermission,
accessibility: hasPermission,
microphone: hasPermission,
electronSafe: true,
};
} catch (error) {
console.error("❌ Exception checking permissions:", error);
return {
screenRecording: false,
accessibility: false,
microphone: false,
electronSafe: true,
error: error.message,
};
}
}
/**
* Get cursor position with Electron-safe implementation
*/
getCursorPosition() {
try {
return electronSafeNativeBinding.getCursorPosition();
} catch (error) {
console.error("❌ Exception getting cursor position:", error);
throw new Error("Failed to get cursor position: " + error.message);
}
}
/**
* Get window thumbnail with Electron-safe implementation
*/
async getWindowThumbnail(windowId, options = {}) {
try {
const { maxWidth = 300, maxHeight = 200 } = options;
const base64Image = electronSafeNativeBinding.getWindowThumbnail(
windowId,
maxWidth,
maxHeight
);
if (base64Image) {
return `data:image/png;base64,${base64Image}`;
} else {
throw new Error("Failed to capture window thumbnail");
}
} catch (error) {
console.error("❌ Exception getting window thumbnail:", error);
throw error;
}
}
/**
* Get display thumbnail with Electron-safe implementation
*/
async getDisplayThumbnail(displayId, options = {}) {
try {
const { maxWidth = 300, maxHeight = 200 } = options;
const base64Image = electronSafeNativeBinding.getDisplayThumbnail(
displayId,
maxWidth,
maxHeight
);
if (base64Image) {
return `data:image/png;base64,${base64Image}`;
} else {
throw new Error("Failed to capture display thumbnail");
}
} catch (error) {
console.error("❌ Exception getting display thumbnail:", error);
throw error;
}
}
/**
* Get audio devices with Electron-safe implementation
*/
async getAudioDevices() {
try {
const devices = electronSafeNativeBinding.getAudioDevices();
console.log(`🔊 Found ${devices.length} audio devices`);
return devices;
} catch (error) {
console.error("❌ Exception getting audio devices:", error);
return [];
}
}
/**
* Get module information
*/
getModuleInfo() {
return {
version: require("./package.json").version,
platform: process.platform,
arch: process.arch,
nodeVersion: process.version,
nativeModule: "mac_recorder_electron.node",
electronSafe: true,
buildTime: new Date().toISOString(),
};
}
}
module.exports = ElectronSafeMacRecorder;