mirror of
https://github.com/zimplexing/OrionTV.git
synced 2026-02-04 03:36:29 +08:00
- Add Logger utility with tagged output and environment-based control - Configure Babel to remove console calls in production builds - Replace all console.* calls across stores, services, and components with Logger - Enable development-only logging with formatted output and component tags - Optimize production builds by eliminating all logging code
81 lines
2.6 KiB
TypeScript
81 lines
2.6 KiB
TypeScript
import Logger from '@/utils/Logger';
|
|
|
|
const logger = Logger.withTag('M3U8');
|
|
|
|
interface CacheEntry {
|
|
resolution: string | null;
|
|
timestamp: number;
|
|
}
|
|
|
|
const resolutionCache: { [url: string]: CacheEntry } = {};
|
|
const CACHE_DURATION = 5 * 60 * 1000; // 5 minutes
|
|
|
|
export const getResolutionFromM3U8 = async (
|
|
url: string,
|
|
signal?: AbortSignal
|
|
): Promise<string | null> => {
|
|
const perfStart = performance.now();
|
|
logger.info(`[PERF] M3U8 resolution detection START - url: ${url.substring(0, 100)}...`);
|
|
|
|
// 1. Check cache first
|
|
const cachedEntry = resolutionCache[url];
|
|
if (cachedEntry && Date.now() - cachedEntry.timestamp < CACHE_DURATION) {
|
|
const perfEnd = performance.now();
|
|
logger.info(`[PERF] M3U8 resolution detection CACHED - took ${(perfEnd - perfStart).toFixed(2)}ms, resolution: ${cachedEntry.resolution}`);
|
|
return cachedEntry.resolution;
|
|
}
|
|
|
|
if (!url.toLowerCase().endsWith(".m3u8")) {
|
|
logger.info(`[PERF] M3U8 resolution detection SKIPPED - not M3U8 file`);
|
|
return null;
|
|
}
|
|
|
|
try {
|
|
const fetchStart = performance.now();
|
|
const response = await fetch(url, { signal });
|
|
const fetchEnd = performance.now();
|
|
logger.info(`[PERF] M3U8 fetch took ${(fetchEnd - fetchStart).toFixed(2)}ms, status: ${response.status}`);
|
|
|
|
if (!response.ok) {
|
|
return null;
|
|
}
|
|
|
|
const parseStart = performance.now();
|
|
const playlist = await response.text();
|
|
const lines = playlist.split("\n");
|
|
let highestResolution = 0;
|
|
let resolutionString: string | null = null;
|
|
|
|
for (const line of lines) {
|
|
if (line.startsWith("#EXT-X-STREAM-INF")) {
|
|
const resolutionMatch = line.match(/RESOLUTION=(\d+)x(\d+)/);
|
|
if (resolutionMatch) {
|
|
const height = parseInt(resolutionMatch[2], 10);
|
|
if (height > highestResolution) {
|
|
highestResolution = height;
|
|
resolutionString = `${height}p`;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
const parseEnd = performance.now();
|
|
logger.info(`[PERF] M3U8 parsing took ${(parseEnd - parseStart).toFixed(2)}ms, lines: ${lines.length}`);
|
|
|
|
// 2. Store result in cache
|
|
resolutionCache[url] = {
|
|
resolution: resolutionString,
|
|
timestamp: Date.now(),
|
|
};
|
|
|
|
const perfEnd = performance.now();
|
|
logger.info(`[PERF] M3U8 resolution detection COMPLETE - took ${(perfEnd - perfStart).toFixed(2)}ms, resolution: ${resolutionString}`);
|
|
|
|
return resolutionString;
|
|
} catch (error) {
|
|
const perfEnd = performance.now();
|
|
logger.info(`[PERF] M3U8 resolution detection ERROR - took ${(perfEnd - perfStart).toFixed(2)}ms, error: ${error}`);
|
|
return null;
|
|
}
|
|
};
|