39 lines
1.5 KiB
PL/PgSQL
39 lines
1.5 KiB
PL/PgSQL
-- AlterTable
|
|
ALTER TABLE "Sub" DROP COLUMN "deltaCost";
|
|
|
|
-- charge the user for the auction item
|
|
CREATE OR REPLACE FUNCTION run_auction(item_id INTEGER) RETURNS void AS $$
|
|
DECLARE
|
|
bid INTEGER;
|
|
user_id INTEGER;
|
|
user_msats INTEGER;
|
|
item_status "Status";
|
|
BEGIN
|
|
PERFORM ASSERT_SERIALIZED();
|
|
|
|
-- extract data we need
|
|
SELECT "maxBid" * 1000, "userId", status INTO bid, user_id, item_status FROM "Item" WHERE id = item_id;
|
|
SELECT msats INTO user_msats FROM users WHERE id = user_id;
|
|
|
|
-- check if user wallet has enough sats
|
|
IF bid > user_msats THEN
|
|
-- if not, set status = NOSATS and statusUpdatedAt to now_utc if not already set
|
|
IF item_status <> 'NOSATS' THEN
|
|
UPDATE "Item" SET status = 'NOSATS', "statusUpdatedAt" = now_utc() WHERE id = item_id;
|
|
END IF;
|
|
ELSE
|
|
-- if so, deduct from user
|
|
UPDATE users SET msats = msats - bid WHERE id = user_id;
|
|
-- update item status = ACTIVE and statusUpdatedAt = null if NOSATS
|
|
IF item_status = 'NOSATS' THEN
|
|
UPDATE "Item" SET status = 'ACTIVE', "statusUpdatedAt" = now_utc() WHERE id = item_id;
|
|
END IF;
|
|
END IF;
|
|
END;
|
|
$$ LANGUAGE plpgsql;
|
|
|
|
-- update all existing subs baseCost to 12
|
|
update "Sub" set "baseCost" = 12 where name = 'jobs';
|
|
|
|
-- modify items with a maxBid to sats/min
|
|
update "Item" set "maxBid" = GREATEST("maxBid" / 30 / 24 / 60, 1) where "maxBid" is not null; |