mirror of
https://github.com/iptv-org/iptv
synced 2026-09-06 03:50:47 -04:00
fix: preserve nested playlist paths when formatting
This commit is contained in:
@@ -4,11 +4,10 @@ import { Stream, Playlist } from '../../models'
|
||||
import { Storage } from '@freearhey/storage-js'
|
||||
import { STREAMS_DIR } from '../../constants'
|
||||
import { PlaylistParser } from '../../core'
|
||||
import { getStreamInfo } from '../../utils'
|
||||
import { getStoragePath, getStreamInfo } from '../../utils'
|
||||
import { loadData, data } from '../../api'
|
||||
import cliProgress from 'cli-progress'
|
||||
import { eachLimit } from 'async'
|
||||
import path from 'node:path'
|
||||
import os from 'node:os'
|
||||
|
||||
program
|
||||
@@ -42,7 +41,7 @@ async function main() {
|
||||
storage: streamsStorage
|
||||
})
|
||||
let files = program.args.length ? program.args : await streamsStorage.list('**/*.m3u')
|
||||
files = files.map((filepath: string) => path.basename(filepath))
|
||||
files = files.map((filepath: string) => getStoragePath(filepath, STREAMS_DIR))
|
||||
let streams = await parser.parse(files)
|
||||
streams = streams.map((stream: Stream) => {
|
||||
stream.setGuides(data.guidesGroupedByStreamId.get(stream.getId()))
|
||||
|
||||
@@ -44,6 +44,16 @@ export function normalizeURL(url: string): string {
|
||||
return decodeURIComponent(normalized).replace(/\s/g, '+').toString()
|
||||
}
|
||||
|
||||
export function getStoragePath(filepath: string, rootDir: string): string {
|
||||
const relative = path.relative(path.resolve(rootDir), path.resolve(filepath))
|
||||
|
||||
if (relative && relative !== '..' && !relative.startsWith(`..${path.sep}`)) {
|
||||
return relative
|
||||
}
|
||||
|
||||
return filepath
|
||||
}
|
||||
|
||||
export function truncate(string: string, limit: number = 100) {
|
||||
if (!string) return string
|
||||
if (string.length < limit) return string
|
||||
|
||||
Reference in New Issue
Block a user