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