zaru-core 0.1.0

A secure payment model engine with transaction state machine and cryptographic verification
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
// src/python.rs

#![allow(unsafe_op_in_unsafe_fn)]
#![allow(non_local_definitions)]
#![allow(clippy::inherent_to_string)]

//! Python bindings for zaru-core payment engine
//!
//! This module provides Python bindings using PyO3 for the zaru-core payment engine.
//! It exposes the following Python classes:
//! - `Amount`: Safe monetary value handling
//! - `WalletId`: Wallet abstraction (Bank + Crypto)
//! - `Transaction`: Payment transaction with verification
//! - `PaymentEngine`: Main engine for creating and managing transactions



use pyo3::exceptions::{PyRuntimeError, PyValueError};
use pyo3::prelude::*;
use serde_json::json;

use crate::{Amount, CryptoVerifier, Keypair, Transaction, TxId, Unsigned, Verified, WalletId};

/// Python wrapper for Amount
///
/// Represents a monetary amount with safe construction (prevents negative values).
///
/// Examples:
///     >>> from zaru_core import PaymentEngine
///     >>> engine = PaymentEngine()
///     >>> amount = engine.create_amount(1000)
///     >>> amount.value
///     1000
#[pyclass(name = "Amount")]
#[derive(Clone, Debug)]
pub struct PyAmount {
    inner: Amount,
}

impl Default for PyPaymentEngine {
    fn default() -> Self {
        Self::new()
    }
}

#[pymethods]
impl PyAmount {
    /// Create a new Amount from an integer value
    ///
    /// Raises ValueError if the amount is negative
    #[new]
    pub fn new(value: i128) -> PyResult<Self> {
        Amount::new(value)
            .map(|inner| PyAmount { inner })
            .map_err(|e| PyValueError::new_err(format!("Invalid amount: {:?}", e)))
    }

    /// Get the numeric value of the amount
    #[getter]
    pub fn value(&self) -> i128 {
        self.inner.value()
    }

    /// String representation for Python
    pub fn __repr__(&self) -> String {
        format!("Amount({})", self.inner.value())
    }

    /// Addition operator
    pub fn __add__(&self, other: &PyAmount) -> PyResult<PyAmount> {
        Ok(PyAmount {
            inner: self.inner.clone() + other.inner.clone(),
        })
    }

    /// Subtraction operator
    pub fn __sub__(&self, other: &PyAmount) -> PyResult<PyAmount> {
        Ok(PyAmount {
            inner: self.inner.clone() - other.inner.clone(),
        })
    }

    /// Convert to JSON string
    pub fn to_json(&self) -> String {
        json!({"value": self.inner.value()}).to_string()
    }
}

/// Python wrapper for WalletId
///
/// Represents a wallet that can be either a bank account or a cryptocurrency address.
///
/// Examples:
///     >>> from zaru_core import PaymentEngine
///     >>> engine = PaymentEngine()
///     >>> bank_wallet = engine.create_wallet("bank", "Bank of America")
///     >>> crypto_wallet = engine.create_wallet("crypto", "0x1234567890abcdef")
#[pyclass(name = "WalletId")]
#[derive(Clone, Debug)]
pub struct PyWalletId {
    inner: WalletId,
}

#[pymethods]
impl PyWalletId {
    /// Create a bank wallet from an account identifier
    #[staticmethod]
    pub fn from_bank(account: &str) -> Self {
        PyWalletId {
            inner: WalletId::Bank(crate::wallet::BankAccount(account.to_string())),
        }
    }

    /// Create a crypto wallet from an address
    #[staticmethod]
    pub fn from_crypto(address: &str) -> Self {
        PyWalletId {
            inner: WalletId::Crypto(address.to_string()),
        }
    }

    /// String representation for Python
    pub fn __repr__(&self) -> String {
        format!("WalletId('{}')", self.inner)
    }

    /// String conversion
    pub fn __str__(&self) -> String {
        self.inner.to_string()
    }

    /// Convert to string
    pub fn to_string(&self) -> String {
        self.inner.to_string()
    }

