2018-11-01 22:47:44 -06:00
|
|
|
import define from '../define';
|
2019-04-07 06:50:36 -06:00
|
|
|
import { Users } from '../../../models';
|
2019-04-23 07:35:26 -06:00
|
|
|
import { types, bool } from '../../../misc/schema';
|
2016-12-28 15:49:51 -07:00
|
|
|
|
2018-07-15 15:19:19 -06:00
|
|
|
export const meta = {
|
2018-10-21 14:16:27 -06:00
|
|
|
stability: 'stable',
|
|
|
|
|
2018-07-15 15:19:19 -06:00
|
|
|
desc: {
|
2018-08-28 15:59:43 -06:00
|
|
|
'ja-JP': '自分のアカウント情報を取得します。'
|
2018-07-15 15:19:19 -06:00
|
|
|
},
|
|
|
|
|
2019-02-22 19:20:58 -07:00
|
|
|
tags: ['account'],
|
|
|
|
|
2018-07-15 15:19:19 -06:00
|
|
|
requireCredential: true,
|
|
|
|
|
2018-07-16 12:57:34 -06:00
|
|
|
params: {},
|
|
|
|
|
|
|
|
res: {
|
2019-04-23 07:35:26 -06:00
|
|
|
type: types.object,
|
|
|
|
optional: bool.false, nullable: bool.false,
|
|
|
|
ref: 'User',
|
|
|
|
},
|
2018-07-15 15:19:19 -06:00
|
|
|
};
|
|
|
|
|
2019-02-21 19:46:58 -07:00
|
|
|
export default define(meta, async (ps, user, app) => {
|
2018-04-11 02:40:01 -06:00
|
|
|
const isSecure = user != null && app == null;
|
|
|
|
|
2019-04-07 06:50:36 -06:00
|
|
|
return await Users.pack(user, user, {
|
2016-12-28 15:49:51 -07:00
|
|
|
detail: true,
|
2018-09-18 23:18:34 -06:00
|
|
|
includeHasUnreadNotes: true,
|
2016-12-28 15:49:51 -07:00
|
|
|
includeSecrets: isSecure
|
2019-02-21 19:46:58 -07:00
|
|
|
});
|
|
|
|
});
|