mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2024-11-15 19:00:33 +01:00
42 lines
1.5 KiB
JavaScript
42 lines
1.5 KiB
JavaScript
|
/**
|
||
|
* Dynamically load the correct repository loader from a specific platform
|
||
|
* by default will return Github.
|
||
|
* @param {('github'|'gitlab')} platform
|
||
|
* @returns {import("./GithubRepo/RepoLoader")|import("./GitlabRepo/RepoLoader")} the repo loader class for provider
|
||
|
*/
|
||
|
function resolveRepoLoader(platform = "github") {
|
||
|
switch (platform) {
|
||
|
case "github":
|
||
|
console.log(`Loading GitHub RepoLoader...`);
|
||
|
return require("./GithubRepo/RepoLoader");
|
||
|
case "gitlab":
|
||
|
console.log(`Loading GitLab RepoLoader...`);
|
||
|
return require("./GitlabRepo/RepoLoader");
|
||
|
default:
|
||
|
console.log(`Loading GitHub RepoLoader...`);
|
||
|
return require("./GithubRepo/RepoLoader");
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Dynamically load the correct repository loader function from a specific platform
|
||
|
* by default will return Github.
|
||
|
* @param {('github'|'gitlab')} platform
|
||
|
* @returns {import("./GithubRepo")['fetchGithubFile'] | import("./GitlabRepo")['fetchGitlabFile']} the repo loader class for provider
|
||
|
*/
|
||
|
function resolveRepoLoaderFunction(platform = "github") {
|
||
|
switch (platform) {
|
||
|
case "github":
|
||
|
console.log(`Loading GitHub loader function...`);
|
||
|
return require("./GithubRepo").loadGithubRepo;
|
||
|
case "gitlab":
|
||
|
console.log(`Loading GitLab loader function...`);
|
||
|
return require("./GitlabRepo").loadGitlabRepo;
|
||
|
default:
|
||
|
console.log(`Loading GitHub loader function...`);
|
||
|
return require("./GithubRepo").loadGithubRepo;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = { resolveRepoLoader, resolveRepoLoaderFunction };
|