2017-03-25 08:43:55 +01:00
|
|
|
import $ from 'cafy';
|
2021-08-19 14:55:45 +02:00
|
|
|
import define from '../../../define';
|
|
|
|
import { Polls, Mutings, Notes, PollVotes } from '@/models/index';
|
2019-04-07 14:50:36 +02:00
|
|
|
import { Brackets, In } from 'typeorm';
|
2017-03-25 08:43:55 +01:00
|
|
|
|
2018-07-16 21:36:44 +02:00
|
|
|
export const meta = {
|
2019-02-23 03:20:58 +01:00
|
|
|
tags: ['notes'],
|
|
|
|
|
2020-02-15 13:33:32 +01:00
|
|
|
requireCredential: true as const,
|
2018-11-02 04:49:08 +01:00
|
|
|
|
|
|
|
params: {
|
|
|
|
limit: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.num.range(1, 100),
|
2021-12-09 15:58:30 +01:00
|
|
|
default: 10,
|
2018-11-02 04:49:08 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
offset: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.num.min(0),
|
2021-12-09 15:58:30 +01:00
|
|
|
default: 0,
|
|
|
|
},
|
2021-03-06 14:34:11 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
|
|
|
type: 'array' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
items: {
|
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2021-12-09 15:58:30 +01:00
|
|
|
ref: 'Note',
|
|
|
|
},
|
|
|
|
},
|
2018-07-16 21:36:44 +02:00
|
|
|
};
|
|
|
|
|
2022-01-02 18:12:50 +01:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2019-02-22 03:46:58 +01:00
|
|
|
export default define(meta, async (ps, user) => {
|
2019-04-07 14:50:36 +02:00
|
|
|
const query = Polls.createQueryBuilder('poll')
|
|
|
|
.where('poll.userHost IS NULL')
|
|
|
|
.andWhere(`poll.userId != :meId`, { meId: user.id })
|
|
|
|
.andWhere(`poll.noteVisibility = 'public'`)
|
|
|
|
.andWhere(new Brackets(qb => { qb
|
|
|
|
.where('poll.expiresAt IS NULL')
|
|
|
|
.orWhere('poll.expiresAt > :now', { now: new Date() });
|
|
|
|
}));
|
2017-03-25 08:43:55 +01:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
//#region exclude arleady voted polls
|
|
|
|
const votedQuery = PollVotes.createQueryBuilder('vote')
|
|
|
|
.select('vote.noteId')
|
|
|
|
.where('vote.userId = :meId', { meId: user.id });
|
2017-03-25 08:43:55 +01:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
query
|
|
|
|
.andWhere(`poll.noteId NOT IN (${ votedQuery.getQuery() })`);
|
2019-01-31 15:14:45 +01:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
query.setParameters(votedQuery.getParameters());
|
|
|
|
//#endregion
|
|
|
|
|
|
|
|
//#region mute
|
|
|
|
const mutingQuery = Mutings.createQueryBuilder('muting')
|
|
|
|
.select('muting.muteeId')
|
|
|
|
.where('muting.muterId = :muterId', { muterId: user.id });
|
|
|
|
|
|
|
|
query
|
|
|
|
.andWhere(`poll.userId NOT IN (${ mutingQuery.getQuery() })`);
|
|
|
|
|
|
|
|
query.setParameters(mutingQuery.getParameters());
|
|
|
|
//#endregion
|
|
|
|
|
2019-04-12 18:43:22 +02:00
|
|
|
const polls = await query.take(ps.limit!).skip(ps.offset).getMany();
|
2019-04-07 14:50:36 +02:00
|
|
|
|
|
|
|
if (polls.length === 0) return [];
|
|
|
|
|
|
|
|
const notes = await Notes.find({
|
2021-12-09 15:58:30 +01:00
|
|
|
id: In(polls.map(poll => poll.noteId)),
|
2019-02-22 03:46:58 +01:00
|
|
|
});
|
2017-03-25 08:43:55 +01:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
return await Notes.packMany(notes, user, {
|
2021-12-09 15:58:30 +01:00
|
|
|
detail: true,
|
2019-04-07 14:50:36 +02:00
|
|
|
});
|
2019-02-22 03:46:58 +01:00
|
|
|
});
|