breez_sdk_liquid/persist/
send.rs

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
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
use anyhow::{anyhow, Result};
use boltz_client::swaps::boltz::CreateSubmarineResponse;
use rusqlite::{named_params, params, Connection, Row};
use sdk_common::bitcoin::hashes::{hex::ToHex, sha256, Hash};
use serde::{Deserialize, Serialize};

use crate::error::PaymentError;
use crate::model::*;
use crate::persist::{get_where_clause_state_in, Persister};
use crate::sync::model::data::SendSyncData;
use crate::sync::model::RecordType;
use crate::{ensure_sdk, get_updated_fields};

use super::where_clauses_to_string;

impl Persister {
    pub(crate) fn insert_or_update_send_swap_inner(
        con: &Connection,
        send_swap: &SendSwap,
    ) -> Result<()> {
        let id_hash = sha256::Hash::hash(send_swap.id.as_bytes()).to_hex();
        con.execute(
            "
            INSERT INTO send_swaps (
                id,
                id_hash,
                invoice,
                bolt12_offer,
                payment_hash,
                destination_pubkey,
                timeout_block_height,
                payer_amount_sat,
                receiver_amount_sat,
                create_response_json,
                refund_private_key,
                created_at,
                state,
                pair_fees_json
            )
            VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
            ON CONFLICT DO NOTHING
            ",
            (
                &send_swap.id,
                &id_hash,
                &send_swap.invoice,
                &send_swap.bolt12_offer,
                &send_swap.payment_hash,
                &send_swap.destination_pubkey,
                &send_swap.timeout_block_height,
                &send_swap.payer_amount_sat,
                &send_swap.receiver_amount_sat,
                &send_swap.create_response_json,
                &send_swap.refund_private_key,
                &send_swap.created_at,
                &send_swap.state,
                &send_swap.pair_fees_json,
            ),
        )?;

        let rows_affected = con.execute(
            "UPDATE send_swaps 
            SET
                description = :description,
                preimage = :preimage,
                lockup_tx_id = :lockup_tx_id,
                refund_tx_id = :refund_tx_id,
                state = :state
            WHERE
                id = :id AND
                version = :version",
            named_params! {
                ":id": &send_swap.id,
                ":description": &send_swap.description,
                ":preimage": &send_swap.preimage,
                ":lockup_tx_id": &send_swap.lockup_tx_id,
                ":refund_tx_id": &send_swap.refund_tx_id,
                ":state": &send_swap.state,
                ":version": &send_swap.metadata.version,
            },
        )?;
        ensure_sdk!(
            rows_affected > 0,
            anyhow!("Version mismatch for send swap {}", send_swap.id)
        );

        Ok(())
    }

    pub(crate) fn insert_or_update_send_swap(&self, send_swap: &SendSwap) -> Result<()> {
        let maybe_swap = self.fetch_send_swap_by_id(&send_swap.id)?;
        let updated_fields = SendSyncData::updated_fields(maybe_swap, send_swap);

        let mut con = self.get_connection()?;
        let tx = con.transaction_with_behavior(rusqlite::TransactionBehavior::Immediate)?;

        Self::insert_or_update_send_swap_inner(&tx, send_swap)?;

        // Trigger a sync if:
        // - updated_fields is None (swap is inserted, not updated)
        // - updated_fields in a non empty list of updated fields
        let trigger_sync = updated_fields.as_ref().is_none_or(|u| !u.is_empty());
        match trigger_sync {
            true => {
                self.commit_outgoing(&tx, &send_swap.id, RecordType::Send, updated_fields)?;
                tx.commit()?;
                self.trigger_sync();
            }
            false => {
                tx.commit()?;
            }
        };

        Ok(())
    }

    pub(crate) fn update_send_swaps_by_state(
        &self,
        from_state: PaymentState,
        to_state: PaymentState,
        is_local: Option<bool>,
    ) -> Result<()> {
        let con = self.get_connection()?;
        let mut where_clauses = vec!["state = :from_state".to_string()];
        if let Some(is_local) = is_local {
            let mut where_is_local = format!("sync_state.is_local = {}", is_local as u8);
            if is_local {
                where_is_local = format!("({} OR sync_state.is_local IS NULL)", where_is_local);
            }
            where_clauses.push(where_is_local);
        }

        let where_clause_str = where_clauses_to_string(where_clauses);
        let query = format!(
            "
            UPDATE send_swaps
            SET state = :to_state
            WHERE id IN (
                SELECT id
                FROM send_swaps AS ss
                LEFT JOIN sync_state ON ss.id = sync_state.data_id
                {where_clause_str}
                ORDER BY created_at
            )
            "
        );

        con.execute(
            &query,
            named_params! {
                ":from_state": from_state,
                ":to_state": to_state,
            },
        )?;

        Ok(())
    }

