mirror of
https://gitlab.com/soapbox-pub/ditto.git
synced 2025-12-06 11:29:46 +00:00
Trending statuses first iteration
This commit is contained in:
parent
1c9dbd070e
commit
5da5848ca6
2 changed files with 60 additions and 7 deletions
|
|
@ -74,7 +74,7 @@ import {
|
||||||
homeTimelineController,
|
homeTimelineController,
|
||||||
publicTimelineController,
|
publicTimelineController,
|
||||||
} from '@/controllers/api/timelines.ts';
|
} from '@/controllers/api/timelines.ts';
|
||||||
import { trendingTagsController } from '@/controllers/api/trends.ts';
|
import { trendingStatusesController, trendingTagsController } from '@/controllers/api/trends.ts';
|
||||||
import { indexController } from '@/controllers/site.ts';
|
import { indexController } from '@/controllers/site.ts';
|
||||||
import { nodeInfoController, nodeInfoSchemaController } from '@/controllers/well-known/nodeinfo.ts';
|
import { nodeInfoController, nodeInfoSchemaController } from '@/controllers/well-known/nodeinfo.ts';
|
||||||
import { nostrController } from '@/controllers/well-known/nostr.ts';
|
import { nostrController } from '@/controllers/well-known/nostr.ts';
|
||||||
|
|
@ -194,6 +194,7 @@ app.get('/api/v2/search', searchController);
|
||||||
|
|
||||||
app.get('/api/pleroma/frontend_configurations', frontendConfigController);
|
app.get('/api/pleroma/frontend_configurations', frontendConfigController);
|
||||||
|
|
||||||
|
app.get('/api/v1/trends/statuses', trendingStatusesController);
|
||||||
app.get('/api/v1/trends/tags', trendingTagsController);
|
app.get('/api/v1/trends/tags', trendingTagsController);
|
||||||
app.get('/api/v1/trends', trendingTagsController);
|
app.get('/api/v1/trends', trendingTagsController);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,29 +1,35 @@
|
||||||
|
import { NostrEvent } from '@nostrify/nostrify';
|
||||||
|
import { sql } from 'kysely';
|
||||||
import { z } from 'zod';
|
import { z } from 'zod';
|
||||||
|
|
||||||
import { type AppController } from '@/app.ts';
|
import { type AppController } from '@/app.ts';
|
||||||
import { Conf } from '@/config.ts';
|
import { Conf } from '@/config.ts';
|
||||||
|
import { DittoDB } from '@/db/DittoDB.ts';
|
||||||
|
import { hydrateEvents } from '@/storages/hydrate.ts';
|
||||||
|
import { Storages } from '@/storages.ts';
|
||||||
import { Time } from '@/utils.ts';
|
import { Time } from '@/utils.ts';
|
||||||
import { stripTime } from '@/utils/time.ts';
|
import { stripTime } from '@/utils/time.ts';
|
||||||
|
import { renderStatus } from '@/views/mastodon/statuses.ts';
|
||||||
import { TrendsWorker } from '@/workers/trends.ts';
|
import { TrendsWorker } from '@/workers/trends.ts';
|
||||||
|
|
||||||
await TrendsWorker.open('data/trends.sqlite3');
|
await TrendsWorker.open('data/trends.sqlite3');
|
||||||
|
|
||||||
const limitSchema = z.coerce.number().catch(10).transform((value) => Math.min(Math.max(value, 0), 20));
|
const limitSchema = z.coerce.number().catch(10).transform((value) => Math.min(Math.max(value, 0), 20));
|
||||||
|
|
||||||
let cache = getTrends();
|
let trendingHashtagsCache = getTrendingHashtags();
|
||||||
|
|
||||||
Deno.cron('update trends cache', { minute: { every: 15 } }, async () => {
|
Deno.cron('update trends cache', { minute: { every: 15 } }, async () => {
|
||||||
const trends = await getTrends();
|
const trends = await getTrendingHashtags();
|
||||||
cache = Promise.resolve(trends);
|
trendingHashtagsCache = Promise.resolve(trends);
|
||||||
});
|
});
|
||||||
|
|
||||||
const trendingTagsController: AppController = async (c) => {
|
const trendingTagsController: AppController = async (c) => {
|
||||||
const limit = limitSchema.parse(c.req.query('limit'));
|
const limit = limitSchema.parse(c.req.query('limit'));
|
||||||
const trends = await cache;
|
const trends = await trendingHashtagsCache;
|
||||||
return c.json(trends.slice(0, limit));
|
return c.json(trends.slice(0, limit));
|
||||||
};
|
};
|
||||||
|
|
||||||
async function getTrends() {
|
async function getTrendingHashtags() {
|
||||||
const now = new Date();
|
const now = new Date();
|
||||||
const yesterday = new Date(now.getTime() - Time.days(1));
|
const yesterday = new Date(now.getTime() - Time.days(1));
|
||||||
const lastWeek = new Date(now.getTime() - Time.days(7));
|
const lastWeek = new Date(now.getTime() - Time.days(7));
|
||||||
|
|
@ -62,4 +68,50 @@ async function getTrends() {
|
||||||
})));
|
})));
|
||||||
}
|
}
|
||||||
|
|
||||||
export { trendingTagsController };
|
let trendingNotesCache = getTrendingNotes();
|
||||||
|
|
||||||
|
Deno.cron('update trending notes cache', { minute: { every: 15 } }, async () => {
|
||||||
|
const events = await getTrendingNotes();
|
||||||
|
trendingNotesCache = Promise.resolve(events);
|
||||||
|
});
|
||||||
|
|
||||||
|
const trendingStatusesController: AppController = async (c) => {
|
||||||
|
const store = await Storages.db();
|
||||||
|
const limit = limitSchema.parse(c.req.query('limit'));
|
||||||
|
|
||||||
|
const events = await trendingNotesCache
|
||||||
|
.then((events) => events.slice(0, limit))
|
||||||
|
.then((events) => hydrateEvents({ events, store }));
|
||||||
|
|
||||||
|
const statuses = await Promise.all(
|
||||||
|
events.map((event) => renderStatus(event, {})),
|
||||||
|
);
|
||||||
|
|
||||||
|
return c.json(statuses.filter(Boolean));
|
||||||
|
};
|
||||||
|
|
||||||
|
async function getTrendingNotes(): Promise<NostrEvent[]> {
|
||||||
|
const store = await Storages.db();
|
||||||
|
const kysely = await DittoDB.getInstance();
|
||||||
|
const since = Math.floor((Date.now() - Time.days(1)) / 1000);
|
||||||
|
|
||||||
|
const tags = await kysely
|
||||||
|
.selectFrom('nostr_tags')
|
||||||
|
.select('nostr_tags.value')
|
||||||
|
.leftJoin('nostr_events', 'nostr_events.id', 'nostr_tags.event_id')
|
||||||
|
.where('nostr_events.kind', 'in', [1, 6, 7])
|
||||||
|
.where('nostr_events.created_at', '>', since)
|
||||||
|
.where('nostr_tags.name', '=', 'e')
|
||||||
|
.groupBy('nostr_tags.value')
|
||||||
|
.orderBy(
|
||||||
|
sql`SUM(case when nostr_events.kind = 6 then 2 else 0 end) + SUM(case when nostr_events.kind = 1 or nostr_events.kind = 7 then 1 else 0 end)`,
|
||||||
|
'desc',
|
||||||
|
)
|
||||||
|
.limit(20)
|
||||||
|
.execute();
|
||||||
|
|
||||||
|
const ids = tags.map(({ value }) => value);
|
||||||
|
return store.query([{ kinds: [1], ids, limit: ids.length }]);
|
||||||
|
}
|
||||||
|
|
||||||
|
export { trendingStatusesController, trendingTagsController };
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue