Spaces:
Build error
Build error
File size: 8,715 Bytes
0bfe2e3 |
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 |
import {
Addon,
AddonCatalog,
AddonCatalogResponse,
AddonCatalogResponseSchema,
AddonCatalogSchema,
CatalogResponse,
CatalogResponseSchema,
Manifest,
ManifestSchema,
Meta,
MetaPreview,
MetaPreviewSchema,
MetaResponse,
MetaResponseSchema,
MetaSchema,
ParsedStream,
Resource,
Stream,
StreamResponse,
StreamResponseSchema,
StreamSchema,
Subtitle,
SubtitleResponse,
SubtitleResponseSchema,
SubtitleSchema,
} from './db/schemas';
import {
Cache,
makeRequest,
createLogger,
constants,
maskSensitiveInfo,
makeUrlLogSafe,
formatZodError,
PossibleRecursiveRequestError,
Env,
} from './utils';
import { PresetManager } from './presets';
import { StreamParser } from './parser';
import { z } from 'zod';
const logger = createLogger('wrappers');
// const cache = Cache.getInstance<string, any>('wrappers');
const manifestCache = Cache.getInstance<string, Manifest>('manifest');
const resourceCache = Cache.getInstance<string, any>('resources');
const RESOURCE_TTL = 5 * 60;
type ResourceParams = {
type: string;
id: string;
extras?: string;
};
export class Wrapper {
private readonly baseUrl: string;
private readonly addon: Addon;
private readonly manifestUrl: string;
constructor(addon: Addon) {
this.addon = addon;
this.manifestUrl = this.addon.manifestUrl.replace('stremio://', 'https://');
this.baseUrl = this.manifestUrl.split('/').slice(0, -1).join('/');
}
/**
* Validates an array of items against a schema, filtering out invalid ones
* @param data The data to validate
* @param schema The Zod schema to validate against
* @param resourceName Name of the resource for error messages
* @returns Array of validated items
* @throws Error if all items are invalid
*/
private validateArray<T>(
data: unknown,
schema: z.ZodSchema<T>,
resourceName: string
): T[] {
if (!Array.isArray(data)) {
throw new Error(`${resourceName} is not an array`);
}
if (data.length === 0) {
// empty array is valid
return [];
}
const validItems = data
.map((item) => {
const parsed = schema.safeParse(item);
if (!parsed.success) {
logger.error(
`An item in the response for ${resourceName} was invalid, filtering it out: ${formatZodError(parsed.error)}`
);
return null;
}
return parsed.data;
})
.filter((item): item is T => item !== null);
if (validItems.length === 0) {
throw new Error(`No valid ${resourceName} found`);
}
return validItems;
}
async getManifest(): Promise<Manifest> {
return await manifestCache.wrap(
async () => {
logger.debug(
`Fetching manifest for ${this.addon.name} ${this.addon.displayIdentifier || this.addon.identifier} (${makeUrlLogSafe(this.manifestUrl)})`
);
try {
const res = await makeRequest(
this.manifestUrl,
this.addon.timeout,
this.addon.headers,
this.addon.ip
);
if (!res.ok) {
throw new Error(`${res.status} - ${res.statusText}`);
}
const data = await res.json();
const manifest = ManifestSchema.safeParse(data);
if (!manifest.success) {
logger.error(`Manifest response was unexpected`);
logger.error(formatZodError(manifest.error));
logger.error(JSON.stringify(data, null, 2));
throw new Error(
`Failed to parse manifest for ${this.getAddonName(this.addon)}`
);
}
return manifest.data;
} catch (error: any) {
logger.error(
`Failed to fetch manifest for ${this.getAddonName(this.addon)}: ${error.message}`
);
if (error instanceof PossibleRecursiveRequestError) {
throw error;
}
throw new Error(
`Failed to fetch manifest for ${this.getAddonName(this.addon)}: ${error.message}`
);
}
},
this.manifestUrl,
Env.MANIFEST_CACHE_TTL
);
}
async getStreams(type: string, id: string): Promise<ParsedStream[]> {
const validator = (data: any): Stream[] => {
return this.validateArray(data.streams, StreamSchema, 'streams');
};
const streams = await this.makeResourceRequest(
'stream',
{ type, id },
validator,
Env.STREAM_CACHE_TTL != -1,
Env.STREAM_CACHE_TTL
);
const Parser = this.addon.presetType
? PresetManager.fromId(this.addon.presetType).getParser()
: StreamParser;
const parser = new Parser(this.addon);
return streams.map((stream: Stream) => parser.parse(stream));
}
async getCatalog(
type: string,
id: string,
extras?: string
): Promise<MetaPreview[]> {
const validator = (data: any): MetaPreview[] => {
return this.validateArray(data.metas, MetaPreviewSchema, 'catalog items');
};
return await this.makeResourceRequest(
'catalog',
{ type, id, extras },
validator,
Env.CATALOG_CACHE_TTL != -1,
Env.CATALOG_CACHE_TTL
);
}
async getMeta(type: string, id: string): Promise<Meta> {
const validator = (data: any): Meta => {
const parsed = MetaSchema.safeParse(data.meta);
if (!parsed.success) {
logger.error(formatZodError(parsed.error));
throw new Error(
`Failed to parse meta for ${this.getAddonName(this.addon)}`
);
}
return parsed.data;
};
const meta: Meta = await this.makeResourceRequest(
'meta',
{ type, id },
validator,
Env.META_CACHE_TTL != -1,
Env.META_CACHE_TTL
);
return meta;
}
async getSubtitles(
type: string,
id: string,
extras?: string
): Promise<Subtitle[]> {
const validator = (data: any): Subtitle[] => {
return this.validateArray(data.subtitles, SubtitleSchema, 'subtitles');
};
return await this.makeResourceRequest(
'subtitles',
{ type, id, extras },
validator,
Env.SUBTITLE_CACHE_TTL != -1,
Env.SUBTITLE_CACHE_TTL
);
}
async getAddonCatalog(type: string, id: string): Promise<AddonCatalog[]> {
const validator = (data: any): AddonCatalog[] => {
return this.validateArray(
data.addons,
AddonCatalogSchema,
'addon catalog items'
);
};
return await this.makeResourceRequest(
'addon_catalog',
{ type, id },
validator,
Env.ADDON_CATALOG_CACHE_TTL != -1,
Env.ADDON_CATALOG_CACHE_TTL
);
}
async makeRequest(url: string) {
return await makeRequest(
url,
this.addon.timeout,
this.addon.headers,
this.addon.ip
);
}
private async makeResourceRequest<T>(
resource: Resource,
params: ResourceParams,
validator: (data: unknown) => T,
cache: boolean = false,
cacheTtl: number = RESOURCE_TTL
) {
const { type, id, extras } = params;
const url = this.buildResourceUrl(resource, type, id, extras);
if (cache) {
const cached = resourceCache.get(url);
if (cached) {
logger.info(
`Returning cached ${resource} for ${this.getAddonName(this.addon)} (${makeUrlLogSafe(url)})`
);
return cached;
}
}
logger.info(
`Fetching ${resource} of type ${type} with id ${id} and extras ${extras} (${makeUrlLogSafe(url)})`
);
try {
const res = await makeRequest(
url,
this.addon.timeout,
this.addon.headers,
this.addon.ip
);
if (!res.ok) {
logger.error(
`Failed to fetch ${resource} resource for ${this.getAddonName(this.addon)}: ${res.status} - ${res.statusText}`
);
throw new Error(`${res.status} - ${res.statusText}`);
}
const data: unknown = await res.json();
const validated = validator(data);
if (cache) {
resourceCache.set(url, validated, cacheTtl);
}
return validated;
} catch (error: any) {
logger.error(
`Failed to fetch ${resource} resource for ${this.getAddonName(this.addon)}: ${error.message}`
);
throw error;
}
}
private buildResourceUrl(
resource: Resource,
type: string,
id: string,
extras?: string
): string {
const extrasPath = extras ? `/${extras}` : '';
return `${this.baseUrl}/${resource}/${type}/${encodeURIComponent(id)}${extrasPath}.json`;
}
private getAddonName(addon: Addon): string {
return `${addon.name}${addon.displayIdentifier || addon.identifier ? ` ${addon.displayIdentifier || addon.identifier}` : ''}`;
}
}
|