2021-02-06 13:05:00 +01:00
|
|
|
<template>
|
2022-01-04 09:52:44 +01:00
|
|
|
<div class="_formRoot">
|
2022-05-04 03:10:52 +02:00
|
|
|
<FormInfo warn class="_formBlock">{{ i18n.ts._plugin.installWarn }}</FormInfo>
|
2021-02-06 13:05:00 +01:00
|
|
|
|
2022-01-04 09:52:44 +01:00
|
|
|
<FormTextarea v-model="code" tall class="_formBlock">
|
2022-05-04 03:10:52 +02:00
|
|
|
<template #label>{{ i18n.ts.code }}</template>
|
2022-01-04 09:52:44 +01:00
|
|
|
</FormTextarea>
|
2021-02-06 13:05:00 +01:00
|
|
|
|
2022-01-04 09:52:44 +01:00
|
|
|
<div class="_formBlock">
|
2022-05-04 03:10:52 +02:00
|
|
|
<FormButton :disabled="code == null" primary inline @click="install"><i class="fas fa-check"></i> {{ i18n.ts.install }}</FormButton>
|
2022-01-04 09:52:44 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-02-06 13:05:00 +01:00
|
|
|
</template>
|
|
|
|
|
2022-05-04 03:10:52 +02:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { defineExpose, defineAsyncComponent, nextTick, ref } from 'vue';
|
2021-02-06 13:05:00 +01:00
|
|
|
import { AiScript, parse } from '@syuilo/aiscript';
|
|
|
|
import { serialize } from '@syuilo/aiscript/built/serializer';
|
|
|
|
import { v4 as uuid } from 'uuid';
|
2021-11-11 18:02:25 +01:00
|
|
|
import FormTextarea from '@/components/form/textarea.vue';
|
2022-01-04 09:52:44 +01:00
|
|
|
import FormButton from '@/components/ui/button.vue';
|
|
|
|
import FormInfo from '@/components/ui/info.vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import * as os from '@/os';
|
|
|
|
import { ColdDeviceStorage } from '@/store';
|
|
|
|
import { unisonReload } from '@/scripts/unison-reload';
|
2022-05-04 03:10:52 +02:00
|
|
|
import { i18n } from '@/i18n';
|
2021-11-11 18:02:25 +01:00
|
|
|
import * as symbols from '@/symbols';
|
2021-02-06 13:05:00 +01:00
|
|
|
|
2022-05-04 03:10:52 +02:00
|
|
|
const code = ref(null);
|
2021-02-06 13:05:00 +01:00
|
|
|
|
2022-05-04 03:10:52 +02:00
|
|
|
function installPlugin({ id, meta, ast, token }) {
|
|
|
|
ColdDeviceStorage.set('plugins', ColdDeviceStorage.get('plugins').concat({
|
|
|
|
...meta,
|
|
|
|
id,
|
|
|
|
active: true,
|
|
|
|
configData: {},
|
|
|
|
token: token,
|
|
|
|
ast: ast
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
|
|
|
async function install() {
|
|
|
|
let ast;
|
|
|
|
try {
|
|
|
|
ast = parse(code.value);
|
|
|
|
} catch (e) {
|
|
|
|
os.alert({
|
|
|
|
type: 'error',
|
|
|
|
text: 'Syntax error :('
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const meta = AiScript.collectMetadata(ast);
|
|
|
|
if (meta == null) {
|
|
|
|
os.alert({
|
|
|
|
type: 'error',
|
|
|
|
text: 'No metadata found :('
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const data = meta.get(null);
|
|
|
|
if (data == null) {
|
|
|
|
os.alert({
|
|
|
|
type: 'error',
|
|
|
|
text: 'No metadata found :('
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const { name, version, author, description, permissions, config } = data;
|
|
|
|
if (name == null || version == null || author == null) {
|
|
|
|
os.alert({
|
|
|
|
type: 'error',
|
|
|
|
text: 'Required property not found :('
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const token = permissions == null || permissions.length === 0 ? null : await new Promise((res, rej) => {
|
|
|
|
os.popup(import('@/components/token-generate-window.vue'), {
|
|
|
|
title: i18n.ts.tokenRequested,
|
|
|
|
information: i18n.ts.pluginTokenRequestedDescription,
|
|
|
|
initialName: name,
|
|
|
|
initialPermissions: permissions
|
|
|
|
}, {
|
|
|
|
done: async result => {
|
|
|
|
const { name, permissions } = result;
|
|
|
|
const { token } = await os.api('miauth/gen-token', {
|
|
|
|
session: null,
|
|
|
|
name: name,
|
|
|
|
permission: permissions,
|
2021-02-06 13:05:00 +01:00
|
|
|
});
|
2022-05-04 03:10:52 +02:00
|
|
|
|
|
|
|
res(token);
|
2021-02-06 13:05:00 +01:00
|
|
|
}
|
2022-05-04 03:10:52 +02:00
|
|
|
}, 'closed');
|
|
|
|
});
|
|
|
|
|
|
|
|
installPlugin({
|
|
|
|
id: uuid(),
|
|
|
|
meta: {
|
|
|
|
name, version, author, description, permissions, config
|
|
|
|
},
|
|
|
|
token,
|
|
|
|
ast: serialize(ast)
|
|
|
|
});
|
|
|
|
|
|
|
|
os.success();
|
|
|
|
|
|
|
|
const token = permissions == null || permissions.length === 0 ? null : await new Promise((res, rej) => {
|
|
|
|
os.popup(defineAsyncComponent(() => import('@/components/token-generate-window.vue')), {
|
|
|
|
title: i18n.ts.tokenRequested,
|
|
|
|
information: i18n.ts.pluginTokenRequestedDescription,
|
|
|
|
initialName: name,
|
|
|
|
initialPermissions: permissions
|
|
|
|
}, {
|
|
|
|
done: async result => {
|
|
|
|
const { name, permissions } = result;
|
|
|
|
const { token } = await os.api('miauth/gen-token', {
|
|
|
|
session: null,
|
|
|
|
name: name,
|
|
|
|
permission: permissions,
|
2021-02-06 13:05:00 +01:00
|
|
|
});
|
2022-05-04 03:10:52 +02:00
|
|
|
res(token);
|
2021-02-06 13:05:00 +01:00
|
|
|
}
|
2022-05-04 03:10:52 +02:00
|
|
|
}, 'closed');
|
|
|
|
});
|
2021-02-06 13:05:00 +01:00
|
|
|
|
2022-05-04 03:10:52 +02:00
|
|
|
nextTick(() => {
|
|
|
|
unisonReload();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
defineExpose({
|
|
|
|
[symbols.PAGE_INFO]: {
|
|
|
|
title: i18n.ts._plugin.install,
|
|
|
|
icon: 'fas fa-download',
|
|
|
|
bg: 'var(--bg)',
|
2021-02-06 13:05:00 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|