2019-02-05 03:48:08 +01:00
|
|
|
import $ from 'cafy';
|
2019-04-07 14:50:36 +02:00
|
|
|
import { ID } from '../../../../misc/cafy-id';
|
2018-11-02 05:47:44 +01:00
|
|
|
import define from '../../define';
|
2019-01-15 18:30:55 +01:00
|
|
|
import fetchMeta from '../../../../misc/fetch-meta';
|
2019-02-22 03:46:58 +01:00
|
|
|
import { ApiError } from '../../error';
|
2019-04-07 14:50:36 +02:00
|
|
|
import { Notes } from '../../../../models';
|
|
|
|
import { generateMuteQuery } from '../../common/generate-mute-query';
|
|
|
|
import { makePaginationQuery } from '../../common/make-pagination-query';
|
|
|
|
import { generateVisibilityQuery } from '../../common/generate-visibility-query';
|
|
|
|
import { activeUsersChart } from '../../../../services/chart';
|
|
|
|
import { Brackets } from 'typeorm';
|
2019-04-23 15:35:26 +02:00
|
|
|
import { types, bool } from '../../../../misc/schema';
|
2018-04-17 07:52:28 +02:00
|
|
|
|
2018-09-05 16:55:51 +02:00
|
|
|
export const meta = {
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'ローカルタイムラインを取得します。'
|
|
|
|
},
|
|
|
|
|
2019-02-23 03:20:58 +01:00
|
|
|
tags: ['notes'],
|
|
|
|
|
2018-09-05 16:55:51 +02:00
|
|
|
params: {
|
2018-11-01 19:32:24 +01:00
|
|
|
withFiles: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.bool,
|
2018-09-05 16:55:51 +02:00
|
|
|
desc: {
|
|
|
|
'ja-JP': 'ファイルが添付された投稿に限定するか否か'
|
|
|
|
}
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2018-09-05 16:55:51 +02:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
fileType: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.arr($.str),
|
2018-09-05 21:28:22 +02:00
|
|
|
desc: {
|
|
|
|
'ja-JP': '指定された種類のファイルが添付された投稿のみを取得します'
|
|
|
|
}
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2018-09-05 21:28:22 +02:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
excludeNsfw: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.bool,
|
2018-09-25 14:09:38 +02:00
|
|
|
default: false,
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'true にすると、NSFW指定されたファイルを除外します(fileTypeが指定されている場合のみ有効)'
|
|
|
|
}
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2018-09-25 14:09:38 +02:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
limit: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.num.range(1, 100),
|
2018-09-05 16:55:51 +02:00
|
|
|
default: 10
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2018-09-05 16:55:51 +02:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
sinceId: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.type(ID),
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2018-04-17 07:52:28 +02:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
untilId: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.type(ID),
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2018-04-17 07:52:28 +02:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
sinceDate: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.num,
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2018-04-17 07:52:28 +02:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
untilDate: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.num,
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2019-02-22 03:46:58 +01:00
|
|
|
},
|
|
|
|
|
2019-02-23 03:20:58 +01:00
|
|
|
res: {
|
2019-04-23 15:35:26 +02:00
|
|
|
type: types.array,
|
|
|
|
optional: bool.false, nullable: bool.false,
|
2019-02-23 03:20:58 +01:00
|
|
|
items: {
|
2019-04-23 15:35:26 +02:00
|
|
|
type: types.object,
|
|
|
|
optional: bool.false, nullable: bool.false,
|
|
|
|
ref: 'Note',
|
|
|
|
}
|
2019-02-23 03:20:58 +01:00
|
|
|
},
|
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
errors: {
|
|
|
|
ltlDisabled: {
|
|
|
|
message: 'Local timeline has been disabled.',
|
|
|
|
code: 'LTL_DISABLED',
|
|
|
|
id: '45a6eb02-7695-4393-b023-dd3be9aaaefd'
|
|
|
|
},
|
2018-09-05 16:55:51 +02:00
|
|
|
}
|
|
|
|
};
|
2018-04-17 07:52:28 +02:00
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
export default define(meta, async (ps, user) => {
|
2019-04-07 14:50:36 +02:00
|
|
|
// TODO どっかにキャッシュ
|
2019-02-22 03:46:58 +01:00
|
|
|
const m = await fetchMeta();
|
|
|
|
if (m.disableLocalTimeline) {
|
2019-01-15 18:30:55 +01:00
|
|
|
if (user == null || (!user.isAdmin && !user.isModerator)) {
|
2019-02-22 03:46:58 +01:00
|
|
|
throw new ApiError(meta.errors.ltlDisabled);
|
2019-01-15 18:30:55 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-17 07:52:28 +02:00
|
|
|
//#region Construct query
|
2019-04-07 14:50:36 +02:00
|
|
|
const query = makePaginationQuery(Notes.createQueryBuilder('note'),
|
|
|
|
ps.sinceId, ps.untilId, ps.sinceDate, ps.untilDate)
|
|
|
|
.andWhere('(note.visibility = \'public\') AND (note.userHost IS NULL)')
|
|
|
|
.leftJoinAndSelect('note.user', 'user');
|
2019-01-20 05:14:31 +01:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
if (user) generateVisibilityQuery(query, user);
|
|
|
|
if (user) generateMuteQuery(query, user);
|
2018-04-17 07:52:28 +02:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
if (ps.withFiles) {
|
|
|
|
query.andWhere('note.fileIds != \'{}\'');
|
2018-06-06 23:13:57 +02:00
|
|
|
}
|
|
|
|
|
2019-04-12 18:43:22 +02:00
|
|
|
if (ps.fileType != null) {
|
2019-04-07 14:50:36 +02:00
|
|
|
query.andWhere('note.fileIds != \'{}\'');
|
|
|
|
query.andWhere(new Brackets(qb => {
|
2019-04-12 18:43:22 +02:00
|
|
|
for (const type of ps.fileType!) {
|
|
|
|
const i = ps.fileType!.indexOf(type);
|
2019-04-07 14:50:36 +02:00
|
|
|
qb.orWhere(`:type${i} = ANY(note.attachedFileTypes)`, { [`type${i}`]: type });
|
|
|
|
}
|
|
|
|
}));
|
2018-09-25 14:09:38 +02:00
|
|
|
|
|
|
|
if (ps.excludeNsfw) {
|
2019-04-07 14:50:36 +02:00
|
|
|
// v11 TODO
|
|
|
|
/*
|
|
|
|
query['_files.isSensitive'] = {
|
2018-09-25 14:09:38 +02:00
|
|
|
$ne: true
|
|
|
|
};
|
2019-04-07 14:50:36 +02:00
|
|
|
*/
|
2018-09-25 14:09:38 +02:00
|
|
|
}
|
2018-09-05 21:28:22 +02:00
|
|
|
}
|
2018-04-17 07:52:28 +02:00
|
|
|
//#endregion
|
|
|
|
|
2019-04-12 18:43:22 +02:00
|
|
|
const timeline = await query.take(ps.limit!).getMany();
|
2019-01-17 09:16:08 +01:00
|
|
|
|
|
|
|
if (user) {
|
|
|
|
activeUsersChart.update(user);
|
|
|
|
}
|
2019-02-22 03:46:58 +01:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
return await Notes.packMany(timeline, user);
|
2019-02-22 03:46:58 +01:00
|
|
|
});
|