1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-10-03 01:09:57 +01:00

feat: Additional instance configuration (#260)

This commit is contained in:
Matthew Phillips 2022-11-30 16:17:20 -05:00 committed by GitHub
parent 2bfa9dc476
commit c505543a73
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 2 deletions

View file

@ -39,6 +39,10 @@ export async function loginTo(user?: Omit<UserLogin, 'account'> & { account?: Ac
const masto = await loginMasto({ const masto = await loginMasto({
url: `https://${user?.server || DEFAULT_SERVER}`, url: `https://${user?.server || DEFAULT_SERVER}`,
accessToken: user?.token, accessToken: user?.token,
// Masto uses Mastodon version checks to see what features are enabled.
// Mastodon alternatives like GoToSocial will always fail these checks, so
// provide a way to disable them.
disableVersionCheck: process.env.MASTO_DISABLE_VERSION_CHECK === 'true',
}) })
if (!user?.token) { if (!user?.token) {

View file

@ -60,6 +60,10 @@ export default defineNuxtConfig({
public: { public: {
translateApi: '', translateApi: '',
}, },
storage: {
driver: process.env.ELK_STORAGE_DRIVER || 'cloudflare', // 'cloudflare' | 'fs'
fsBase: process.env.ELK_STORAGE_PATH ?? 'node_modules/.cache/servers',
},
}, },
nitro: { nitro: {
prerender: { prerender: {

View file

@ -21,8 +21,8 @@ const kv = _kv as typeof import('unstorage/dist/drivers/cloudflare-kv-http')['de
const storage = useStorage() as Storage const storage = useStorage() as Storage
if (config.env === 'local') { if (config.env === 'local' || config.storage.driver === 'fs') {
storage.mount('servers', fs({ base: 'node_modules/.cache/servers' })) storage.mount('servers', fs({ base: config.storage.fsBase }))
} }
else { else {
storage.mount('servers', cached(kv({ storage.mount('servers', cached(kv({
@ -31,6 +31,7 @@ else {
apiToken: config.cloudflare.apiToken, apiToken: config.cloudflare.apiToken,
}))) })))
} }
export function getRedirectURI(server: string) { export function getRedirectURI(server: string) {
return `${HOST_URL}/api/${server}/oauth` return `${HOST_URL}/api/${server}/oauth`
} }