mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced 2024-11-22 08:53:48 +01:00
[mastodon-client] GET /timelines/list/:listId
This commit is contained in:
parent
f388eb2135
commit
a3722d2dce
@ -7,6 +7,7 @@ import authenticate from "@/server/api/authenticate.js";
|
|||||||
import { TimelineHelpers } from "@/server/api/mastodon/helpers/timeline.js";
|
import { TimelineHelpers } from "@/server/api/mastodon/helpers/timeline.js";
|
||||||
import { NoteConverter } from "@/server/api/mastodon/converters/note.js";
|
import { NoteConverter } from "@/server/api/mastodon/converters/note.js";
|
||||||
import { UserHelpers } from "@/server/api/mastodon/helpers/user.js";
|
import { UserHelpers } from "@/server/api/mastodon/helpers/user.js";
|
||||||
|
import { UserLists } from "@/models/index.js";
|
||||||
|
|
||||||
export function limitToInt(q: ParsedUrlQuery, additional: string[] = []) {
|
export function limitToInt(q: ParsedUrlQuery, additional: string[] = []) {
|
||||||
let object: any = q;
|
let object: any = q;
|
||||||
@ -131,15 +132,30 @@ export function setupEndpointsTimeline(router: Router): void {
|
|||||||
router.get<{ Params: { listId: string } }>(
|
router.get<{ Params: { listId: string } }>(
|
||||||
"/v1/timelines/list/:listId",
|
"/v1/timelines/list/:listId",
|
||||||
async (ctx, reply) => {
|
async (ctx, reply) => {
|
||||||
const BASE_URL = `${ctx.protocol}://${ctx.hostname}`;
|
|
||||||
const accessTokens = ctx.headers.authorization;
|
|
||||||
const client = getClient(BASE_URL, accessTokens);
|
|
||||||
try {
|
try {
|
||||||
const data = await client.getListTimeline(
|
const auth = await authenticate(ctx.headers.authorization, null);
|
||||||
convertId(ctx.params.listId, IdType.IceshrimpId),
|
const user = auth[0] ?? undefined;
|
||||||
convertPaginationArgsIds(limitToInt(ctx.query)),
|
|
||||||
);
|
if (!user) {
|
||||||
ctx.body = data.data.map((status) => convertStatus(status));
|
ctx.status = 401;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const listId = convertId(ctx.params.listId, IdType.IceshrimpId);
|
||||||
|
const list = await UserLists.findOneBy({userId: user.id, id: listId});
|
||||||
|
|
||||||
|
if (!list) {
|
||||||
|
ctx.status = 404;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const args = normalizeUrlQuery(convertPaginationArgsIds(limitToInt(ctx.query)));
|
||||||
|
const cache = UserHelpers.getFreshAccountCache();
|
||||||
|
const tl = await TimelineHelpers.getListTimeline(user, list, args.max_id, args.since_id, args.min_id, args.limit)
|
||||||
|
.then(n => NoteConverter.encodeMany(n, user, cache));
|
||||||
|
|
||||||
|
ctx.body = tl.map(s => convertStatus(s));
|
||||||
|
|
||||||
} catch (e: any) {
|
} catch (e: any) {
|
||||||
console.error(e);
|
console.error(e);
|
||||||
console.error(e.response.data);
|
console.error(e.response.data);
|
||||||
|
@ -31,7 +31,7 @@ export class ListHelpers {
|
|||||||
maxId,
|
maxId,
|
||||||
minId
|
minId
|
||||||
)
|
)
|
||||||
.andWhere("member.userListId = :listId", {listId: id})
|
.andWhere("member.userListId = :listId", {listId: list.id})
|
||||||
.innerJoinAndSelect("member.user", "user");
|
.innerJoinAndSelect("member.user", "user");
|
||||||
|
|
||||||
return query.take(limit).getMany().then(async p => {
|
return query.take(limit).getMany().then(async p => {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import { Note } from "@/models/entities/note.js";
|
import { Note } from "@/models/entities/note.js";
|
||||||
import { ILocalUser } from "@/models/entities/user.js";
|
import { ILocalUser } from "@/models/entities/user.js";
|
||||||
import { Followings, Notes } from "@/models/index.js";
|
import { Followings, Notes, UserListJoinings } from "@/models/index.js";
|
||||||
import { Brackets } from "typeorm";
|
import { Brackets } from "typeorm";
|
||||||
import { generateChannelQuery } from "@/server/api/common/generate-channel-query.js";
|
import { generateChannelQuery } from "@/server/api/common/generate-channel-query.js";
|
||||||
import { generateRepliesQuery } from "@/server/api/common/generate-replies-query.js";
|
import { generateRepliesQuery } from "@/server/api/common/generate-replies-query.js";
|
||||||
@ -13,6 +13,7 @@ import { fetchMeta } from "@/misc/fetch-meta.js";
|
|||||||
import { ApiError } from "@/server/api/error.js";
|
import { ApiError } from "@/server/api/error.js";
|
||||||
import { meta } from "@/server/api/endpoints/notes/global-timeline.js";
|
import { meta } from "@/server/api/endpoints/notes/global-timeline.js";
|
||||||
import { PaginationHelpers } from "@/server/api/mastodon/helpers/pagination.js";
|
import { PaginationHelpers } from "@/server/api/mastodon/helpers/pagination.js";
|
||||||
|
import { UserList } from "@/models/entities/user-list.js";
|
||||||
|
|
||||||
export class TimelineHelpers {
|
export class TimelineHelpers {
|
||||||
public static async getHomeTimeline(user: ILocalUser, maxId: string | undefined, sinceId: string | undefined, minId: string | undefined, limit: number = 20): Promise<Note[]> {
|
public static async getHomeTimeline(user: ILocalUser, maxId: string | undefined, sinceId: string | undefined, minId: string | undefined, limit: number = 20): Promise<Note[]> {
|
||||||
@ -89,4 +90,28 @@ export class TimelineHelpers {
|
|||||||
|
|
||||||
return PaginationHelpers.execQuery(query, limit, minId !== undefined);
|
return PaginationHelpers.execQuery(query, limit, minId !== undefined);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static async getListTimeline(user: ILocalUser, list: UserList, maxId: string | undefined, sinceId: string | undefined, minId: string | undefined, limit: number = 20): Promise<Note[]> {
|
||||||
|
if (limit > 40) limit = 40;
|
||||||
|
if (user.id != list.userId) throw new Error("List is not owned by user");
|
||||||
|
|
||||||
|
const listQuery = UserListJoinings.createQueryBuilder("member")
|
||||||
|
.select("member.userId", 'userId')
|
||||||
|
.where("member.userListId = :listId");
|
||||||
|
|
||||||
|
const query = PaginationHelpers.makePaginationQuery(
|
||||||
|
Notes.createQueryBuilder("note"),
|
||||||
|
sinceId,
|
||||||
|
maxId,
|
||||||
|
minId
|
||||||
|
)
|
||||||
|
.andWhere(`note.userId IN (${listQuery.getQuery()})`)
|
||||||
|
.andWhere("note.visibility != 'specified'")
|
||||||
|
.leftJoinAndSelect("note.renote", "renote")
|
||||||
|
.setParameters({listId: list.id});
|
||||||
|
|
||||||
|
generateVisibilityQuery(query, user);
|
||||||
|
|
||||||
|
return PaginationHelpers.execQuery(query, limit, minId !== undefined);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user