import { getExtensionsFolder } from "@/constants" import { db } from "@kksh/api/commands" import type { ExtPackageJsonExtra } from "@kksh/api/models" import * as extAPI from "@kksh/extension" import * as path from "@tauri-apps/api/path" import * as fs from "@tauri-apps/plugin-fs" import { derived, get, writable, type Readable, type Writable } from "svelte/store" import { appConfig } from "./appConfig" function createExtensionsStore(): Writable & { init: () => Promise getExtensionsFromStore: () => ExtPackageJsonExtra[] installFromTarballUrl: (tarballUrl: string, installDir: string) => Promise findStoreExtensionByIdentifier: (identifier: string) => ExtPackageJsonExtra | undefined registerNewExtensionByPath: (extPath: string) => Promise uninstallStoreExtensionByIdentifier: (identifier: string) => Promise upgradeStoreExtension: (identifier: string, tarballUrl: string) => Promise } { const { subscribe, update, set } = writable([]) function init() { return extAPI.loadAllExtensionsFromDb().then((exts) => { set(exts) }) } function getExtensionsFromStore() { const extContainerPath = get(appConfig).extensionPath if (!extContainerPath) return [] return get(extensions).filter((ext) => !extAPI.isExtPathInDev(extContainerPath, ext.extPath)) } function findStoreExtensionByIdentifier(identifier: string) { return get(extensions).find((ext) => ext.kunkun.identifier === identifier) } /** * After install, register the extension to the store * @param extPath absolute path to the extension folder * @returns loaded extension */ async function registerNewExtensionByPath(extPath: string) { return extAPI .loadExtensionManifestFromDisk(await path.join(extPath, "package.json")) .then((ext) => { update((exts) => { const existingExt = exts.find((e) => e.extPath === ext.extPath) if (existingExt) return exts return [...exts, ext] }) return ext }) .catch((err) => { console.error(err) return Promise.reject(err) }) } async function installFromTarballUrl(tarballUrl: string, extsDir: string) { return extAPI.installTarballUrl(tarballUrl, extsDir).then((extInstallPath) => { return registerNewExtensionByPath(extInstallPath) }) } async function uninstallExtensionByPath(targetPath: string) { const targetExt = get(extensions).find((ext) => ext.extPath === targetPath) if (!targetExt) throw new Error(`Extension ${targetPath} not registered in DB`) console.log(extAPI) return extAPI .uninstallExtensionByPath(targetPath) .then(() => update((exts) => exts.filter((ext) => ext.extPath !== targetExt.extPath))) .then(() => targetExt) } async function uninstallStoreExtensionByIdentifier(identifier: string) { const targetExt = getExtensionsFromStore().find((ext) => ext.kunkun.identifier === identifier) if (!targetExt) throw new Error(`Extension ${identifier} not found`) return uninstallExtensionByPath(targetExt.extPath) } async function upgradeStoreExtension( identifier: string, tarballUrl: string ): Promise { const extsDir = get(appConfig).extensionPath if (!extsDir) throw new Error("Extension path not set") return uninstallStoreExtensionByIdentifier(identifier).then(() => installFromTarballUrl(tarballUrl, extsDir) ) } return { init, getExtensionsFromStore, findStoreExtensionByIdentifier, registerNewExtensionByPath, installFromTarballUrl, uninstallStoreExtensionByIdentifier, upgradeStoreExtension, subscribe, update, set } } export const extensions = createExtensionsStore() // export const devExtensions: Readable = derived( // extensions, // ($extensionsStore, set) => { // getExtensionsFolder().then((extFolder) => { // set($extensionsStore.filter((ext) => !ext.extPath.startsWith(extFolder))) // }) // } // ) export const installedStoreExts: Readable = derived( extensions, ($extensionsStore) => { const extContainerPath = get(appConfig).extensionPath if (!extContainerPath) return [] return $extensionsStore.filter((ext) => !extAPI.isExtPathInDev(extContainerPath, ext.extPath)) } )