    fn list_send_swaps_query(where_clauses: Vec<String>) -> String {
        let mut where_clause_str = String::new();
        if !where_clauses.is_empty() {
            where_clause_str = String::from("WHERE ");
            where_clause_str.push_str(where_clauses.join(" AND ").as_str());
        }

        format!(
            "
            SELECT
                id,
                invoice,
                bolt12_offer,
                payment_hash,
                destination_pubkey,
                timeout_block_height,
                description,
                preimage,
                payer_amount_sat,
                receiver_amount_sat,
                create_response_json,
                refund_private_key,
                lockup_tx_id,
                refund_tx_id,
                created_at,
                state,
                pair_fees_json,
                version,
                last_updated_at,

                sync_state.is_local
            FROM send_swaps AS ss
            LEFT JOIN sync_state ON ss.id = sync_state.data_id
            {where_clause_str}
            ORDER BY created_at
        "
        )
    }

    pub(crate) fn fetch_send_swap_by_id(&self, id: &str) -> Result<Option<SendSwap>> {
        let con: Connection = self.get_connection()?;
        let query = Self::list_send_swaps_query(vec!["id = ?1 or id_hash = ?1".to_string()]);
        let res = con.query_row(&query, [id], Self::sql_row_to_send_swap);

        Ok(res.ok())
    }

    pub(crate) fn fetch_send_swap_by_invoice(&self, invoice: &str) -> Result<Option<SendSwap>> {
        let con: Connection = self.get_connection()?;
        let query = Self::list_send_swaps_query(vec!["invoice= ?1".to_string()]);
        let res = con.query_row(&query, [invoice], Self::sql_row_to_send_swap);

        Ok(res.ok())
    }

    fn sql_row_to_send_swap(row: &Row) -> rusqlite::Result<SendSwap> {
        Ok(SendSwap {
            id: row.get(0)?,
            invoice: row.get(1)?,
            bolt12_offer: row.get(2)?,
            payment_hash: row.get(3)?,
            destination_pubkey: row.get(4)?,
            timeout_block_height: row.get(5)?,
            description: row.get(6)?,
            preimage: row.get(7)?,
            payer_amount_sat: row.get(8)?,
            receiver_amount_sat: row.get(9)?,
            create_response_json: row.get(10)?,
            refund_private_key: row.get(11)?,
            lockup_tx_id: row.get(12)?,
            refund_tx_id: row.get(13)?,
            created_at: row.get(14)?,
            state: row.get(15)?,
            pair_fees_json: row.get(16)?,
            metadata: SwapMetadata {
                version: row.get(17)?,
                last_updated_at: row.get(18)?,
                is_local: row.get::<usize, Option<bool>>(19)?.unwrap_or(true),
            },
        })
    }

    pub(crate) fn list_send_swaps_where(
        &self,
        con: &Connection,
        where_clauses: Vec<String>,
    ) -> Result<Vec<SendSwap>> {
        let query = Self::list_send_swaps_query(where_clauses);
        let ongoing_send = con
            .prepare(&query)?
            .query_map(params![], Self::sql_row_to_send_swap)?
            .map(|i| i.unwrap())
            .collect();
        Ok(ongoing_send)
    }

    pub(crate) fn list_send_swaps_by_state(
        &self,
        states: Vec<PaymentState>,
    ) -> Result<Vec<SendSwap>> {
        let con = self.get_connection()?;
        let where_clause = vec![get_where_clause_state_in(&states)];
        self.list_send_swaps_where(&con, where_clause)
    }

    pub(crate) fn list_ongoing_send_swaps(&self) -> Result<Vec<SendSwap>> {
        self.list_send_swaps_by_state(vec![PaymentState::Created, PaymentState::Pending])
    }

    pub(crate) fn list_pending_send_swaps(&self) -> Result<Vec<SendSwap>> {
        self.list_send_swaps_by_state(vec![PaymentState::Pending, PaymentState::RefundPending])
    }

    pub(crate) fn list_recoverable_send_swaps(&self) -> Result<Vec<SendSwap>> {
        self.list_send_swaps_by_state(vec![
            PaymentState::Created,
            PaymentState::Pending,
            PaymentState::RefundPending,
        ])
    }

