iceshrimp-legacy/src/server/api/endpoints/app/create.ts

52 lines
905 B
TypeScript
Raw Normal View History

2016-12-28 23:49:51 +01:00
import rndstr from 'rndstr';
2017-03-08 19:50:09 +01:00
import $ from 'cafy';
import App, { pack } from '../../../../models/app';
2018-11-02 05:47:44 +01:00
import define from '../../define';
2016-12-28 23:49:51 +01:00
2018-07-16 21:36:44 +02:00
export const meta = {
tags: ['app'],
2018-11-02 04:49:08 +01:00
requireCredential: false,
params: {
name: {
validator: $.str
},
description: {
validator: $.str
},
permission: {
validator: $.arr($.str).unique()
},
// TODO: Check it is valid url
callbackUrl: {
2019-02-13 08:33:07 +01:00
validator: $.optional.nullable.str,
2018-11-02 04:49:08 +01:00
default: null as any
},
}
2018-07-16 21:36:44 +02:00
};
export default define(meta, async (ps, user) => {
2016-12-28 23:49:51 +01:00
// Generate secret
const secret = rndstr('a-zA-Z0-9', 32);
// Create account
2017-01-20 09:38:05 +01:00
const app = await App.insert({
2018-03-29 07:48:47 +02:00
createdAt: new Date(),
userId: user && user._id,
2018-11-05 17:51:42 +01:00
name: ps.name,
2018-11-02 04:49:08 +01:00
description: ps.description,
permission: ps.permission,
callbackUrl: ps.callbackUrl,
2016-12-28 23:49:51 +01:00
secret: secret
});
return await pack(app, null, {
2018-11-01 01:19:22 +01:00
detail: true,
includeSecret: true
});
});