    /// Check if this is a bank wallet
    pub fn is_bank(&self) -> bool {
        matches!(self.inner, WalletId::Bank(_))
    }

    /// Check if this is a crypto wallet
    pub fn is_crypto(&self) -> bool {
        matches!(self.inner, WalletId::Crypto(_))
    }
}

/// Python wrapper for Transaction
///
/// Represents a payment transaction that has been signed and verified.
///
/// Examples:
///     >>> from zaru_core import PaymentEngine
///     >>> engine = PaymentEngine()
///     >>> tx = engine.create_transaction(
///     ...     id="txn_001",
///     ...     from_wallet=sender_wallet,
///     ...     to_wallet=receiver_wallet,
///     ...     amount=amount,
///     ...     nonce=1
///     ... )
///     >>> tx.verify_signature()
///     True
#[pyclass(name = "Transaction")]
#[derive(Debug)]
pub struct PyTransaction {
    inner: Transaction<Verified>,
}

#[pymethods]
impl PyTransaction {
    /// Create a new unsigned transaction (internal use)
    ///
    /// This is used by PaymentEngine to create transactions.
    /// Users should use PaymentEngine.create_transaction() instead.
    #[staticmethod]
    pub fn create_unsigned(
        id: &str,
        from_wallet: &PyWalletId,
        to_wallet: &PyWalletId,
        amount: &PyAmount,
        nonce: u64,
    ) -> PyResult<PyTransaction> {
        let tx_id = TxId(id.to_string());
        let unsigned = Transaction::<Unsigned>::new(
            tx_id,
            from_wallet.inner.clone(),
            to_wallet.inner.clone(),
            amount.inner.clone(),
            nonce,
        );

        // For demo, sign with a random keypair
        // In production, you'd want to pass the keypair
        let keypair = Keypair::generate();
        let signed = unsigned.sign(&keypair);

        match signed.verify() {
            Ok(verified) => Ok(PyTransaction { inner: verified }),
            Err(e) => Err(PyRuntimeError::new_err(e)),
        }
    }

    /// Get the transaction ID
    #[getter]
    pub fn id(&self) -> String {
        self.inner.id.0.clone()
    }

    /// Get the sender wallet
    #[getter]
    pub fn from_wallet(&self) -> PyWalletId {
        PyWalletId {
            inner: self.inner.from.clone(),
        }
    }

    /// Get the receiver wallet
    #[getter]
    pub fn to_wallet(&self) -> PyWalletId {
        PyWalletId {
            inner: self.inner.to.clone(),
        }
    }

    /// Get the transaction amount
    #[getter]
    pub fn amount(&self) -> PyAmount {
        PyAmount {
            inner: self.inner.amount.clone(),
        }
    }

    /// Get the transaction nonce
    #[getter]
    pub fn nonce(&self) -> u64 {
        self.inner.nonce
    }

    /// Get the transaction state
    #[getter]
    pub fn state(&self) -> String {
        "Verified".to_string()
    }

    /// Convert transaction to JSON
    pub fn to_json(&self) -> PyResult<String> {
        let data = json!({
            "id": self.inner.id.0,
            "from": self.inner.from.to_string(),
            "to": self.inner.to.to_string(),
            "amount": self.inner.amount.value(),
            "nonce": self.inner.nonce,
            "state": "Verified",
        });

        serde_json::to_string(&data).map_err(|e| PyRuntimeError::new_err(e.to_string()))
    }

    /// Verify the transaction signature
    pub fn verify_signature(&self) -> PyResult<bool> {
        if let Some(sig) = &self.inner.signature {
            let message = format!(
                "{}:{}:{}:{}:{}",
                self.inner.id.0,
                self.inner.from,
                self.inner.to,
                self.inner.amount.value(),
                self.inner.nonce
            )
            .into_bytes();

            match CryptoVerifier::verify(&message, sig, &self.inner.from) {
                Ok(_) => Ok(true),
                Err(_) => Ok(false),
            }
        } else {
            Ok(false)
        }
    }
}

