Update update-readme.js
This commit is contained in:
parent
acb2a8b193
commit
1c5eae5256
|
@ -1,6 +1,9 @@
|
||||||
const utils = require('./utils')
|
const utils = require('./utils')
|
||||||
const parser = require('./parser')
|
const parser = require('./parser')
|
||||||
const categories = require('./categories')
|
const categories = require('./categories')
|
||||||
|
const db = require('./db')
|
||||||
|
|
||||||
|
db.load()
|
||||||
|
|
||||||
const list = {
|
const list = {
|
||||||
countries: {},
|
countries: {},
|
||||||
|
@ -34,19 +37,6 @@ function parseIndex() {
|
||||||
playlist: `<code>https://iptv-org.github.io/iptv/languages/undefined.m3u</code>`
|
playlist: `<code>https://iptv-org.github.io/iptv/languages/undefined.m3u</code>`
|
||||||
}
|
}
|
||||||
|
|
||||||
for (const category of categories) {
|
|
||||||
list.categories[category.id] = {
|
|
||||||
category: category.name,
|
|
||||||
channels: 0,
|
|
||||||
playlist: `<code>https://iptv-org.github.io/iptv/categories/${category.id}.m3u</code>`
|
|
||||||
}
|
|
||||||
}
|
|
||||||
list.categories['other'] = {
|
|
||||||
category: 'Other',
|
|
||||||
channels: 0,
|
|
||||||
playlist: `<code>https://iptv-org.github.io/iptv/categories/other.m3u</code>`
|
|
||||||
}
|
|
||||||
|
|
||||||
for (const item of items) {
|
for (const item of items) {
|
||||||
const playlist = parser.parsePlaylist(item.url)
|
const playlist = parser.parsePlaylist(item.url)
|
||||||
for (let channel of playlist.channels) {
|
for (let channel of playlist.channels) {
|
||||||
|
@ -85,20 +75,40 @@ function parseIndex() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// categories
|
|
||||||
const categoryId = channel.category.toLowerCase()
|
|
||||||
if (!categoryId) {
|
|
||||||
list.categories['other'].channels++
|
|
||||||
} else if (list.categories[categoryId]) {
|
|
||||||
list.categories[categoryId].channels++
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
list.countries = Object.values(list.countries)
|
list.countries = Object.values(list.countries)
|
||||||
list.languages = Object.values(list.languages)
|
list.languages = Object.values(list.languages)
|
||||||
list.categories = Object.values(list.categories)
|
}
|
||||||
|
|
||||||
|
function generateCategoriesTable() {
|
||||||
|
console.log(`Generating categories table...`)
|
||||||
|
const categories = []
|
||||||
|
|
||||||
|
for (const category of db.categories.all()) {
|
||||||
|
categories.push({
|
||||||
|
category: category.name,
|
||||||
|
channels: db.channels.forCategory(category).count(),
|
||||||
|
playlist: `<code>https://iptv-org.github.io/iptv/categories/${category.id}.m3u</code>`
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
categories.push({
|
||||||
|
category: 'Other',
|
||||||
|
channels: db.channels.forCategory({ id: null }).count(),
|
||||||
|
playlist: `<code>https://iptv-org.github.io/iptv/categories/other.m3u</code>`
|
||||||
|
})
|
||||||
|
|
||||||
|
const table = utils.generateTable(categories, {
|
||||||
|
columns: [
|
||||||
|
{ name: 'Category', align: 'left' },
|
||||||
|
{ name: 'Channels', align: 'right' },
|
||||||
|
{ name: 'Playlist', align: 'left' }
|
||||||
|
]
|
||||||
|
})
|
||||||
|
|
||||||
|
utils.createFile('./.readme/_categories.md', table)
|
||||||
}
|
}
|
||||||
|
|
||||||
function generateCountriesTable() {
|
function generateCountriesTable() {
|
||||||
|
@ -132,20 +142,6 @@ function generateLanguagesTable() {
|
||||||
utils.createFile('./.readme/_languages.md', table)
|
utils.createFile('./.readme/_languages.md', table)
|
||||||
}
|
}
|
||||||
|
|
||||||
function generateCategoriesTable() {
|
|
||||||
console.log(`Generating categories table...`)
|
|
||||||
list.categories = utils.sortBy(list.categories, ['category'])
|
|
||||||
const table = utils.generateTable(list.categories, {
|
|
||||||
columns: [
|
|
||||||
{ name: 'Category', align: 'left' },
|
|
||||||
{ name: 'Channels', align: 'right' },
|
|
||||||
{ name: 'Playlist', align: 'left' }
|
|
||||||
]
|
|
||||||
})
|
|
||||||
|
|
||||||
utils.createFile('./.readme/_categories.md', table)
|
|
||||||
}
|
|
||||||
|
|
||||||
function generateReadme() {
|
function generateReadme() {
|
||||||
console.log(`Generating README.md...`)
|
console.log(`Generating README.md...`)
|
||||||
utils.compileMarkdown('../.readme/config.json')
|
utils.compileMarkdown('../.readme/config.json')
|
||||||
|
|
Loading…
Reference in New Issue