-
Notifications
You must be signed in to change notification settings - Fork 3k
Track social engagement for partner platforms #3542
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
devkiran
wants to merge
36
commits into
main
Choose a base branch
from
partner-historical-social-engagement
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 31 commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
e7198ad
Add social engagement tracking for partner platforms
devkiran 10bd7bd
Update backfill-twitter-platform-ids.ts
devkiran 97a4731
Update route.ts
devkiran 3b6d4f7
Merge branch 'main' into partner-historical-social-engagement
devkiran 527a96b
Add per-post engagement tracking and median baselines for fraud detec…
devkiran 973fd98
Consolidate X platform adapter, client, and schema into single file
devkiran a1467d8
Update route.ts
devkiran 692e9ac
Improve X API error handling with structured error typing
devkiran de4182c
Move social content fetching into per-platform adapters
devkiran 4554d3a
Add bounty submission fraud detection and risk fields
devkiran 037e15f
Move social profile fetching into per-platform adapters
devkiran 7da7da1
update the cron path
devkiran f59f266
Update route.ts
devkiran 1d4fa8c
Update get-social-content.ts
devkiran ef6a48f
Move getSocialProfile and getSocialContent to lib/social-platforms
devkiran a28546a
Update get-social-profile.ts
devkiran da58a78
Fix code review issues: batch upserts, type safety, pruning, and cleanup
devkiran d139b4b
Update route.ts
devkiran b6af9be
Update route.ts
devkiran 4da7b86
Update x-adapter.ts
devkiran f5badeb
cleanup
devkiran 1119560
Update backfill-twitter-platform-ids.ts
devkiran 4abf034
Update route.ts
devkiran c5ba400
rename the types
devkiran 1f39948
move to /api
devkiran f69935a
Integrate fraud detection into all bounty submission flows
devkiran 34d4834
remove noBaselineHistory
devkiran 7736164
Update detect-bounty-submission-fraud.ts
devkiran 63c2f2f
format
devkiran c9077b4
Merge branch 'main' into partner-historical-social-engagement
devkiran 0ef3682
Bounty social sync: verified platforms only, engagement overlap windo…
devkiran def5ce5
Split YouTube and X adapters into schemas/client; add YouTube queue-s…
devkiran ad649af
Replace $transaction with Promise.allSettled to avoid Vitess timeout
devkiran 224673f
Fix X adapter comments mapping and paginate queue-sync
devkiran 1f7d0a0
Update route.ts
devkiran 875bcbc
format
devkiran File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
45 changes: 45 additions & 0 deletions
45
apps/web/app/(ee)/api/cron/queue-sync-social-engagement/route.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,45 @@ | ||
| import { enqueueBatchJobs } from "@/lib/cron/enqueue-batch-jobs"; | ||
| import { withCron } from "@/lib/cron/with-cron"; | ||
| import { prisma } from "@dub/prisma"; | ||
| import { APP_DOMAIN_WITH_NGROK } from "@dub/utils"; | ||
| import { logAndRespond } from "../utils"; | ||
|
|
||
| export const dynamic = "force-dynamic"; | ||
|
|
||
| // GET /api/cron/queue-sync-social-engagement | ||
| // Runs daily at 07:00 UTC. Queues one sync job per eligible partner platform. | ||
| export const GET = withCron(async () => { | ||
| const partnerPlatforms = await prisma.partnerPlatform.findMany({ | ||
| where: { | ||
| verifiedAt: { | ||
| not: null, | ||
| }, | ||
| platformId: { | ||
| not: null, | ||
| }, | ||
| type: { | ||
| in: ["twitter"], | ||
| }, | ||
| }, | ||
| select: { | ||
| id: true, | ||
| }, | ||
| }); | ||
|
|
||
| if (partnerPlatforms.length === 0) { | ||
| return logAndRespond("No eligible partner platforms for engagement sync."); | ||
| } | ||
|
|
||
| const jobs = await enqueueBatchJobs( | ||
| partnerPlatforms.map((pp) => ({ | ||
| queueName: "sync-social-engagement", | ||
| url: `${APP_DOMAIN_WITH_NGROK}/api/cron/sync-social-engagement`, | ||
| deduplicationId: pp.id, | ||
| body: { | ||
| partnerPlatformId: pp.id, | ||
| }, | ||
| })), | ||
| ); | ||
|
coderabbitai[bot] marked this conversation as resolved.
Outdated
|
||
|
|
||
| return logAndRespond(`Queued ${jobs.length} social engagement sync jobs.`); | ||
| }); | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.