    pub(crate) fn try_handle_send_swap_update(
        &self,
        swap_id: &str,
        to_state: PaymentState,
        preimage: Option<&str>,
        lockup_tx_id: Option<&str>,
        refund_tx_id: Option<&str>,
    ) -> Result<(), PaymentError> {
        // Do not overwrite preimage, lockup_tx_id, refund_tx_id
        let mut con = self.get_connection()?;
        let tx = con.transaction_with_behavior(rusqlite::TransactionBehavior::Immediate)?;

        tx.execute(
            "UPDATE send_swaps
            SET
                preimage = COALESCE(preimage, :preimage),
                lockup_tx_id = COALESCE(lockup_tx_id, :lockup_tx_id),
                refund_tx_id = COALESCE(refund_tx_id, :refund_tx_id),
                state = :state
            WHERE
                id = :id",
            named_params! {
                ":id": swap_id,
                ":preimage": preimage,
                ":lockup_tx_id": lockup_tx_id,
                ":refund_tx_id": refund_tx_id,
                ":state": to_state,
            },
        )?;

        let updated_fields = get_updated_fields!(preimage);
        self.commit_outgoing(&tx, swap_id, RecordType::Send, updated_fields)?;
        tx.commit()?;

        self.trigger_sync();

        Ok(())
    }

    pub(crate) fn set_send_swap_lockup_tx_id(
        &self,
        swap_id: &str,
        lockup_tx_id: &str,
    ) -> Result<(), PaymentError> {
        let con = self.get_connection()?;

        let row_count = con
            .execute(
                "UPDATE send_swaps
                SET lockup_tx_id = :lockup_tx_id
                WHERE id = :id AND lockup_tx_id IS NULL",
                named_params! {
                    ":id": swap_id,
                    ":lockup_tx_id": lockup_tx_id,
                },
            )
            .map_err(|_| PaymentError::PersistError)?;
        match row_count {
            1 => Ok(()),
            _ => Err(PaymentError::PaymentInProgress),
        }
    }

    pub(crate) fn unset_send_swap_lockup_tx_id(
        &self,
        swap_id: &str,
        lockup_tx_id: &str,
    ) -> Result<(), PaymentError> {
        let con = self.get_connection()?;
        con.execute(
            "UPDATE send_swaps
            SET lockup_tx_id = NULL
            WHERE id = :id AND lockup_tx_id = :lockup_tx_id",
            named_params! {
                ":id": swap_id,
                ":lockup_tx_id": lockup_tx_id,
            },
        )
        .map_err(|_| PaymentError::PersistError)?;
        Ok(())
    }
}

#[derive(Clone, Debug, Serialize, Deserialize)]
pub(crate) struct InternalCreateSubmarineResponse {
    pub(crate) accept_zero_conf: bool,
    pub(crate) address: String,
    pub(crate) bip21: String,
    pub(crate) claim_public_key: String,
    pub(crate) expected_amount: u64,
    pub(crate) referral_id: Option<String>,
    pub(crate) swap_tree: InternalSwapTree,
    #[serde(default)]
    pub(crate) timeout_block_height: u64,
    pub(crate) blinding_key: Option<String>,
}
impl InternalCreateSubmarineResponse {
    pub(crate) fn try_convert_from_boltz(
        boltz_create_response: &CreateSubmarineResponse,
        expected_swap_id: &str,
    ) -> Result<InternalCreateSubmarineResponse, PaymentError> {
        // Do not store the CreateResponse fields that are already stored separately
        // Before skipping them, ensure they match the separately stored ones
        ensure_sdk!(
            boltz_create_response.id == expected_swap_id,
            PaymentError::PersistError
        );

        let res = InternalCreateSubmarineResponse {
            accept_zero_conf: boltz_create_response.accept_zero_conf,
            address: boltz_create_response.address.clone(),
            bip21: boltz_create_response.bip21.clone(),
            claim_public_key: boltz_create_response.claim_public_key.to_string(),
            expected_amount: boltz_create_response.expected_amount,
            referral_id: boltz_create_response.referral_id.clone(),
            swap_tree: boltz_create_response.swap_tree.clone().into(),
            timeout_block_height: boltz_create_response.timeout_block_height,
            blinding_key: boltz_create_response.blinding_key.clone(),
        };
        Ok(res)
    }
}

