cp sql/ from GNU Taler exchange
This commit is contained in:
parent
4749bb7c62
commit
11ee418801
132 changed files with 16912 additions and 0 deletions
237
include/sql/exchange_do_purse_merge.sql
Normal file
237
include/sql/exchange_do_purse_merge.sql
Normal file
|
|
@ -0,0 +1,237 @@
|
|||
--
|
||||
-- This file is part of TALER
|
||||
-- Copyright (C) 2014--2022 Taler Systems SA
|
||||
--
|
||||
-- TALER is free software; you can redistribute it and/or modify it under the
|
||||
-- terms of the GNU General Public License as published by the Free Software
|
||||
-- Foundation; either version 3, or (at your option) any later version.
|
||||
--
|
||||
-- TALER is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||
-- WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
||||
-- A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||
--
|
||||
-- You should have received a copy of the GNU General Public License along with
|
||||
-- TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
|
||||
--
|
||||
|
||||
CREATE OR REPLACE FUNCTION exchange_do_purse_merge(
|
||||
IN in_purse_pub BYTEA,
|
||||
IN in_merge_sig BYTEA,
|
||||
IN in_merge_timestamp INT8,
|
||||
IN in_reserve_sig BYTEA,
|
||||
IN in_partner_url TEXT,
|
||||
IN in_reserve_pub BYTEA,
|
||||
IN in_wallet_h_payto BYTEA,
|
||||
IN in_expiration_date INT8,
|
||||
OUT out_no_partner BOOLEAN,
|
||||
OUT out_no_balance BOOLEAN,
|
||||
OUT out_conflict BOOLEAN)
|
||||
LANGUAGE plpgsql
|
||||
AS $$
|
||||
DECLARE
|
||||
my_amount taler_amount;
|
||||
DECLARE
|
||||
my_purse_fee taler_amount;
|
||||
DECLARE
|
||||
my_partner_serial_id INT8;
|
||||
DECLARE
|
||||
my_in_reserve_quota BOOLEAN;
|
||||
DECLARE
|
||||
rval RECORD;
|
||||
DECLARE
|
||||
reserve_bal RECORD;
|
||||
DECLARE
|
||||
balance taler_amount;
|
||||
BEGIN
|
||||
|
||||
-- Initialize reserve, if not yet exists.
|
||||
INSERT INTO reserves
|
||||
(reserve_pub
|
||||
,expiration_date
|
||||
,gc_date)
|
||||
VALUES
|
||||
(in_reserve_pub
|
||||
,in_expiration_date
|
||||
,in_expiration_date)
|
||||
ON CONFLICT DO NOTHING;
|
||||
|
||||
|
||||
IF in_partner_url IS NULL
|
||||
THEN
|
||||
my_partner_serial_id=NULL;
|
||||
ELSE
|
||||
SELECT
|
||||
partner_serial_id
|
||||
INTO
|
||||
my_partner_serial_id
|
||||
FROM partners
|
||||
WHERE partner_base_url=in_partner_url
|
||||
AND start_date <= in_merge_timestamp
|
||||
AND end_date > in_merge_timestamp;
|
||||
IF NOT FOUND
|
||||
THEN
|
||||
out_no_partner=TRUE;
|
||||
out_conflict=FALSE;
|
||||
RETURN;
|
||||
END IF;
|
||||
END IF;
|
||||
|
||||
out_no_partner=FALSE;
|
||||
|
||||
-- Check purse is 'full'.
|
||||
SELECT amount_with_fee
|
||||
,purse_fee
|
||||
,in_reserve_quota
|
||||
INTO rval
|
||||
FROM purse_requests pr
|
||||
WHERE purse_pub=in_purse_pub
|
||||
AND (pr.balance).val >= (pr.amount_with_fee).val
|
||||
AND ( (pr.balance).frac >= (pr.amount_with_fee).frac OR
|
||||
(pr.balance).val > (pr.amount_with_fee).val );
|
||||
IF NOT FOUND
|
||||
THEN
|
||||
out_no_balance=TRUE;
|
||||
out_conflict=FALSE;
|
||||
RETURN;
|
||||
END IF;
|
||||
|
||||
-- We use rval as workaround as we cannot select
|
||||
-- directly into the amount due to Postgres limitations.
|
||||
my_amount := rval.amount_with_fee;
|
||||
my_purse_fee := rval.purse_fee;
|
||||
my_in_reserve_quota := rval.in_reserve_quota;
|
||||
|
||||
out_no_balance=FALSE;
|
||||
|
||||
-- Store purse merge signature, checks for purse_pub uniqueness
|
||||
INSERT INTO purse_merges
|
||||
(partner_serial_id
|
||||
,reserve_pub
|
||||
,purse_pub
|
||||
,merge_sig
|
||||
,merge_timestamp)
|
||||
VALUES
|
||||
(my_partner_serial_id
|
||||
,in_reserve_pub
|
||||
,in_purse_pub
|
||||
,in_merge_sig
|
||||
,in_merge_timestamp)
|
||||
ON CONFLICT DO NOTHING;
|
||||
|
||||
IF NOT FOUND
|
||||
THEN
|
||||
-- Idempotency check: see if an identical record exists.
|
||||
-- Note that by checking 'merge_sig', we implicitly check
|
||||
-- identity over everything that the signature covers.
|
||||
PERFORM
|
||||
FROM purse_merges
|
||||
WHERE purse_pub=in_purse_pub
|
||||
AND merge_sig=in_merge_sig;
|
||||
IF NOT FOUND
|
||||
THEN
|
||||
-- Purse was merged, but to some other reserve. Not allowed.
|
||||
out_conflict=TRUE;
|
||||
RETURN;
|
||||
END IF;
|
||||
|
||||
-- "success"
|
||||
out_conflict=FALSE;
|
||||
RETURN;
|
||||
END IF;
|
||||
|
||||
|
||||
-- Remember how this purse was finished. This will conflict
|
||||
-- if the purse was already decided previously.
|
||||
INSERT INTO purse_decision
|
||||
(purse_pub
|
||||
,action_timestamp
|
||||
,refunded)
|
||||
VALUES
|
||||
(in_purse_pub
|
||||
,in_merge_timestamp
|
||||
,FALSE)
|
||||
ON CONFLICT DO NOTHING;
|
||||
|
||||
IF NOT FOUND
|
||||
THEN
|
||||
-- Purse was already decided (possibly deleted or merged differently).
|
||||
out_conflict=TRUE;
|
||||
RETURN;
|
||||
END IF;
|
||||
|
||||
out_conflict=FALSE;
|
||||
|
||||
|
||||
|
||||
IF (my_in_reserve_quota)
|
||||
THEN
|
||||
UPDATE reserves
|
||||
SET purses_active=purses_active-1
|
||||
WHERE reserve_pub IN
|
||||
(SELECT reserve_pub
|
||||
FROM purse_merges
|
||||
WHERE purse_pub=my_purse_pub
|
||||
LIMIT 1);
|
||||
END IF;
|
||||
|
||||
-- Store account merge signature.
|
||||
INSERT INTO account_merges
|
||||
(reserve_pub
|
||||
,reserve_sig
|
||||
,purse_pub
|
||||
,wallet_h_payto)
|
||||
VALUES
|
||||
(in_reserve_pub
|
||||
,in_reserve_sig
|
||||
,in_purse_pub
|
||||
,in_wallet_h_payto);
|
||||
|
||||
-- If we need a wad transfer, mark purse ready for it.
|
||||
IF (0 != my_partner_serial_id)
|
||||
THEN
|
||||
-- The taler-exchange-router will take care of this.
|
||||
UPDATE purse_actions
|
||||
SET action_date=0 --- "immediately"
|
||||
,partner_serial_id=my_partner_serial_id
|
||||
WHERE purse_pub=in_purse_pub;
|
||||
ELSE
|
||||
-- This is a local reserve, update reserve balance immediately.
|
||||
|
||||
-- Refund the purse fee, by adding it to the purse value:
|
||||
my_amount.val = my_amount.val + my_purse_fee.val;
|
||||
my_amount.frac = my_amount.frac + my_purse_fee.frac;
|
||||
-- normalize result
|
||||
my_amount.val = my_amount.val + my_amount.frac / 100000000;
|
||||
my_amount.frac = my_amount.frac % 100000000;
|
||||
|
||||
SELECT current_balance
|
||||
INTO reserve_bal
|
||||
FROM reserves
|
||||
WHERE reserve_pub=in_reserve_pub;
|
||||
|
||||
balance = reserve_bal.current_balance;
|
||||
balance.val=balance.val+my_amount.val
|
||||
+ CASE
|
||||
WHEN balance.frac + my_amount.frac >= 100000000
|
||||
THEN 1
|
||||
ELSE 0
|
||||
END;
|
||||
balance.frac=balance.frac+my_amount.frac
|
||||
- CASE
|
||||
WHEN balance.frac + my_amount.frac >= 100000000
|
||||
THEN 100000000
|
||||
ELSE 0
|
||||
END;
|
||||
|
||||
UPDATE reserves
|
||||
SET current_balance=balance
|
||||
WHERE reserve_pub=in_reserve_pub;
|
||||
|
||||
END IF;
|
||||
|
||||
RETURN;
|
||||
|
||||
END $$;
|
||||
|
||||
COMMENT ON FUNCTION exchange_do_purse_merge(BYTEA, BYTEA, INT8, BYTEA, TEXT, BYTEA, BYTEA, INT8)
|
||||
IS 'Checks that the partner exists, the purse has not been merged with a different reserve and that the purse is full. If so, persists the merge data and either merges the purse with the reserve or marks it as ready for the taler-exchange-router. Caller MUST abort the transaction on failures so as to not persist data by accident.';
|
||||
Loading…
Add table
Add a link
Reference in a new issue