File size: 975 Bytes
f6f0c71 8e7c043 58293b7 acf17aa 8e7c043 58293b7 f6f0c71 acf17aa f6f0c71 acf17aa 8e7c043 3a25a20 58293b7 f6f0c71 |
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 |
import { scribdDownloader } from "./service/ScribdDownloader.js"
import { slideshareDownloader } from "./service/SlideshareDownloader.js"
import { everandDownloader } from "./service/EverandDownloader.js"
import * as scribdRegex from "./const/ScribdRegex.js"
import * as slideshareRegex from "./const/SlideshareRegex.js"
import * as everandRegex from "./const/EverandRegex.js"
class App {
constructor() {
if (!App.instance) {
App.instance = this
}
return App.instance
}
async execute(url, flag) {
if (url.match(scribdRegex.DOMAIN)) {
await scribdDownloader.execute(url, flag)
} else if (url.match(slideshareRegex.DOMAIN)) {
await slideshareDownloader.execute(url)
} else if (url.match(everandRegex.DOMAIN)) {
await everandDownloader.execute(url)
} else {
throw new Error(`Unsupported URL: ${url}`)
}
}
}
export const app = new App() |