Fixed 267U.pre2
This commit is contained in:
@@ -0,0 +1,95 @@
|
||||
import { Brackets } from "typeorm";
|
||||
import { MessagingMessages, Mutings, UserGroupJoinings } from "../../../../models/index.js";
|
||||
import define from "../../define.js";
|
||||
export const meta = {
|
||||
tags: [
|
||||
"messaging"
|
||||
],
|
||||
requireCredential: true,
|
||||
kind: "read:messaging",
|
||||
res: {
|
||||
type: "array",
|
||||
optional: false,
|
||||
nullable: false,
|
||||
items: {
|
||||
type: "object",
|
||||
optional: false,
|
||||
nullable: false,
|
||||
ref: "MessagingMessage"
|
||||
}
|
||||
}
|
||||
};
|
||||
export const paramDef = {
|
||||
type: "object",
|
||||
properties: {
|
||||
limit: {
|
||||
type: "integer",
|
||||
minimum: 1,
|
||||
maximum: 100,
|
||||
default: 10
|
||||
},
|
||||
group: {
|
||||
type: "boolean",
|
||||
default: false
|
||||
}
|
||||
},
|
||||
required: []
|
||||
};
|
||||
export default define(meta, paramDef, async (ps, user)=>{
|
||||
const mute = await Mutings.findBy({
|
||||
muterId: user.id
|
||||
});
|
||||
const groups = ps.group ? await UserGroupJoinings.findBy({
|
||||
userId: user.id
|
||||
}).then((xs)=>xs.map((x)=>x.userGroupId)) : [];
|
||||
if (ps.group && groups.length === 0) {
|
||||
return [];
|
||||
}
|
||||
const history = [];
|
||||
for(let i = 0; i < ps.limit; i++){
|
||||
const found = ps.group ? history.map((m)=>m.groupId) : history.map((m)=>m.userId === user.id ? m.recipientId : m.userId);
|
||||
const query = MessagingMessages.createQueryBuilder("message").orderBy("message.createdAt", "DESC");
|
||||
if (ps.group) {
|
||||
query.where("message.groupId IN (:...groups)", {
|
||||
groups: groups
|
||||
});
|
||||
if (found.length > 0) {
|
||||
query.andWhere("message.groupId NOT IN (:...found)", {
|
||||
found: found
|
||||
});
|
||||
}
|
||||
} else {
|
||||
query.where(new Brackets((qb)=>{
|
||||
qb.where("message.userId = :userId", {
|
||||
userId: user.id
|
||||
}).orWhere("message.recipientId = :userId", {
|
||||
userId: user.id
|
||||
});
|
||||
}));
|
||||
query.andWhere("message.groupId IS NULL");
|
||||
if (found.length > 0) {
|
||||
query.andWhere("message.userId NOT IN (:...found)", {
|
||||
found: found
|
||||
});
|
||||
query.andWhere("message.recipientId NOT IN (:...found)", {
|
||||
found: found
|
||||
});
|
||||
}
|
||||
if (mute.length > 0) {
|
||||
query.andWhere("message.userId NOT IN (:...mute)", {
|
||||
mute: mute.map((m)=>m.muteeId)
|
||||
});
|
||||
query.andWhere("message.recipientId NOT IN (:...mute)", {
|
||||
mute: mute.map((m)=>m.muteeId)
|
||||
});
|
||||
}
|
||||
}
|
||||
const message = await query.getOne();
|
||||
if (message) {
|
||||
history.push(message);
|
||||
} else {
|
||||
break;
|
||||
}
|
||||
}
|
||||
return await Promise.all(history.map((h)=>MessagingMessages.pack(h.id, user)));
|
||||
});
|
||||
Reference in New Issue
Block a user