Auto-deploy: 2026-06-02 18:09:34

This commit is contained in:
Hamza-Ayed
2026-06-02 18:09:34 +03:00
parent 7bbeda0af6
commit a0c956de21

View File

@@ -44,6 +44,7 @@ function initRecognition(language) {
// Prevent infinite restart loop on fatal errors
if (event.error !== 'no-speech') {
isRecording = false;
if (typeof stopMediaTracks === 'function') stopMediaTracks();
}
chrome.runtime.sendMessage({
@@ -68,29 +69,54 @@ function initRecognition(language) {
return recognition;
}
let localStream = null;
function stopMediaTracks() {
if (localStream) {
localStream.getTracks().forEach(track => track.stop());
localStream = null;
}
}
// Listen for messages from background script
chrome.runtime.onMessage.addListener((message, sender, sendResponse) => {
if (message.type === 'START_RECORDING') {
try {
const lang = message.payload?.language || 'ar-SA';
// Re-init if language changed or not init yet
if (!recognition || recognition.lang !== lang) {
recognition = initRecognition(lang);
}
const lang = message.payload?.language || 'ar-SA';
// 1. Get an audio stream first. This is REQUIRED in offscreen documents
// to actually activate the microphone and ensure permissions are active.
navigator.mediaDevices.getUserMedia({ audio: true })
.then((stream) => {
localStream = stream;
try {
if (!recognition || recognition.lang !== lang) {
recognition = initRecognition(lang);
}
if (!isRecording) {
recognition.start();
isRecording = true;
sendResponse({ success: true });
} else {
sendResponse({ success: true, warning: 'Already recording' });
}
} catch (e) {
console.error('[Offscreen] Failed to start:', e);
sendResponse({ success: false, error: e.message });
}
return true;
if (!isRecording) {
recognition.start();
isRecording = true;
sendResponse({ success: true });
} else {
sendResponse({ success: true, warning: 'Already recording' });
}
} catch (e) {
console.error('[Offscreen] Failed to start:', e);
sendResponse({ success: false, error: e.message });
}
})
.catch((err) => {
console.error('[Offscreen] getUserMedia failed:', err);
// The user hasn't granted permission yet, or hardware error
sendResponse({ success: false, error: 'not-allowed' });
chrome.runtime.sendMessage({
type: 'OFFSCREEN_RECORDING_ERROR',
payload: { error: 'not-allowed' }
});
});
return true; // Keep channel open for async sendResponse
}
if (message.type === 'STOP_RECORDING') {
@@ -102,6 +128,7 @@ chrome.runtime.onMessage.addListener((message, sender, sendResponse) => {
console.warn('[Offscreen] Stop failed:', e);
}
}
stopMediaTracks();
sendResponse({ success: true });
return true;
}