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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
/*
Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
Copyright (C) 2026 Spacebar and Spacebar Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import fs from "node:fs/promises";
import path from "node:path";
import type { IGifProvider } from "./IGifProvider";
export class GifProviderManager {
private static _providers: Map<string, IGifProvider> = new Map<string, IGifProvider>();
public static async init() {
console.log("[GifProviderManager] Initialising providers...");
const providerImports = await Promise.all(
(await fs.readdir(path.join(__dirname, "providers"))) /**/
.filter((p) => p.endsWith(".js"))
.map((f) => import(path.join(__dirname, "providers", f))),
);
console.log("Import tasks:", providerImports);
for (const providerImport of providerImports) {
const provider = new providerImport.default.default() as IGifProvider;
console.log(`[GifProviderManager] Got provider with id ${provider.id}, calling init...`);
await provider.init();
console.log(`[GifProviderManager] Initialized '${provider.id}':`, provider, " - Available:", provider.available);
if (provider.available) this._providers.set(provider.id, provider);
console.log(`[GifProviderManager] Initialized`, this._providers.size, "/", providerImports.length, "GIF providers...");
}
console.log("[GifProviderManager] Ready with", this._providers.size, "available providers!");
}
public static getProvider(id: string): IGifProvider {
if (this._providers.has(id)) return this._providers.get(id)!;
throw new Error(`Unknown GIF provider, or it is not enabled: ${id}, known GIF providers: ${this._providers.keys().toArray().join(", ")}`);
}
public static getProviders() {
const providers: { [key: string]: { available: boolean } } = {};
for (const [id, provider] of this._providers) {
providers[id] = {
available: provider.available,
};
}
return providers;
}
}
|