stacker.news/api/resolvers/rewards.js

54 lines
2.6 KiB
JavaScript
Raw Normal View History

import { GraphQLError } from 'graphql'
2023-02-08 19:38:04 +00:00
import { amountSchema, ssValidate } from '../../lib/validate'
2022-12-08 00:04:02 +00:00
import serialize from './serial'
2023-08-14 19:37:09 +00:00
import { ANON_USER_ID } from '../../lib/constants'
2022-12-08 00:04:02 +00:00
export default {
Query: {
expectedRewards: async (parent, args, { models }) => {
const [result] = await models.$queryRaw`
2022-12-19 22:27:52 +00:00
SELECT coalesce(FLOOR(sum(sats)), 0) as total, json_build_array(
json_build_object('name', 'donations', 'value', coalesce(FLOOR(sum(sats) FILTER(WHERE type = 'DONATION')), 0)),
2023-08-14 19:37:09 +00:00
json_build_object('name', 'fees', 'value', coalesce(FLOOR(sum(sats) FILTER(WHERE type NOT IN ('BOOST', 'STREAM', 'DONATION', 'ANON'))), 0)),
2022-12-19 22:27:52 +00:00
json_build_object('name', 'boost', 'value', coalesce(FLOOR(sum(sats) FILTER(WHERE type = 'BOOST')), 0)),
2023-08-14 19:37:09 +00:00
json_build_object('name', 'jobs', 'value', coalesce(FLOOR(sum(sats) FILTER(WHERE type = 'STREAM')), 0)),
json_build_object('name', 'anon earnings', 'value', coalesce(FLOOR(sum(sats) FILTER(WHERE type = 'ANON')), 0))
2022-12-08 00:04:02 +00:00
) AS sources
FROM (
2022-12-19 22:27:52 +00:00
(SELECT ("ItemAct".msats - COALESCE("ReferralAct".msats, 0)) / 1000.0 as sats, act::text as type
2022-12-08 00:04:02 +00:00
FROM "ItemAct"
2023-08-10 02:27:53 +00:00
LEFT JOIN "ReferralAct" ON "ReferralAct"."itemActId" = "ItemAct".id
WHERE date_trunc('day', "ItemAct".created_at AT TIME ZONE 'UTC' AT TIME ZONE 'America/Chicago') = date_trunc('day', now() AT TIME ZONE 'America/Chicago') AND "ItemAct".act <> 'TIP')
2022-12-08 00:04:02 +00:00
UNION ALL
2022-12-19 22:27:52 +00:00
(SELECT sats::FLOAT, 'DONATION' as type
2022-12-08 00:04:02 +00:00
FROM "Donation"
2023-08-10 02:27:53 +00:00
WHERE date_trunc('day', created_at AT TIME ZONE 'UTC' AT TIME ZONE 'America/Chicago') = date_trunc('day', now() AT TIME ZONE 'America/Chicago'))
2023-08-14 19:37:09 +00:00
UNION ALL
(SELECT "ItemAct".msats / 1000.0 as sats, 'ANON' as type
FROM "Item"
JOIN "ItemAct" ON "ItemAct"."itemId" = "Item".id
WHERE "Item"."userId" = ${ANON_USER_ID} AND "ItemAct".act = 'TIP' AND "Item"."fwdUserId" IS NULL
AND date_trunc('day', "ItemAct".created_at AT TIME ZONE 'UTC' AT TIME ZONE 'America/Chicago') = date_trunc('day', now() AT TIME ZONE 'America/Chicago'))
2022-12-08 00:04:02 +00:00
) subquery`
2023-08-10 02:27:53 +00:00
return result || { total: 0, sources: [] }
2022-12-08 00:04:02 +00:00
}
},
Mutation: {
donateToRewards: async (parent, { sats }, { me, models }) => {
if (!me) {
throw new GraphQLError('you must be logged in', { extensions: { code: 'UNAUTHENTICATED' } })
2022-12-08 00:04:02 +00:00
}
2023-02-08 19:38:04 +00:00
await ssValidate(amountSchema, { amount: sats })
2022-12-08 00:04:02 +00:00
await serialize(models,
2023-07-26 16:01:31 +00:00
models.$queryRawUnsafe(
2023-07-27 00:18:42 +00:00
'SELECT donate($1::INTEGER, $2::INTEGER)',
2022-12-08 00:04:02 +00:00
sats, Number(me.id)))
return sats
}
}
}