/// Main payment engine
///
/// The primary interface for creating and managing payment transactions.
///
/// Examples:
///     >>> from zaru_core import PaymentEngine
///     >>> engine = PaymentEngine()
///     >>> wallet = engine.create_wallet("bank", "My Bank")
///     >>> amount = engine.create_amount(1000)
///     >>> tx = engine.create_transaction(
///     ...     id="txn_001",
///     ...     from_wallet=wallet,
///     ...     to_wallet=wallet,
///     ...     amount=amount,
///     ...     nonce=1
///     ... )
#[pyclass(name = "PaymentEngine")]
#[derive(Debug)]
pub struct PyPaymentEngine {
    // Engine state can be added here later
    // e.g., transaction_history: Vec<Transaction<Verified>>,
}

#[pymethods]
impl PyPaymentEngine {
    /// Create a new PaymentEngine instance
    #[new]
    pub fn new() -> Self {
        PyPaymentEngine {}
    }

    /// Create a new transaction
    ///
    /// Args:
    ///     id: Unique transaction identifier
    ///     from_wallet: Sender wallet
    ///     to_wallet: Receiver wallet
    ///     amount: Transaction amount
    ///     nonce: Unique nonce for the transaction
    ///
    /// Returns:
    ///     A signed and verified Transaction object
    #[pyo3(signature = (id, from_wallet, to_wallet, amount, nonce))]
    pub fn create_transaction(
        &self,
        id: &str,
        from_wallet: &PyWalletId,
        to_wallet: &PyWalletId,
        amount: &PyAmount,
        nonce: u64,
    ) -> PyResult<PyTransaction> {
        PyTransaction::create_unsigned(id, from_wallet, to_wallet, amount, nonce)
    }

    /// Create a new wallet
    ///
    /// Args:
    ///     wallet_type: Either "bank" or "crypto"
    ///     identifier: Bank account or crypto address
    ///
    /// Returns:
    ///     A WalletId object
    ///
    /// Raises:
    ///     ValueError: If wallet_type is not "bank" or "crypto"
    pub fn create_wallet(&self, wallet_type: &str, identifier: &str) -> PyResult<PyWalletId> {
        match wallet_type.to_lowercase().as_str() {
            "bank" => Ok(PyWalletId::from_bank(identifier)),
            "crypto" => Ok(PyWalletId::from_crypto(identifier)),
            _ => Err(PyValueError::new_err(
                "Wallet type must be 'bank' or 'crypto'",
            )),
        }
    }

    /// Create a new Amount
    ///
    /// Args:
    ///     value: The amount value (must be >= 0)
    ///
    /// Returns:
    ///     An Amount object
    ///
    /// Raises:
    ///     ValueError: If value is negative
    pub fn create_amount(&self, value: i128) -> PyResult<PyAmount> {
        PyAmount::new(value)
    }

    /// Verify a transaction's signature
    ///
    /// Args:
    ///     tx: The transaction to verify
    ///
    /// Returns:
    ///     True if the signature is valid, False otherwise
    pub fn verify_transaction(&self, tx: &PyTransaction) -> PyResult<bool> {
        tx.verify_signature()
    }
}

/// Export the Python module
///
/// This function defines what gets exported to Python.
#[pymodule]
pub fn zaru_core(_py: Python<'_>, m: &PyModule) -> PyResult<()> {
    // Register classes
    m.add_class::<PyAmount>()?;
    m.add_class::<PyWalletId>()?;
    m.add_class::<PyTransaction>()?;
    m.add_class::<PyPaymentEngine>()?;

    // Add module metadata
    m.add("__version__", env!("CARGO_PKG_VERSION"))?;
    m.add("__author__", env!("CARGO_PKG_AUTHORS"))?;

    // Utility functions
    #[pyfunction]
    fn version() -> String {
        env!("CARGO_PKG_VERSION").to_string()
    }
    m.add_function(wrap_pyfunction!(version, m)?)?;

    #[pyfunction]
    fn generate_keypair() -> String {
        let keypair = Keypair::generate();
        hex::encode(keypair.verifying.as_bytes())
    }
    m.add_function(wrap_pyfunction!(generate_keypair, m)?)?;

    Ok(())
}