spayd

Text handling for Short Payment Descriptors (SPAYD or SPD)

4 releases

0.2.2 Jul 2, 2024
0.2.1 Nov 9, 2023
0.1.2 Aug 17, 2023
Download history 158/week @ 2024-06-30 1/week @ 2024-07-07 15/week @ 2024-07-28 16/week @ 2024-09-15 11/week @ 2024-09-22 36/week @ 2024-09-29 2/week @ 2024-10-06

65 downloads per month
Used in invoicero

Apache-2.0

34KB
747 lines

SPAYD (Short Payment Descriptor)

This library implements text processing for the Short Payment Descriptor format (SPAYD or SPD). This is a simple text format for payment requests, providing all the details required to make a bank transfer to the payee (destination account (IBAN), amount etc). The data is usually displayed as a QR code that can be scanned into a banking app. Although it is mainly used in Czechia and the Slovakia, the format is designed to handle international bank accounts and currencies.

This library only aims to handle the text processing of the data. QR scanning is already implemented in libraries such as qr_code and may be provided by other methods on mobile OSs.


lib.rs:

This library implements text processing for the Short Payment Descriptor format (SPAYD or SPD). This is a simple text format for requesting payments in Czechia and the Slovak Republic. It can encode details of the payee, destination account (IBAN), amount etc.

Parsing SPAYD text:

use spayd::{Spayd, fields};

let payment: Spayd = "SPD*1.0*ACC:CZ1355000000000000222885*AM:250.00*CC:CZK".parse().unwrap();

assert_eq!(payment.field(fields::ACCOUNT), Some("CZ1355000000000000222885"));
assert_eq!(payment.field(fields::AMOUNT), Some("250.00"));
assert_eq!(payment.field(fields::CURRENCY), Some("CZK"));

Creatig a SPAYD:

use spayd::{Spayd, fields};

let account = "CZ1355000000000000222885";
let amount = "250.00";
let currency = "CZK";

let mut payment = Spayd::empty_v1_0();
payment.set_field(fields::ACCOUNT, account);
payment.set_field(fields::AMOUNT, amount);
payment.set_field(fields::CURRENCY, currency);

assert_eq!(payment.to_string(), "SPD*1.0*ACC:CZ1355000000000000222885*AM:250.00*CC:CZK")

This crate also provides features (chrono, iban_validate, iso_currency, rust_decimal) for optional conversions to/from commonly used types.

use spayd::{Spayd, fields};
use iban::Iban;
use chrono::NaiveDate;
use rust_decimal::Decimal;
use iso_currency::Currency;

let account: Iban = "CZ1355000000000000222885".parse().unwrap();
let amount = Decimal::new(250, 0);;
let currency = Currency::CZK;
let due_date = NaiveDate::from_ymd_opt(2023, 10, 31).unwrap();

let mut payment = Spayd::empty_v1_0();
payment.set_account(account);
payment.set_amount(&amount);
payment.set_currency(currency);
payment.set_due_date(&due_date);

assert_eq!(payment.account().unwrap().to_iban(), Ok(account));
assert_eq!(payment.amount(), Ok(amount));
assert_eq!(payment.currency(), Ok(currency));
assert_eq!(payment.due_date(), Ok(due_date));

Dependencies

~2.7–4MB
~72K SLoC