mirror of
https://github.com/iptv-org/iptv.git
synced 2025-05-10 17:10:04 -04:00
64 lines
2.2 KiB
TypeScript
64 lines
2.2 KiB
TypeScript
import { Collection, Storage, File } from '@freearhey/core'
|
|
import { Playlist, Region, Stream } from '../models'
|
|
import { PUBLIC_DIR } from '../constants'
|
|
import { Generator } from './generator'
|
|
import { EOL } from 'node:os'
|
|
|
|
type RegionsGeneratorProps = {
|
|
streams: Collection
|
|
regions: Collection
|
|
logFile: File
|
|
}
|
|
|
|
export class RegionsGenerator implements Generator {
|
|
streams: Collection
|
|
regions: Collection
|
|
storage: Storage
|
|
logFile: File
|
|
|
|
constructor({ streams, regions, logFile }: RegionsGeneratorProps) {
|
|
this.streams = streams
|
|
this.regions = regions
|
|
this.storage = new Storage(PUBLIC_DIR)
|
|
this.logFile = logFile
|
|
}
|
|
|
|
async generate(): Promise<void> {
|
|
const streams = this.streams
|
|
.orderBy((stream: Stream) => stream.getTitle())
|
|
.filter((stream: Stream) => stream.isSFW())
|
|
|
|
this.regions.forEach(async (region: Region) => {
|
|
if (region.isWorldwide()) return
|
|
|
|
const regionStreams = streams.filter((stream: Stream) => stream.isBroadcastInRegion(region))
|
|
|
|
const playlist = new Playlist(regionStreams, { public: true })
|
|
const filepath = `regions/${region.code.toLowerCase()}.m3u`
|
|
await this.storage.save(filepath, playlist.toString())
|
|
this.logFile.append(
|
|
JSON.stringify({ type: 'region', filepath, count: playlist.streams.count() }) + EOL
|
|
)
|
|
})
|
|
|
|
const internationalStreams = streams.filter((stream: Stream) => stream.isInternational())
|
|
const internationalPlaylist = new Playlist(internationalStreams, { public: true })
|
|
const internationalFilepath = 'regions/int.m3u'
|
|
await this.storage.save(internationalFilepath, internationalPlaylist.toString())
|
|
this.logFile.append(
|
|
JSON.stringify({
|
|
type: 'region',
|
|
filepath: internationalFilepath,
|
|
count: internationalPlaylist.streams.count()
|
|
}) + EOL
|
|
)
|
|
|
|
const undefinedStreams = streams.filter((stream: Stream) => !stream.hasBroadcastArea())
|
|
const playlist = new Playlist(undefinedStreams, { public: true })
|
|
const filepath = 'regions/undefined.m3u'
|
|
await this.storage.save(filepath, playlist.toString())
|
|
this.logFile.append(
|
|
JSON.stringify({ type: 'region', filepath, count: playlist.streams.count() }) + EOL
|
|
)
|
|
}
|
|
}
|