Spaces:
Build error
Build error
File size: 7,080 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 |
import { AddonDetail, ParseResult, StreamRequest } from '@aiostreams/types';
import { ParsedStream, Config } from '@aiostreams/types';
import { BaseWrapper } from './base';
import { addonDetails, createLogger } from '@aiostreams/utils';
import { Settings } from '@aiostreams/utils';
import { Stream } from 'stream';
const logger = createLogger('wrappers');
export class StremThruStore extends BaseWrapper {
constructor(
configString: string | null,
overrideUrl: string | null,
addonName: string = 'ST Store',
addonId: string,
userConfig: Config,
indexerTimeout?: number
) {
let url = overrideUrl
? overrideUrl
: Settings.STREMTHRU_STORE_URL + (configString ? configString + '/' : '');
super(
addonName,
url,
addonId,
userConfig,
indexerTimeout || Settings.DEFAULT_STREMTHRU_STORE_TIMEOUT,
Settings.DEFAULT_STREMTHRU_STORE_USER_AGENT
? { 'User-Agent': Settings.DEFAULT_STREMTHRU_STORE_USER_AGENT }
: undefined
);
}
protected parseStream(stream: { [key: string]: string }): ParseResult {
const parsedResult = super.parseStream(stream);
if (parsedResult.type === 'stream' && parsedResult.result.provider?.id) {
parsedResult.result.provider = {
...parsedResult.result.provider,
cached: true,
};
// all st store results are "personal" streams.
parsedResult.result.personal = true;
// ST store results use a cogwheel emoji (⚙️) for the release group, this is mistakenly identified as an indexer.
// remove it (personal results don't have an indexer anyway)
parsedResult.result.indexers = undefined;
if (
Settings.FORCE_STREMTHRU_STORE_HOSTNAME !== undefined ||
Settings.FORCE_STREMTHRU_STORE_PORT !== undefined ||
Settings.FORCE_STREMTHRU_STORE_PROTOCOL !== undefined
) {
// modify the URL according to settings, needed when using a local URL for requests but a public stream URL is needed.
const url = new URL(parsedResult.result.url || '');
if (Settings.FORCE_STREMTHRU_STORE_PROTOCOL !== undefined) {
url.protocol = Settings.FORCE_STREMTHRU_STORE_PROTOCOL;
}
if (Settings.FORCE_STREMTHRU_STORE_PORT !== undefined) {
url.port = Settings.FORCE_STREMTHRU_STORE_PORT.toString();
}
if (Settings.FORCE_STREMTHRU_STORE_HOSTNAME !== undefined) {
url.hostname = Settings.FORCE_STREMTHRU_STORE_HOSTNAME;
}
parsedResult.result.url = url.toString();
}
}
return parsedResult;
}
}
export async function getStremThruStoreStreams(
config: Config,
stremthruStoreOptions: {
prioritiseDebrid?: string;
overrideUrl?: string;
indexerTimeout?: string;
overrideName?: string;
},
streamRequest: StreamRequest,
addonId: string
): Promise<{ addonStreams: ParsedStream[]; addonErrors: string[] }> {
const supportedServices: string[] =
addonDetails.find((addon: AddonDetail) => addon.id === 'stremthru-store')
?.supportedServices || [];
const parsedStreams: ParsedStream[] = [];
const indexerTimeout = stremthruStoreOptions.indexerTimeout
? parseInt(stremthruStoreOptions.indexerTimeout)
: undefined;
// If overrideUrl is provided, use it to get streams and skip all other steps
if (stremthruStoreOptions.overrideUrl) {
const stremthruStore = new StremThruStore(
null,
stremthruStoreOptions.overrideUrl as string,
stremthruStoreOptions.overrideName,
addonId,
config,
indexerTimeout
);
return await stremthruStore.getParsedStreams(streamRequest);
}
// find all usable and enabled services
const usableServices = config.services.filter(
(service) => supportedServices.includes(service.id) && service.enabled
);
// if no usable services found, raise error
if (usableServices.length < 1) {
throw new Error('No supported service(s) enabled');
}
// otherwise, depending on the configuration, create multiple instances of StremThru Store or use a single instance with the prioritised service
if (
stremthruStoreOptions.prioritiseDebrid &&
!supportedServices.includes(stremthruStoreOptions.prioritiseDebrid)
) {
throw new Error('Invalid debrid service');
}
const formServiceCredentialsString = (
service: string,
credentials: { [key: string]: string }
) => {
if (service === 'pikpak' || service === 'offcloud') {
if (!credentials.email || !credentials.password) {
throw new Error(
`Credentials for ${service} are not valid. Please check your configuration. Email and password are required.`
);
}
return `${credentials.email}:${credentials.password}`;
}
if (!credentials.apiKey) {
throw new Error(`API Key is missing for ${service}`);
}
return credentials.apiKey;
};
if (stremthruStoreOptions.prioritiseDebrid) {
const debridService = usableServices.find(
(service) => service.id === stremthruStoreOptions.prioritiseDebrid
);
if (!debridService) {
throw new Error(
'Debrid service not found for ' + stremthruStoreOptions.prioritiseDebrid
);
}
const storeToken = formServiceCredentialsString(
debridService.id,
debridService.credentials
);
const stremthruStore = new StremThruStore(
getConfigString(stremthruStoreOptions.prioritiseDebrid, storeToken),
null,
stremthruStoreOptions.overrideName,
addonId,
config,
indexerTimeout
);
return await stremthruStore.getParsedStreams(streamRequest);
}
// if no prioritised service is provided, create a stremthru instance for each service
const servicesToUse = usableServices.filter((service) => service.enabled);
if (servicesToUse.length < 1) {
throw new Error('No supported service(s) enabled');
}
const errorMessages: string[] = [];
const streamPromises = servicesToUse.map(async (service) => {
logger.info(`Getting StremThru Store streams for ${service.id}`, {
func: 'stremthru-store',
});
const stremthruStore = new StremThruStore(
getConfigString(
service.id,
formServiceCredentialsString(service.id, service.credentials)
),
null,
stremthruStoreOptions.overrideName,
addonId,
config,
indexerTimeout
);
return stremthruStore.getParsedStreams(streamRequest);
});
const results = await Promise.allSettled(streamPromises);
results.forEach((result) => {
if (result.status === 'fulfilled') {
const streams = result.value;
parsedStreams.push(...streams.addonStreams);
errorMessages.push(...streams.addonErrors);
} else {
errorMessages.push(result.reason.message);
}
});
return { addonStreams: parsedStreams, addonErrors: errorMessages };
}
function getConfigString(storeName: string, storeToken: string) {
return Buffer.from(
JSON.stringify({
store_name: storeName,
store_token: storeToken,
})
).toString('base64');
}
|