2019-04-07 14:50:36 +02:00
|
|
|
import { Brackets, In } from 'typeorm';
|
2022-06-14 11:01:23 +02:00
|
|
|
import { Polls, Mutings, Notes, PollVotes } from '@/models/index.js';
|
|
|
|
import define from '../../../define.js';
|
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'],
|
|
|
|
|
2022-01-18 14:27:10 +01:00
|
|
|
requireCredential: true,
|
2018-11-02 04:49:08 +01:00
|
|
|
|
2021-03-06 14:34:11 +01:00
|
|
|
res: {
|
2022-01-18 14:27:10 +01:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 14:34:11 +01:00
|
|
|
items: {
|
2022-01-18 14:27:10 +01:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 15:58:30 +01:00
|
|
|
ref: 'Note',
|
|
|
|
},
|
|
|
|
},
|
2022-01-18 14:27:10 +01:00
|
|
|
} as const;
|
2018-07-16 21:36:44 +02:00
|
|
|
|
2022-02-20 05:15:40 +01:00
|
|
|
export const paramDef = {
|
2022-02-19 06:05:32 +01:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
limit: { type: 'integer', minimum: 1, maximum: 100, default: 10 },
|
|
|
|
offset: { type: 'integer', default: 0 },
|
|
|
|
},
|
|
|
|
required: [],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 18:12:50 +01:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 06:05:32 +01:00
|
|
|
export default define(meta, paramDef, async (ps, user) => {
|
2019-04-07 14:50:36 +02:00
|
|
|
const query = Polls.createQueryBuilder('poll')
|
|
|
|
.where('poll.userHost IS NULL')
|
2022-06-14 11:01:23 +02:00
|
|
|
.andWhere('poll.userId != :meId', { meId: user.id })
|
|
|
|
.andWhere('poll.noteVisibility = \'public\'')
|
2019-04-07 14:50:36 +02:00
|
|
|
.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
|
|
|
|
|
2022-02-19 06:05:32 +01: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 [];
|
|
|
|
|
2022-03-26 07:34:00 +01:00
|
|
|
const notes = await Notes.findBy({
|
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
|
|
|
});
|