2019-02-05 04:48:08 +02:00
|
|
|
import $ from 'cafy';
|
|
|
|
import ID, { transform } from '../../../../misc/cafy-id';
|
2018-03-27 10:51:12 +03:00
|
|
|
import getHostLower from '../../common/get-host-lower';
|
2018-10-03 18:39:11 +03:00
|
|
|
import Note, { packMany } from '../../../../models/note';
|
2018-11-02 06:47:44 +02:00
|
|
|
import User from '../../../../models/user';
|
|
|
|
import define from '../../define';
|
2018-09-05 20:16:08 +03:00
|
|
|
import { countIf } from '../../../../prelude/array';
|
2019-01-21 14:51:58 +02:00
|
|
|
import Following from '../../../../models/following';
|
2018-09-05 17:55:51 +03:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
desc: {
|
|
|
|
'ja-JP': '指定したユーザーのタイムラインを取得します。'
|
|
|
|
},
|
|
|
|
|
|
|
|
params: {
|
2018-11-01 20:32:24 +02:00
|
|
|
userId: {
|
|
|
|
validator: $.type(ID).optional,
|
|
|
|
transform: transform,
|
2018-09-05 17:55:51 +03:00
|
|
|
desc: {
|
2018-11-03 15:49:36 +02:00
|
|
|
'ja-JP': '対象のユーザーのID',
|
|
|
|
'en-US': 'Target user ID'
|
2018-09-05 17:55:51 +03:00
|
|
|
}
|
2018-11-01 20:32:24 +02:00
|
|
|
},
|
2018-09-05 17:55:51 +03:00
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
username: {
|
|
|
|
validator: $.str.optional,
|
2018-09-05 17:55:51 +03:00
|
|
|
desc: {
|
|
|
|
'ja-JP': 'ユーザー名'
|
|
|
|
}
|
2018-11-01 20:32:24 +02:00
|
|
|
},
|
2018-09-05 17:55:51 +03:00
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
host: {
|
2018-11-11 11:26:09 +02:00
|
|
|
validator: $.str.optional.nullable,
|
2018-11-01 20:32:24 +02:00
|
|
|
},
|
2018-09-05 17:55:51 +03:00
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
includeReplies: {
|
|
|
|
validator: $.bool.optional,
|
2018-09-05 17:55:51 +03:00
|
|
|
default: true,
|
|
|
|
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'リプライを含めるか否か'
|
|
|
|
}
|
2018-11-01 20:32:24 +02:00
|
|
|
},
|
2018-09-05 17:55:51 +03:00
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
limit: {
|
|
|
|
validator: $.num.optional.range(1, 100),
|
2018-09-05 17:55:51 +03:00
|
|
|
default: 10,
|
|
|
|
desc: {
|
|
|
|
'ja-JP': '最大数'
|
|
|
|
}
|
2018-11-01 20:32:24 +02:00
|
|
|
},
|
2018-09-05 17:55:51 +03:00
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
sinceId: {
|
|
|
|
validator: $.type(ID).optional,
|
|
|
|
transform: transform,
|
2018-09-05 17:55:51 +03:00
|
|
|
desc: {
|
|
|
|
'ja-JP': '指定すると、この投稿を基点としてより新しい投稿を取得します'
|
|
|
|
}
|
2018-11-01 20:32:24 +02:00
|
|
|
},
|
2018-09-05 17:55:51 +03:00
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
untilId: {
|
|
|
|
validator: $.type(ID).optional,
|
|
|
|
transform: transform,
|
2018-09-05 17:55:51 +03:00
|
|
|
desc: {
|
|
|
|
'ja-JP': '指定すると、この投稿を基点としてより古い投稿を取得します'
|
|
|
|
}
|
2018-11-01 20:32:24 +02:00
|
|
|
},
|
2018-09-05 17:55:51 +03:00
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
sinceDate: {
|
|
|
|
validator: $.num.optional,
|
2018-09-05 17:55:51 +03:00
|
|
|
desc: {
|
|
|
|
'ja-JP': '指定した時間を基点としてより新しい投稿を取得します。数値は、1970年1月1日 00:00:00 UTC から指定した日時までの経過時間をミリ秒単位で表します。'
|
|
|
|
}
|
2018-11-01 20:32:24 +02:00
|
|
|
},
|
2018-09-05 17:55:51 +03:00
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
untilDate: {
|
|
|
|
validator: $.num.optional,
|
2018-09-05 17:55:51 +03:00
|
|
|
desc: {
|
|
|
|
'ja-JP': '指定した時間を基点としてより古い投稿を取得します。数値は、1970年1月1日 00:00:00 UTC から指定した日時までの経過時間をミリ秒単位で表します。'
|
|
|
|
}
|
2018-11-01 20:32:24 +02:00
|
|
|
},
|
2018-09-05 17:55:51 +03:00
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
includeMyRenotes: {
|
|
|
|
validator: $.bool.optional,
|
2018-09-05 17:55:51 +03:00
|
|
|
default: true,
|
|
|
|
desc: {
|
|
|
|
'ja-JP': '自分の行ったRenoteを含めるかどうか'
|
|
|
|
}
|
2018-11-01 20:32:24 +02:00
|
|
|
},
|
2018-09-05 17:55:51 +03:00
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
includeRenotedMyNotes: {
|
|
|
|
validator: $.bool.optional,
|
2018-09-05 17:55:51 +03:00
|
|
|
default: true,
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'Renoteされた自分の投稿を含めるかどうか'
|
|
|
|
}
|
2018-11-01 20:32:24 +02:00
|
|
|
},
|
2018-09-05 17:55:51 +03:00
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
includeLocalRenotes: {
|
|
|
|
validator: $.bool.optional,
|
2018-09-05 17:55:51 +03:00
|
|
|
default: true,
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'Renoteされたローカルの投稿を含めるかどうか'
|
|
|
|
}
|
2018-11-01 20:32:24 +02:00
|
|
|
},
|
2018-09-05 17:55:51 +03:00
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
withFiles: {
|
|
|
|
validator: $.bool.optional,
|
2018-09-05 17:55:51 +03:00
|
|
|
default: false,
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'true にすると、ファイルが添付された投稿だけ取得します'
|
|
|
|
}
|
2018-11-01 20:32:24 +02:00
|
|
|
},
|
2018-09-05 17:55:51 +03:00
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
mediaOnly: {
|
|
|
|
validator: $.bool.optional,
|
2018-09-05 17:55:51 +03:00
|
|
|
default: false,
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'true にすると、ファイルが添付された投稿だけ取得します (このパラメータは廃止予定です。代わりに withFiles を使ってください。)'
|
|
|
|
}
|
2018-11-01 20:32:24 +02:00
|
|
|
},
|
2018-10-19 03:20:11 +03:00
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
fileType: {
|
|
|
|
validator: $.arr($.str).optional,
|
2018-10-19 03:20:11 +03:00
|
|
|
desc: {
|
|
|
|
'ja-JP': '指定された種類のファイルが添付された投稿のみを取得します'
|
|
|
|
}
|
2018-11-01 20:32:24 +02:00
|
|
|
},
|
2019-01-11 01:10:39 +02:00
|
|
|
|
|
|
|
excludeNsfw: {
|
|
|
|
validator: $.bool.optional,
|
|
|
|
default: false,
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'true にすると、NSFW指定されたファイルを除外します(fileTypeが指定されている場合のみ有効)'
|
|
|
|
}
|
|
|
|
},
|
2018-09-05 17:55:51 +03:00
|
|
|
}
|
|
|
|
};
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2018-11-02 06:47:44 +02:00
|
|
|
export default define(meta, (ps, me) => new Promise(async (res, rej) => {
|
2018-09-05 17:55:51 +03:00
|
|
|
if (ps.userId === undefined && ps.username === undefined) {
|
2018-08-16 17:33:11 +03:00
|
|
|
return rej('userId or username is required');
|
2018-03-27 10:51:12 +03:00
|
|
|
}
|
|
|
|
|
2018-03-29 08:48:47 +03:00
|
|
|
// Check if only one of sinceId, untilId, sinceDate, untilDate specified
|
2018-09-05 20:16:08 +03:00
|
|
|
if (countIf(x => x != null, [ps.sinceId, ps.untilId, ps.sinceDate, ps.untilDate]) > 1) {
|
2018-03-29 08:48:47 +03:00
|
|
|
throw 'only one of sinceId, untilId, sinceDate, untilDate can be specified';
|
2016-12-29 00:49:51 +02:00
|
|
|
}
|
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
const q = ps.userId != null
|
2018-09-05 17:55:51 +03:00
|
|
|
? { _id: ps.userId }
|
|
|
|
: { usernameLower: ps.username.toLowerCase(), host: getHostLower(ps.host) } ;
|
2017-02-22 06:08:33 +02:00
|
|
|
|
2016-12-29 00:49:51 +02:00
|
|
|
// Lookup user
|
2017-02-22 06:08:33 +02:00
|
|
|
const user = await User.findOne(q, {
|
|
|
|
fields: {
|
|
|
|
_id: true
|
|
|
|
}
|
|
|
|
});
|
2016-12-29 00:49:51 +02:00
|
|
|
|
|
|
|
if (user === null) {
|
|
|
|
return rej('user not found');
|
|
|
|
}
|
|
|
|
|
2019-01-21 14:51:58 +02:00
|
|
|
const isFollowing = me == null ? false : ((await Following.findOne({
|
|
|
|
followerId: me._id,
|
|
|
|
followeeId: user._id
|
|
|
|
})) != null);
|
|
|
|
|
2017-11-14 01:21:19 +02:00
|
|
|
//#region Construct query
|
2018-11-12 18:17:59 +02:00
|
|
|
const sort = { } as any;
|
2017-11-14 01:21:19 +02:00
|
|
|
|
2019-01-08 14:02:00 +02:00
|
|
|
const visibleQuery = me == null ? [{
|
2019-01-21 14:51:58 +02:00
|
|
|
visibility: { $in: ['public', 'home'] }
|
2019-01-08 14:02:00 +02:00
|
|
|
}] : [{
|
2019-01-21 14:51:58 +02:00
|
|
|
visibility: {
|
|
|
|
$in: isFollowing ? ['public', 'home', 'followers'] : ['public', 'home']
|
|
|
|
}
|
2019-01-08 14:02:00 +02:00
|
|
|
}, {
|
|
|
|
// myself (for specified/private)
|
|
|
|
userId: me._id
|
|
|
|
}, {
|
|
|
|
// to me (for specified)
|
|
|
|
visibleUserIds: { $in: [ me._id ] }
|
|
|
|
}];
|
|
|
|
|
2016-12-29 00:49:51 +02:00
|
|
|
const query = {
|
2018-12-26 16:11:51 +02:00
|
|
|
$and: [ {} ],
|
2018-10-11 23:10:40 +03:00
|
|
|
deletedAt: null,
|
2019-01-08 14:02:00 +02:00
|
|
|
userId: user._id,
|
|
|
|
$or: visibleQuery
|
2017-03-03 00:47:14 +02:00
|
|
|
} as any;
|
2017-11-14 01:21:19 +02:00
|
|
|
|
2018-09-05 17:55:51 +03:00
|
|
|
if (ps.sinceId) {
|
2016-12-29 00:49:51 +02:00
|
|
|
sort._id = 1;
|
|
|
|
query._id = {
|
2018-09-05 17:55:51 +03:00
|
|
|
$gt: ps.sinceId
|
2016-12-29 00:49:51 +02:00
|
|
|
};
|
2018-09-05 17:55:51 +03:00
|
|
|
} else if (ps.untilId) {
|
2018-11-12 18:17:59 +02:00
|
|
|
sort._id = -1;
|
2016-12-29 00:49:51 +02:00
|
|
|
query._id = {
|
2018-09-05 17:55:51 +03:00
|
|
|
$lt: ps.untilId
|
2016-12-29 00:49:51 +02:00
|
|
|
};
|
2018-09-05 17:55:51 +03:00
|
|
|
} else if (ps.sinceDate) {
|
2018-11-12 18:17:59 +02:00
|
|
|
sort.createdAt = 1;
|
2018-03-29 08:48:47 +03:00
|
|
|
query.createdAt = {
|
2018-09-05 17:55:51 +03:00
|
|
|
$gt: new Date(ps.sinceDate)
|
2017-11-14 01:21:19 +02:00
|
|
|
};
|
2018-09-05 17:55:51 +03:00
|
|
|
} else if (ps.untilDate) {
|
2018-11-12 18:17:59 +02:00
|
|
|
sort.createdAt = -1;
|
2018-03-29 08:48:47 +03:00
|
|
|
query.createdAt = {
|
2018-09-05 17:55:51 +03:00
|
|
|
$lt: new Date(ps.untilDate)
|
2017-11-14 01:21:19 +02:00
|
|
|
};
|
2018-11-14 13:18:47 +02:00
|
|
|
} else {
|
|
|
|
sort._id = -1;
|
2016-12-29 00:49:51 +02:00
|
|
|
}
|
|
|
|
|
2018-09-05 17:55:51 +03:00
|
|
|
if (!ps.includeReplies) {
|
2018-03-29 08:48:47 +03:00
|
|
|
query.replyId = null;
|
2016-12-29 00:49:51 +02:00
|
|
|
}
|
|
|
|
|
2018-12-26 16:11:51 +02:00
|
|
|
if (ps.includeMyRenotes === false) {
|
|
|
|
query.$and.push({
|
|
|
|
$or: [{
|
|
|
|
userId: { $ne: user._id }
|
|
|
|
}, {
|
|
|
|
renoteId: null
|
|
|
|
}, {
|
|
|
|
text: { $ne: null }
|
|
|
|
}, {
|
|
|
|
fileIds: { $ne: [] }
|
|
|
|
}, {
|
|
|
|
poll: { $ne: null }
|
|
|
|
}]
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-09-05 17:55:51 +03:00
|
|
|
const withFiles = ps.withFiles != null ? ps.withFiles : ps.mediaOnly;
|
|
|
|
|
2018-09-05 13:32:46 +03:00
|
|
|
if (withFiles) {
|
|
|
|
query.fileIds = {
|
2016-12-29 00:49:51 +02:00
|
|
|
$exists: true,
|
2018-04-11 11:42:56 +03:00
|
|
|
$ne: []
|
2016-12-29 00:49:51 +02:00
|
|
|
};
|
|
|
|
}
|
2018-10-19 03:20:11 +03:00
|
|
|
|
|
|
|
if (ps.fileType) {
|
|
|
|
query.fileIds = { $exists: true, $ne: [] };
|
|
|
|
|
|
|
|
query['_files.contentType'] = {
|
|
|
|
$in: ps.fileType
|
|
|
|
};
|
2019-01-11 01:10:39 +02:00
|
|
|
|
|
|
|
if (ps.excludeNsfw) {
|
|
|
|
query['_files.metadata.isSensitive'] = {
|
|
|
|
$ne: true
|
|
|
|
};
|
|
|
|
}
|
2018-10-19 03:20:11 +03:00
|
|
|
}
|
2017-11-14 01:21:19 +02:00
|
|
|
//#endregion
|
2016-12-29 00:49:51 +02:00
|
|
|
|
|
|
|
// Issue query
|
2018-04-07 20:30:37 +03:00
|
|
|
const notes = await Note
|
2017-01-17 04:11:22 +02:00
|
|
|
.find(query, {
|
2018-09-05 17:55:51 +03:00
|
|
|
limit: ps.limit,
|
2016-12-29 00:49:51 +02:00
|
|
|
sort: sort
|
2017-01-17 04:11:22 +02:00
|
|
|
});
|
2016-12-29 00:49:51 +02:00
|
|
|
|
|
|
|
// Serialize
|
2018-10-03 18:39:11 +03:00
|
|
|
res(await packMany(notes, me));
|
2018-11-02 06:47:44 +02:00
|
|
|
}));
|