Files
Strix/webui/web/js/api/stream-discovery.js
T
eduard256 3d5a4927a6 Add unified port configuration system
- Unified API and WebUI on single configurable port (default: 4567)
- Added strix.yaml configuration file support (go2rtc-style format)
- Environment variable STRIX_API_LISTEN overrides config file
- Port validation and source logging
- Relative URLs in frontend for automatic port detection
- Removed separate server instances
- Cleaned up temporary files and updated .gitignore
- Updated documentation with configuration examples
2025-11-12 10:20:55 +03:00

101 lines
3.0 KiB
JavaScript

export class StreamDiscoveryAPI {
constructor(baseURL = null) {
// Use relative URLs since API and UI are on the same port
if (!baseURL) {
this.baseURL = '';
} else {
this.baseURL = baseURL;
}
this.eventSource = null;
}
discover(request, callbacks) {
this.close();
const url = new URL(`${this.baseURL}/api/v1/streams/discover`);
fetch(url, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Accept': 'text/event-stream',
},
body: JSON.stringify(request),
}).then(response => {
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
const reader = response.body.getReader();
const decoder = new TextDecoder();
const processStream = ({ done, value }) => {
if (done) {
return;
}
const chunk = decoder.decode(value, { stream: true });
const lines = chunk.split('\n');
for (const line of lines) {
if (line.startsWith('event:')) {
const eventType = line.substring(6).trim();
continue;
}
if (line.startsWith('data:')) {
const data = line.substring(5).trim();
try {
const parsed = JSON.parse(data);
this.handleEvent(parsed, callbacks);
} catch (e) {
console.error('Failed to parse SSE data:', e);
}
}
}
return reader.read().then(processStream);
};
return reader.read().then(processStream);
}).catch(error => {
if (callbacks.onError) {
callbacks.onError(error.message);
}
});
}
handleEvent(data, callbacks) {
// Determine event type from data
if (data.tested !== undefined && data.found !== undefined) {
// Progress event
if (callbacks.onProgress) {
callbacks.onProgress(data);
}
} else if (data.stream) {
// Stream found event
if (callbacks.onStreamFound) {
callbacks.onStreamFound(data);
}
} else if (data.total_tested !== undefined) {
// Complete event
if (callbacks.onComplete) {
callbacks.onComplete(data);
}
} else if (data.error) {
// Error event
if (callbacks.onError) {
callbacks.onError(data.error);
}
}
}
close() {
if (this.eventSource) {
this.eventSource.close();
this.eventSource = null;
}
}
}