mirror of
https://gitlab.com/soapbox-pub/ditto.git
synced 2025-12-06 11:29:46 +00:00
Merge branch 'local-timeline' into 'develop'
Local timeline See merge request soapbox-pub/ditto!15
This commit is contained in:
commit
1c1b6a80bf
6 changed files with 20 additions and 6 deletions
|
|
@ -29,6 +29,7 @@ function getPool(): Pool {
|
||||||
|
|
||||||
/** Get events from a NIP-01 filter. */
|
/** Get events from a NIP-01 filter. */
|
||||||
function getFilters<K extends number>(filters: Filter<K>[], opts: GetFiltersOpts = {}): Promise<Event<K>[]> {
|
function getFilters<K extends number>(filters: Filter<K>[], opts: GetFiltersOpts = {}): Promise<Event<K>[]> {
|
||||||
|
if (!filters.length) return Promise.resolve([]);
|
||||||
return new Promise((resolve) => {
|
return new Promise((resolve) => {
|
||||||
let tid: number;
|
let tid: number;
|
||||||
const results: Event[] = [];
|
const results: Event[] = [];
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,6 @@
|
||||||
|
import { z } from '@/deps.ts';
|
||||||
import { getFeed, getPublicFeed } from '@/queries.ts';
|
import { getFeed, getPublicFeed } from '@/queries.ts';
|
||||||
|
import { booleanParamSchema } from '@/schema.ts';
|
||||||
import { toStatus } from '@/transformers/nostr-to-mastoapi.ts';
|
import { toStatus } from '@/transformers/nostr-to-mastoapi.ts';
|
||||||
import { buildLinkHeader, paginationSchema } from '@/utils.ts';
|
import { buildLinkHeader, paginationSchema } from '@/utils.ts';
|
||||||
|
|
||||||
|
|
@ -19,10 +21,15 @@ const homeController: AppController = async (c) => {
|
||||||
return c.json(statuses, 200, link ? { link } : undefined);
|
return c.json(statuses, 200, link ? { link } : undefined);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const publicQuerySchema = z.object({
|
||||||
|
local: booleanParamSchema.catch(false),
|
||||||
|
});
|
||||||
|
|
||||||
const publicController: AppController = async (c) => {
|
const publicController: AppController = async (c) => {
|
||||||
const params = paginationSchema.parse(c.req.query());
|
const params = paginationSchema.parse(c.req.query());
|
||||||
|
const { local } = publicQuerySchema.parse(c.req.query());
|
||||||
|
|
||||||
const events = await getPublicFeed(params);
|
const events = await getPublicFeed(params, local);
|
||||||
if (!events.length) {
|
if (!events.length) {
|
||||||
return c.json([]);
|
return c.json([]);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -64,7 +64,9 @@ function getFilterQuery(filter: DittoFilter) {
|
||||||
])
|
])
|
||||||
.orderBy('events.created_at', 'desc');
|
.orderBy('events.created_at', 'desc');
|
||||||
|
|
||||||
for (const key of Object.keys(filter)) {
|
for (const [key, value] of Object.entries(filter)) {
|
||||||
|
if (value === undefined) continue;
|
||||||
|
|
||||||
switch (key as keyof DittoFilter) {
|
switch (key as keyof DittoFilter) {
|
||||||
case 'ids':
|
case 'ids':
|
||||||
query = query.where('events.id', 'in', filter.ids!);
|
query = query.where('events.id', 'in', filter.ids!);
|
||||||
|
|
@ -108,6 +110,7 @@ async function getFilters<K extends number>(
|
||||||
filters: DittoFilter<K>[],
|
filters: DittoFilter<K>[],
|
||||||
opts: GetFiltersOpts = {},
|
opts: GetFiltersOpts = {},
|
||||||
): Promise<Event<K>[]> {
|
): Promise<Event<K>[]> {
|
||||||
|
if (!filters.length) return Promise.resolve([]);
|
||||||
let query = filters.map(getFilterQuery).reduce((acc, curr) => acc.union(curr));
|
let query = filters.map(getFilterQuery).reduce((acc, curr) => acc.union(curr));
|
||||||
|
|
||||||
if (typeof opts.limit === 'number') {
|
if (typeof opts.limit === 'number') {
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@ async function getFilters<K extends number>(
|
||||||
opts?: GetFiltersOpts,
|
opts?: GetFiltersOpts,
|
||||||
): Promise<Event<K>[]> {
|
): Promise<Event<K>[]> {
|
||||||
const results = await Promise.allSettled([
|
const results = await Promise.allSettled([
|
||||||
client.getFilters(filters, opts),
|
client.getFilters(filters.filter((filter) => !filter.local), opts),
|
||||||
eventsDB.getFilters(filters, opts),
|
eventsDB.getFilters(filters, opts),
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -57,8 +57,8 @@ async function getFeed(pubkey: string, params: PaginationParams): Promise<Event<
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Get a feed of all known text notes. */
|
/** Get a feed of all known text notes. */
|
||||||
function getPublicFeed(params: PaginationParams): Promise<Event<1>[]> {
|
function getPublicFeed(params: PaginationParams, local: boolean): Promise<Event<1>[]> {
|
||||||
return mixer.getFilters([{ kinds: [1], ...params }], { timeout: 5000 });
|
return mixer.getFilters([{ kinds: [1], local, ...params }], { timeout: 5000 });
|
||||||
}
|
}
|
||||||
|
|
||||||
async function getAncestors(event: Event<1>, result = [] as Event<1>[]): Promise<Event<1>[]> {
|
async function getAncestors(event: Event<1>, result = [] as Event<1>[]): Promise<Event<1>[]> {
|
||||||
|
|
|
||||||
|
|
@ -42,4 +42,7 @@ const hashtagSchema = z.string().regex(/^\w{1,30}$/);
|
||||||
*/
|
*/
|
||||||
const safeUrlSchema = z.string().max(2048).url();
|
const safeUrlSchema = z.string().max(2048).url();
|
||||||
|
|
||||||
export { decode64Schema, emojiTagSchema, filteredArray, hashtagSchema, jsonSchema, safeUrlSchema };
|
/** https://github.com/colinhacks/zod/issues/1630#issuecomment-1365983831 */
|
||||||
|
const booleanParamSchema = z.enum(['true', 'false']).transform((value) => value === 'true');
|
||||||
|
|
||||||
|
export { booleanParamSchema, decode64Schema, emojiTagSchema, filteredArray, hashtagSchema, jsonSchema, safeUrlSchema };
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue