stacker.news/api/resolvers/rewards.js

186 lines
7.0 KiB
JavaScript
Raw Normal View History

import { amountSchema, ssValidate } from '@/lib/validate'
2023-09-26 20:15:09 +00:00
import { getItem } from './item'
import { topUsers } from './user'
backend payment optimism (#1195) * wip backend optimism * another inch * make action state transitions only happen once * another inch * almost ready for testing * use interactive txs * another inch * ready for basic testing * lint fix * inches * wip item update * get item update to work * donate and downzap * inchy inch * fix territory paid actions * wip usePaidMutation * usePaidMutation error handling * PENDING_HELD and HELD transitions, gql paidAction return types * mostly working pessimism * make sure invoice field is present in optimisticResponse * inches * show optimistic values to current me * first pass at notifications and payment status reporting * fix migration to have withdrawal hash * reverse optimism on payment failure * Revert "Optimistic updates via pending sats in item context (#1229)" This reverts commit 93713b33df9bc3701dc5a692b86a04ff64e8cfb1. * add onCompleted to usePaidMutation * onPaid and onPayError for new comments * use 'IS DISTINCT FROM' for NULL invoiceActionState columns * make usePaidMutation easier to read * enhance invoice qr * prevent actions on unpaid items * allow navigation to action's invoice * retry create item * start edit window after item is paid for * fix ux of retries from notifications * refine retries * fix optimistic downzaps * remember item updates can't be retried * store reference to action item in invoice * remove invoice modal layout shift * fix destructuring * fix zap undos * make sure ItemAct is paid in aggregate queries * dont toast on long press zap undo * fix delete and remindme bots * optimistic poll votes with retries * fix retry notifications and invoice item context * fix pessimisitic typo * item mentions and mention notifications * dont show payment retry on item popover * make bios work * refactor paidAction transitions * remove stray console.log * restore docker compose nwc settings * add new todos * persist qr modal on post submission + unify item form submission * fix post edit threshold * make bounty payments work * make job posting work * remove more store procedure usage ... document serialization concerns * dont use dynamic imports for paid action modules * inline comment denormalization * create item starts with median votes * fix potential of serialization anomalies in zaps * dont trigger notification indicator on successful paid action invoices * ignore invoiceId on territory actions and add optimistic concurrency control * begin docs for paid actions * better error toasts and fix apollo cache warnings * small documentation enhancements * improve paid action docs * optimistic concurrency control for territory updates * use satsToMsats and msatsToSats helpers * explictly type raw query template parameters * improve consistency of nested relation names * complete paid action docs * useEffect for canEdit on payment * make sure invoiceId is provided when required * don't return null when expecting array * remove buy credits * move verifyPayment to paidAction * fix comments invoicePaidAt time zone * close nwc connections once * grouped logs for paid actions * stop invoiceWaitUntilPaid if not attempting to pay * allow actionState to transition directly from HELD to PAID * make paid mutation wait until pessimistic are fully paid * change button text when form submits/pays * pulsing form submit button * ignore me in notification indicator for territory subscription * filter unpaid items from more queries * fix donation stike timing * fix pending poll vote * fix recent item notifcation padding * no default form submitting button text * don't show paying on submit button on free edits * fix territory autorenew with fee credits * reorg readme * allow jobs to be editted forever * fix image uploads * more filter fixes for aggregate views * finalize paid action invoice expirations * remove unnecessary async * keep clientside cache normal/consistent * add more detail to paid action doc * improve paid action table * remove actionType guard * fix top territories * typo api/paidAction/README.md Co-authored-by: ekzyis <ek@stacker.news> * typo components/use-paid-mutation.js Co-authored-by: ekzyis <ek@stacker.news> * Apply suggestions from code review Co-authored-by: ekzyis <ek@stacker.news> * encorporate ek feeback * more ek suggestions * fix 'cost to post' hover on items * Apply suggestions from code review Co-authored-by: ekzyis <ek@stacker.news> --------- Co-authored-by: ekzyis <ek@stacker.news>
2024-07-01 17:02:29 +00:00
import performPaidAction from '../paidAction'
import { GqlInputError } from '@/lib/error'
2022-12-08 00:04:02 +00:00
let rewardCache
2023-10-24 00:46:51 +00:00
async function updateCachedRewards (models) {
const rewards = await getActiveRewards(models)
rewardCache = { rewards, createdAt: Date.now() }
2023-10-24 00:46:51 +00:00
return rewards
}
async function getCachedActiveRewards (staleIn, models) {
if (rewardCache) {
const { rewards, createdAt } = rewardCache
2023-10-24 00:46:51 +00:00
const expired = createdAt + staleIn < Date.now()
if (expired) updateCachedRewards(models).catch(console.error)
2023-10-24 00:46:51 +00:00
return rewards // serve stale rewards
}
return await updateCachedRewards(models)
}
async function getActiveRewards (models) {
return await models.$queryRaw`
SELECT
(sum(total) / 1000)::INT as total,
date_trunc('day', (now() AT TIME ZONE 'America/Chicago') + interval '1 day') AT TIME ZONE 'America/Chicago' as time,
json_build_array(
json_build_object('name', 'donations', 'value', (sum(donations) / 1000)::INT),
json_build_object('name', 'fees', 'value', (sum(fees) / 1000)::INT),
json_build_object('name', 'boost', 'value', (sum(boost) / 1000)::INT),
json_build_object('name', 'jobs', 'value', (sum(jobs) / 1000)::INT),
json_build_object('name', 'anon''s stack', 'value', (sum(anons_stack) / 1000)::INT)
) AS sources
FROM (
(SELECT * FROM rewards_today)
UNION ALL
(SELECT * FROM
rewards(
date_trunc('hour', timezone('America/Chicago', now())),
date_trunc('hour', timezone('America/Chicago', now())), '1 hour'::INTERVAL, 'hour'))
) u`
2023-10-24 00:46:51 +00:00
}
2024-03-30 01:53:07 +00:00
async function getMonthlyRewards (when, models) {
return await models.$queryRaw`
SELECT
(sum(total) / 1000)::INT as total,
date_trunc('month', ${when?.[0]}::text::timestamp) AT TIME ZONE 'America/Chicago' as time,
json_build_array(
json_build_object('name', 'donations', 'value', (sum(donations) / 1000)::INT),
json_build_object('name', 'fees', 'value', (sum(fees) / 1000)::INT),
json_build_object('name', 'boost', 'value', (sum(boost) / 1000)::INT),
json_build_object('name', 'jobs', 'value', (sum(jobs) / 1000)::INT),
json_build_object('name', 'anon''s stack', 'value', (sum(anons_stack) / 1000)::INT)
) AS sources
FROM rewards_days
WHERE date_trunc('month', rewards_days.t) = date_trunc('month', ${when?.[0]}::text::timestamp - interval '1 month')`
}
2023-10-24 00:46:51 +00:00
async function getRewards (when, models) {
if (when) {
2024-03-30 01:53:07 +00:00
if (when.length > 1) {
throw new GqlInputError('too many dates')
2023-10-24 00:46:51 +00:00
}
when.forEach(w => {
if (isNaN(new Date(w))) {
throw new GqlInputError('invalid date')
2023-08-15 17:41:51 +00:00
}
2023-10-24 00:46:51 +00:00
})
if (new Date(when[0]) > new Date(when[when.length - 1])) {
throw new GqlInputError('bad date range')
2023-10-24 00:46:51 +00:00
}
2024-03-30 01:53:07 +00:00
if (new Date(when[0]).getTime() > new Date('2024-03-01').getTime() && new Date(when[0]).getTime() < new Date('2024-05-02').getTime()) {
// after 3/1/2024 and until 5/1/2024, we reward monthly on the 1st
2024-03-31 19:21:08 +00:00
if (new Date(when[0]).getUTCDate() !== 1) {
throw new GqlInputError('bad reward date')
2024-03-31 19:21:08 +00:00
}
2024-03-30 01:53:07 +00:00
return await getMonthlyRewards(when, models)
}
2023-10-24 00:46:51 +00:00
}
2023-08-15 17:41:51 +00:00
2023-10-24 00:46:51 +00:00
const results = await models.$queryRaw`
WITH days_cte (day) AS (
SELECT date_trunc('day', t)
FROM generate_series(
COALESCE(${when?.[0]}::text::timestamp - interval '1 day', now() AT TIME ZONE 'America/Chicago'),
COALESCE(${when?.[when.length - 1]}::text::timestamp - interval '1 day', now() AT TIME ZONE 'America/Chicago'),
interval '1 day') AS t
)
SELECT (total / 1000)::INT as total,
2023-10-24 00:46:51 +00:00
days_cte.day + interval '1 day' as time,
json_build_array(
json_build_object('name', 'donations', 'value', donations / 1000),
json_build_object('name', 'fees', 'value', fees / 1000),
json_build_object('name', 'boost', 'value', boost / 1000),
json_build_object('name', 'jobs', 'value', jobs / 1000),
json_build_object('name', 'anon''s stack', 'value', anons_stack / 1000)
2023-10-24 00:46:51 +00:00
) AS sources
FROM days_cte
JOIN rewards_days ON rewards_days.t = days_cte.day
GROUP BY days_cte.day, total, donations, fees, boost, jobs, anons_stack
2023-10-24 00:46:51 +00:00
ORDER BY days_cte.day ASC`
return results.length ? results : [{ total: 0, time: '0', sources: [] }]
}
2022-12-08 00:04:02 +00:00
2023-10-24 00:46:51 +00:00
export default {
Query: {
rewards: async (parent, { when }, { models }) =>
when ? await getRewards(when, models) : await getCachedActiveRewards(5000, models),
2023-08-15 17:41:51 +00:00
meRewards: async (parent, { when }, { me, models }) => {
if (!me) {
return null
}
2023-08-30 02:05:10 +00:00
if (!when || when.length > 2) {
throw new GqlInputError('bad date range')
2023-08-30 00:13:21 +00:00
}
for (const w of when) {
if (isNaN(new Date(w))) {
throw new GqlInputError('invalid date')
2023-08-30 00:13:21 +00:00
}
}
const results = await models.$queryRaw`
WITH days_cte (day) AS (
2023-08-30 02:05:10 +00:00
SELECT date_trunc('day', t)
FROM generate_series(
${when[0]}::text::timestamp,
${when[when.length - 1]}::text::timestamp,
2023-08-30 02:05:10 +00:00
interval '1 day') AS t
2023-08-15 17:41:51 +00:00
)
SELECT coalesce(sum(sats), 0) as total, json_agg("Earn".*) as rewards
2023-08-30 00:13:21 +00:00
FROM days_cte
2023-08-15 17:41:51 +00:00
CROSS JOIN LATERAL (
2023-08-29 21:05:09 +00:00
(SELECT FLOOR("Earn".msats / 1000.0) as sats, type, rank, "typeId"
2023-08-15 17:41:51 +00:00
FROM "Earn"
WHERE "Earn"."userId" = ${me.id}
2024-07-19 17:38:49 +00:00
AND (type IS NULL OR type NOT IN ('FOREVER_REFERRAL', 'ONE_DAY_REFERRAL'))
2023-08-30 00:13:21 +00:00
AND date_trunc('day', "Earn".created_at AT TIME ZONE 'UTC' AT TIME ZONE 'America/Chicago') = days_cte.day
2023-08-15 17:41:51 +00:00
ORDER BY "Earn".msats DESC)
2023-08-30 00:13:21 +00:00
) "Earn"
GROUP BY days_cte.day
ORDER BY days_cte.day ASC`
2023-08-15 17:41:51 +00:00
2023-08-30 00:13:21 +00:00
return results
2022-12-08 00:04:02 +00:00
}
},
Rewards: {
leaderboard: async (parent, args, { models, ...context }) => {
// get to and from using postgres because it's easier to do there
const [{ to, from }] = await models.$queryRaw`
SELECT date_trunc('day', (now() AT TIME ZONE 'America/Chicago')) AT TIME ZONE 'America/Chicago' as from,
(date_trunc('day', (now() AT TIME ZONE 'America/Chicago')) AT TIME ZONE 'America/Chicago') + interval '1 day - 1 second' as to`
2024-03-31 21:53:57 +00:00
return await topUsers(parent, { when: 'custom', to: new Date(to).getTime().toString(), from: new Date(from).getTime().toString(), limit: 100 }, { models, ...context })
},
total: async (parent, args, { models }) => {
if (!parent.total) {
return 0
}
return parent.total
}
},
2022-12-08 00:04:02 +00:00
Mutation: {
donateToRewards: async (parent, { sats }, { me, models, lnd }) => {
2023-02-08 19:38:04 +00:00
await ssValidate(amountSchema, { amount: sats })
return await performPaidAction('DONATE', { sats }, { me, models, lnd })
2022-12-08 00:04:02 +00:00
}
2023-08-29 21:05:09 +00:00
},
Reward: {
item: async (reward, args, { me, models }) => {
if (!reward.typeId) {
return null
}
return getItem(reward, { id: reward.typeId }, { me, models })
}
2022-12-08 00:04:02 +00:00
}
}