stacker.news/prisma/migrations/20210511170231_vote/migration.sql

95 lines
3.0 KiB
MySQL
Raw Normal View History

-- This is an empty migration.
2021-05-20 01:09:32 +00:00
create function now_utc() returns timestamp as $$
select now() at time zone 'utc';
$$ language sql;
create function ASSERT_SERIALIZED() returns void as $$
BEGIN
IF (select current_setting('transaction_isolation') <> 'serializable') THEN
RAISE EXCEPTION 'SN_NOT_SERIALIZABLE';
END IF;
END;
$$ language plpgsql;
CREATE OR REPLACE FUNCTION vote(item_id INTEGER, username TEXT, vote_sats INTEGER)
RETURNS INTEGER
LANGUAGE plpgsql
AS $$
DECLARE
user_id INTEGER;
user_sats INTEGER;
BEGIN
2021-05-20 01:09:32 +00:00
PERFORM ASSERT_SERIALIZED();
SELECT (msats / 1000), id INTO user_sats, user_id FROM users WHERE name = username;
IF vote_sats > user_sats THEN
RAISE EXCEPTION 'SN_INSUFFICIENT_FUNDS';
END IF;
UPDATE users SET msats = msats - (vote_sats * 1000) WHERE id = user_id;
IF EXISTS (SELECT 1 FROM "Vote" WHERE "itemId" = item_id AND "userId" = user_id) THEN
2021-05-20 01:09:32 +00:00
INSERT INTO "Vote" (sats, "itemId", "userId", boost, created_at, updated_at)
VALUES (vote_sats, item_id, user_id, true, now_utc(), now_utc());
ELSE
2021-05-20 01:09:32 +00:00
INSERT INTO "Vote" (sats, "itemId", "userId", created_at, updated_at)
VALUES (1, item_id, user_id, now_utc(), now_utc());
2021-05-13 21:19:51 +00:00
UPDATE users SET msats = msats + 1000 WHERE id = (SELECT "userId" FROM "Item" WHERE id = item_id);
IF vote_sats > 1 THEN
2021-05-20 01:09:32 +00:00
INSERT INTO "Vote" (sats, "itemId", "userId", boost, created_at, updated_at)
VALUES (vote_sats - 1, item_id, user_id, true, now_utc(), now_utc());
2021-05-13 21:19:51 +00:00
END IF;
END IF;
RETURN vote_sats;
END;
$$;
CREATE OR REPLACE FUNCTION create_item(title TEXT, url TEXT, text TEXT, parent_id INTEGER, username TEXT)
RETURNS "Item"
LANGUAGE plpgsql
AS $$
DECLARE
user_id INTEGER;
user_sats INTEGER;
item "Item";
BEGIN
2021-05-20 01:09:32 +00:00
PERFORM ASSERT_SERIALIZED();
SELECT (msats / 1000), id INTO user_sats, user_id FROM users WHERE name = username;
IF 1 > user_sats THEN
RAISE EXCEPTION 'SN_INSUFFICIENT_FUNDS';
END IF;
UPDATE users SET msats = msats - 1000 WHERE id = user_id;
2021-05-20 01:09:32 +00:00
INSERT INTO "Item" (title, url, text, "userId", "parentId", created_at, updated_at)
VALUES (title, url, text, user_id, parent_id, now_utc(), now_utc()) RETURNING * INTO item;
INSERT INTO "Vote" (sats, "itemId", "userId", created_at, updated_at)
VALUES (1, item.id, user_id, now_utc(), now_utc());
RETURN item;
END;
$$;
CREATE OR REPLACE FUNCTION confirm_invoice(lnd_id TEXT, lnd_received INTEGER)
RETURNS INTEGER
LANGUAGE plpgsql
AS $$
DECLARE
user_id INTEGER;
confirmed_at TIMESTAMP;
BEGIN
2021-05-20 01:09:32 +00:00
PERFORM ASSERT_SERIALIZED();
SELECT "userId", "confirmedAt" INTO user_id, confirmed_at FROM "Invoice" WHERE hash = lnd_id;
IF confirmed_at IS NULL THEN
2021-05-20 01:09:32 +00:00
UPDATE "Invoice" SET "msatsReceived" = lnd_received, "confirmedAt" = now_utc(), updated_at = now_utc()
WHERE hash = lnd_id;
UPDATE users SET msats = msats + lnd_received WHERE id = user_id;
END IF;
RETURN 0;
END;
$$;