mirror of
https://github.com/iptv-org/database.git
synced 2024-11-09 22:16:38 -05:00
49 lines
1.7 KiB
TypeScript
49 lines
1.7 KiB
TypeScript
import { Collection } from '@freearhey/core'
|
|
import { restEndpointMethods } from '@octokit/plugin-rest-endpoint-methods'
|
|
import { paginateRest } from '@octokit/plugin-paginate-rest'
|
|
import { Octokit } from '@octokit/core'
|
|
import { IssueParser } from './'
|
|
import { TESTING, OWNER, REPO } from '../constants'
|
|
|
|
const CustomOctokit = Octokit.plugin(paginateRest, restEndpointMethods)
|
|
const octokit = new CustomOctokit()
|
|
|
|
export class IssueLoader {
|
|
async load({ labels }: { labels: string[] | string }) {
|
|
labels = Array.isArray(labels) ? labels.join(',') : labels
|
|
let issues: object[] = []
|
|
if (TESTING) {
|
|
switch (labels) {
|
|
case 'channels:add,approved':
|
|
issues = require('../../tests/__data__/input/issues/channels_add_approved.js')
|
|
break
|
|
case 'channels:edit,approved':
|
|
issues = require('../../tests/__data__/input/issues/channels_edit_approved.js')
|
|
break
|
|
case 'channels:remove,approved':
|
|
issues = require('../../tests/__data__/input/issues/channels_remove_approved.js')
|
|
break
|
|
case 'blocklist:add,approved':
|
|
issues = require('../../tests/__data__/input/issues/blocklist_add_approved.js')
|
|
break
|
|
case 'blocklist:remove,approved':
|
|
issues = require('../../tests/__data__/input/issues/blocklist_remove_approved.js')
|
|
break
|
|
}
|
|
} else {
|
|
issues = await octokit.paginate(octokit.rest.issues.listForRepo, {
|
|
owner: OWNER,
|
|
repo: REPO,
|
|
per_page: 100,
|
|
labels,
|
|
headers: {
|
|
'X-GitHub-Api-Version': '2022-11-28'
|
|
}
|
|
})
|
|
}
|
|
|
|
const parser = new IssueParser()
|
|
|
|
return new Collection(issues).map(parser.parse)
|
|
}
|
|
}
|