2022-02-27 03:07:39 +01:00
|
|
|
import { publishMainStream } from '@/services/stream.js';
|
|
|
|
import define from '../../../define.js';
|
|
|
|
import { RegistryItems } from '@/models/index.js';
|
|
|
|
import { genId } from '@/misc/gen-id.js';
|
2021-01-11 12:38:34 +01:00
|
|
|
|
|
|
|
export const meta = {
|
2022-01-18 14:27:10 +01:00
|
|
|
requireCredential: true,
|
2021-01-11 12:38:34 +01:00
|
|
|
|
|
|
|
secure: true,
|
2022-02-19 06:05:32 +01:00
|
|
|
} as const;
|
2021-01-11 12:38:34 +01:00
|
|
|
|
2022-02-20 05:15:40 +01:00
|
|
|
export const paramDef = {
|
2022-02-19 06:05:32 +01:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
key: { type: 'string', minLength: 1 },
|
|
|
|
value: {},
|
|
|
|
scope: { type: 'array', default: [], items: {
|
|
|
|
type: 'string', pattern: /^[a-zA-Z0-9_]+$/.toString().slice(1, -1),
|
|
|
|
} },
|
2021-12-09 15:58:30 +01:00
|
|
|
},
|
2022-02-19 06:05:32 +01:00
|
|
|
required: ['key', 'value'],
|
2022-01-18 14:27:10 +01:00
|
|
|
} as const;
|
2021-01-11 12:38:34 +01:00
|
|
|
|
2022-01-02 18:12:50 +01:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 06:05:32 +01:00
|
|
|
export default define(meta, paramDef, async (ps, user) => {
|
2021-01-11 12:38:34 +01:00
|
|
|
const query = RegistryItems.createQueryBuilder('item')
|
|
|
|
.where('item.domain IS NULL')
|
|
|
|
.andWhere('item.userId = :userId', { userId: user.id })
|
|
|
|
.andWhere('item.key = :key', { key: ps.key })
|
|
|
|
.andWhere('item.scope = :scope', { scope: ps.scope });
|
|
|
|
|
|
|
|
const existingItem = await query.getOne();
|
|
|
|
|
|
|
|
if (existingItem) {
|
|
|
|
await RegistryItems.update(existingItem.id, {
|
|
|
|
updatedAt: new Date(),
|
2021-12-09 15:58:30 +01:00
|
|
|
value: ps.value,
|
2021-01-11 12:38:34 +01:00
|
|
|
});
|
|
|
|
} else {
|
|
|
|
await RegistryItems.insert({
|
|
|
|
id: genId(),
|
|
|
|
createdAt: new Date(),
|
|
|
|
updatedAt: new Date(),
|
|
|
|
userId: user.id,
|
|
|
|
domain: null,
|
|
|
|
scope: ps.scope,
|
|
|
|
key: ps.key,
|
2021-12-09 15:58:30 +01:00
|
|
|
value: ps.value,
|
2021-01-11 12:38:34 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: サードパーティアプリが傍受出来てしまうのでどうにかする
|
|
|
|
publishMainStream(user.id, 'registryUpdated', {
|
|
|
|
scope: ps.scope,
|
|
|
|
key: ps.key,
|
2021-12-09 15:58:30 +01:00
|
|
|
value: ps.value,
|
2021-01-11 12:38:34 +01:00
|
|
|
});
|
|
|
|
});
|