#[cfg(test)]
mod tests {
    use crate::test_utils::persist::{create_persister, new_send_swap};
    use anyhow::{anyhow, Result};

    use super::PaymentState;

    #[cfg(all(target_family = "wasm", target_os = "unknown"))]
    wasm_bindgen_test::wasm_bindgen_test_configure!(run_in_browser);

    #[sdk_macros::test_all]
    fn test_fetch_send_swap() -> Result<()> {
        create_persister!(storage);
        let send_swap = new_send_swap(None, None);

        storage.insert_or_update_send_swap(&send_swap)?;
        // Fetch swap by id
        assert!(storage.fetch_send_swap_by_id(&send_swap.id).is_ok());
        // Fetch swap by invoice
        assert!(storage
            .fetch_send_swap_by_invoice(&send_swap.invoice)
            .is_ok());

        Ok(())
    }

    #[sdk_macros::test_all]
    fn test_list_send_swap() -> Result<()> {
        create_persister!(storage);

        // List general send swaps
        let range = 0..3;
        for _ in range.clone() {
            storage.insert_or_update_send_swap(&new_send_swap(None, None))?;
        }

        let con = storage.get_connection()?;
        let swaps = storage.list_send_swaps_where(&con, vec![])?;
        assert_eq!(swaps.len(), range.len());

        // List ongoing send swaps
        storage.insert_or_update_send_swap(&new_send_swap(Some(PaymentState::Pending), None))?;
        let ongoing_swaps = storage.list_ongoing_send_swaps()?;
        assert_eq!(ongoing_swaps.len(), 4);

        // List pending send swaps
        let ongoing_swaps = storage.list_pending_send_swaps()?;
        assert_eq!(ongoing_swaps.len(), 1);

        Ok(())
    }

    #[sdk_macros::test_all]
    fn test_update_send_swap() -> Result<()> {
        create_persister!(storage);

        let mut send_swap = new_send_swap(None, None);
        storage.insert_or_update_send_swap(&send_swap)?;

        // Update metadata
        let new_state = PaymentState::Pending;
        let preimage = Some("preimage");
        let lockup_tx_id = Some("lockup_tx_id");
        let refund_tx_id = Some("refund_tx_id");

        storage.try_handle_send_swap_update(
            &send_swap.id,
            new_state,
            preimage,
            lockup_tx_id,
            refund_tx_id,
        )?;

        let updated_send_swap = storage
            .fetch_send_swap_by_id(&send_swap.id)?
            .ok_or(anyhow!("Could not find Send swap in database"))?;

        assert_eq!(new_state, updated_send_swap.state);
        assert_eq!(preimage, updated_send_swap.preimage.as_deref());
        assert_eq!(lockup_tx_id, updated_send_swap.lockup_tx_id.as_deref());
        assert_eq!(refund_tx_id, updated_send_swap.refund_tx_id.as_deref());

        send_swap.state = new_state;

        // Update state (global)
        let new_state = PaymentState::Complete;
        storage.update_send_swaps_by_state(send_swap.state, PaymentState::Complete, None)?;
        let updated_send_swap = storage
            .fetch_send_swap_by_id(&send_swap.id)?
            .ok_or(anyhow!("Could not find Send swap in database"))?;
        assert_eq!(new_state, updated_send_swap.state);

        Ok(())
    }

    #[sdk_macros::async_test_all]
    async fn test_writing_stale_swap() -> Result<()> {
        create_persister!(storage);

        let send_swap = new_send_swap(None, None);
        storage.insert_or_update_send_swap(&send_swap)?;

        // read - update - write works if there are no updates in between
        let mut send_swap = storage.fetch_send_swap_by_id(&send_swap.id)?.unwrap();
        send_swap.refund_tx_id = Some("tx_id".to_string());
        storage.insert_or_update_send_swap(&send_swap)?;

        // read - update - write works if there are no updates in between even if no field changes
        let send_swap = storage.fetch_send_swap_by_id(&send_swap.id)?.unwrap();
        storage.insert_or_update_send_swap(&send_swap)?;

        // read - update - write fails if there are any updates in between
        let mut send_swap = storage.fetch_send_swap_by_id(&send_swap.id)?.unwrap();
        send_swap.refund_tx_id = Some("tx_id_2".to_string());
        // Concurrent update
        storage.set_send_swap_lockup_tx_id(&send_swap.id, "tx_id")?;
        assert!(storage.insert_or_update_send_swap(&send_swap).is_err());

        Ok(())
    }
}