2022-03-17 20:13:19 +00:00
|
|
|
const serialize = require('../api/resolvers/serial')
|
|
|
|
|
2023-07-06 16:10:44 +00:00
|
|
|
// const ITEM_EACH_REWARD = 3.0
|
|
|
|
// const UPVOTE_EACH_REWARD = 6.0
|
2022-09-12 18:55:34 +00:00
|
|
|
const TOP_PERCENTILE = 21
|
2022-07-07 19:14:22 +00:00
|
|
|
|
2022-03-17 20:13:19 +00:00
|
|
|
function earn ({ models }) {
|
|
|
|
return async function ({ name }) {
|
|
|
|
console.log('running', name)
|
|
|
|
|
|
|
|
// compute how much sn earned today
|
2023-08-01 16:10:07 +00:00
|
|
|
const [{ sum: actSum }] = await models.$queryRaw`
|
2022-12-19 22:27:52 +00:00
|
|
|
SELECT coalesce(sum("ItemAct".msats - coalesce("ReferralAct".msats, 0)), 0) as sum
|
2022-03-17 20:13:19 +00:00
|
|
|
FROM "ItemAct"
|
2022-12-19 22:27:52 +00:00
|
|
|
JOIN "Item" ON "ItemAct"."itemId" = "Item".id
|
|
|
|
LEFT JOIN "ReferralAct" ON "ItemAct".id = "ReferralAct"."itemActId"
|
2022-11-23 18:12:09 +00:00
|
|
|
WHERE "ItemAct".act <> 'TIP'
|
2022-03-17 20:13:19 +00:00
|
|
|
AND "ItemAct".created_at > now_utc() - INTERVAL '1 day'`
|
|
|
|
|
2022-12-08 00:04:02 +00:00
|
|
|
const [{ sum: donatedSum }] = await models.$queryRaw`
|
|
|
|
SELECT coalesce(sum(sats), 0) as sum
|
|
|
|
FROM "Donation"
|
|
|
|
WHERE created_at > now_utc() - INTERVAL '1 day'`
|
2023-08-01 16:10:07 +00:00
|
|
|
|
|
|
|
// XXX prisma returns wonky types from raw queries ... so be extra
|
|
|
|
// careful with them
|
|
|
|
const sum = Number(actSum) + (Number(donatedSum) * 1000)
|
|
|
|
|
|
|
|
if (sum <= 0) {
|
|
|
|
console.log('done', name, 'no sats to award today')
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// extra sanity check on rewards ... if it more than 1m sats, we
|
|
|
|
// probably have a bug somewhere
|
|
|
|
if (sum > 1000000000) {
|
|
|
|
console.log('done', name, 'error: too many sats to award today')
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
console.log(name, 'giving away', sum, 'msats')
|
2022-12-08 00:04:02 +00:00
|
|
|
|
2022-07-07 19:14:22 +00:00
|
|
|
/*
|
2023-07-06 16:10:44 +00:00
|
|
|
How earnings (used to) work:
|
2022-09-12 18:55:34 +00:00
|
|
|
1/3: top 21% posts over last 36 hours, scored on a relative basis
|
|
|
|
1/3: top 21% comments over last 36 hours, scored on a relative basis
|
2022-07-07 19:14:22 +00:00
|
|
|
1/3: top upvoters of top posts/comments, scored on:
|
|
|
|
- their trust
|
|
|
|
- how much they tipped
|
|
|
|
- how early they upvoted it
|
|
|
|
- how the post/comment scored
|
2023-07-06 16:10:44 +00:00
|
|
|
|
|
|
|
Now: 100% of earnings go to zappers of the top 21% of posts/comments
|
2022-07-07 19:14:22 +00:00
|
|
|
*/
|
2022-03-18 12:29:02 +00:00
|
|
|
|
2022-09-12 18:55:34 +00:00
|
|
|
// get earners { userId, id, type, rank, proportion }
|
2023-07-26 16:01:31 +00:00
|
|
|
const earners = await models.$queryRawUnsafe(`
|
2022-07-07 19:14:22 +00:00
|
|
|
WITH item_ratios AS (
|
2022-09-12 18:55:34 +00:00
|
|
|
SELECT *,
|
|
|
|
CASE WHEN "parentId" IS NULL THEN 'POST' ELSE 'COMMENT' END as type,
|
|
|
|
CASE WHEN "weightedVotes" > 0 THEN "weightedVotes"/(sum("weightedVotes") OVER (PARTITION BY "parentId" IS NULL)) ELSE 0 END AS ratio
|
|
|
|
FROM (
|
|
|
|
SELECT *,
|
2022-11-23 18:12:09 +00:00
|
|
|
NTILE(100) OVER (PARTITION BY "parentId" IS NULL ORDER BY ("weightedVotes"-"weightedDownVotes") desc) AS percentile,
|
|
|
|
ROW_NUMBER() OVER (PARTITION BY "parentId" IS NULL ORDER BY ("weightedVotes"-"weightedDownVotes") desc) AS rank
|
2022-09-12 18:55:34 +00:00
|
|
|
FROM
|
|
|
|
"Item"
|
|
|
|
WHERE created_at >= now_utc() - interval '36 hours'
|
2023-01-12 23:53:09 +00:00
|
|
|
AND "weightedVotes" > 0 AND "deletedAt" IS NULL AND NOT bio
|
2022-09-12 18:55:34 +00:00
|
|
|
) x
|
|
|
|
WHERE x.percentile <= ${TOP_PERCENTILE}
|
|
|
|
),
|
2022-07-07 19:14:22 +00:00
|
|
|
upvoters AS (
|
|
|
|
SELECT "ItemAct"."userId", item_ratios.id, item_ratios.ratio, item_ratios."parentId",
|
2022-11-15 20:51:55 +00:00
|
|
|
sum("ItemAct".msats) as tipped, min("ItemAct".created_at) as acted_at
|
2022-07-07 19:14:22 +00:00
|
|
|
FROM item_ratios
|
|
|
|
JOIN "ItemAct" on "ItemAct"."itemId" = item_ratios.id
|
2022-11-23 18:12:09 +00:00
|
|
|
WHERE act = 'TIP'
|
2022-07-07 19:14:22 +00:00
|
|
|
GROUP BY "ItemAct"."userId", item_ratios.id, item_ratios.ratio, item_ratios."parentId"
|
|
|
|
),
|
|
|
|
upvoter_ratios AS (
|
2022-09-12 18:55:34 +00:00
|
|
|
SELECT "userId", sum(early_multiplier*tipped_ratio*ratio*users.trust) as upvoter_ratio,
|
|
|
|
"parentId" IS NULL as "isPost", CASE WHEN "parentId" IS NULL THEN 'TIP_POST' ELSE 'TIP_COMMENT' END as type
|
2022-07-07 19:14:22 +00:00
|
|
|
FROM (
|
|
|
|
SELECT *,
|
2022-09-12 18:55:34 +00:00
|
|
|
1/(ROW_NUMBER() OVER (partition by id order by acted_at asc)) AS early_multiplier,
|
2022-07-07 19:14:22 +00:00
|
|
|
tipped::float/(sum(tipped) OVER (partition by id)) tipped_ratio
|
|
|
|
FROM upvoters
|
|
|
|
) u
|
|
|
|
JOIN users on "userId" = users.id
|
|
|
|
GROUP BY "userId", "parentId" IS NULL
|
|
|
|
)
|
2022-09-12 18:55:34 +00:00
|
|
|
SELECT "userId", NULL as id, type, ROW_NUMBER() OVER (PARTITION BY "isPost" ORDER BY upvoter_ratio DESC) as rank,
|
2023-07-23 14:00:02 +00:00
|
|
|
upvoter_ratio/(sum(upvoter_ratio) OVER (PARTITION BY "isPost"))/2 as proportion
|
2022-09-12 18:55:34 +00:00
|
|
|
FROM upvoter_ratios
|
2023-07-06 16:10:44 +00:00
|
|
|
WHERE upvoter_ratio > 0`)
|
2022-09-12 18:55:34 +00:00
|
|
|
|
|
|
|
// in order to group earnings for users we use the same createdAt time for
|
|
|
|
// all earnings
|
|
|
|
const now = new Date(new Date().getTime())
|
|
|
|
|
|
|
|
// this is just a sanity check because it seems like a good idea
|
2023-08-01 16:10:07 +00:00
|
|
|
let total = 0
|
2022-03-18 12:29:02 +00:00
|
|
|
|
|
|
|
// for each earner, serialize earnings
|
|
|
|
// we do this for each earner because we don't need to serialize
|
|
|
|
// all earner updates together
|
|
|
|
earners.forEach(async earner => {
|
2023-08-01 16:10:07 +00:00
|
|
|
const earnings = Math.floor(parseFloat(earner.proportion) * sum)
|
2022-09-12 18:55:34 +00:00
|
|
|
total += earnings
|
|
|
|
if (total > sum) {
|
2023-08-01 16:10:07 +00:00
|
|
|
console.log(name, 'total exceeds sum', total, '>', sum)
|
2022-09-12 18:55:34 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-08-01 16:10:07 +00:00
|
|
|
console.log('stacker', earner.userId, 'earned', earnings)
|
|
|
|
|
2022-09-12 18:55:34 +00:00
|
|
|
if (earnings > 0) {
|
2022-03-18 12:29:02 +00:00
|
|
|
await serialize(models,
|
2023-07-27 00:18:42 +00:00
|
|
|
models.$executeRaw`SELECT earn(${earner.userId}::INTEGER, ${earnings},
|
|
|
|
${now}::timestamp without time zone, ${earner.type}::"EarnType", ${earner.id}::INTEGER, ${earner.rank}::INTEGER)`)
|
2022-03-18 12:29:02 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
console.log('done', name)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-07 19:14:22 +00:00
|
|
|
module.exports = { earn }
|