breez_sdk_liquid/sync/model/
mod.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
tonic::include_proto!("sync");

use self::data::SyncData;
use crate::prelude::Signer;
use anyhow::Result;
use lazy_static::lazy_static;
use log::trace;
use lwk_wollet::hashes::hex::DisplayHex;
use rusqlite::{
    types::{FromSql, FromSqlError, FromSqlResult, ToSqlOutput, ValueRef},
    ToSql,
};
use sdk_common::bitcoin::hashes::{sha256, Hash};
use sdk_common::utils::Arc;
use semver::Version;

pub(crate) mod client;
pub(crate) mod data;

const MESSAGE_PREFIX: &[u8; 13] = b"realtimesync:";
lazy_static! {
    static ref CURRENT_SCHEMA_VERSION: Version = Version::parse("0.5.0").unwrap();
}

#[derive(Copy, Clone)]
pub(crate) enum RecordType {
    Receive = 0,
    Send = 1,
    Chain = 2,
    LastDerivationIndex = 3,
    PaymentDetails = 4,
}

impl ToSql for RecordType {
    fn to_sql(&self) -> rusqlite::Result<ToSqlOutput<'_>> {
        Ok(rusqlite::types::ToSqlOutput::from(*self as i8))
    }
}

impl FromSql for RecordType {
    fn column_result(value: ValueRef<'_>) -> FromSqlResult<Self> {
        match value {
            ValueRef::Integer(i) => match i as u8 {
                0 => Ok(Self::Receive),
                1 => Ok(Self::Send),
                2 => Ok(Self::Chain),
                3 => Ok(Self::LastDerivationIndex),
                4 => Ok(Self::PaymentDetails),
                _ => Err(FromSqlError::OutOfRange(i)),
            },
            _ => Err(FromSqlError::InvalidType),
        }
    }
}

pub(crate) struct SyncState {
    pub(crate) data_id: String,
    pub(crate) record_id: String,
    pub(crate) record_revision: u64,
    pub(crate) is_local: bool,
}

pub(crate) struct SyncSettings {
    pub(crate) remote_url: Option<String>,
    pub(crate) latest_revision: Option<u64>,
}

pub(crate) struct SyncOutgoingChanges {
    pub(crate) record_id: String,
    pub(crate) data_id: String,
    pub(crate) record_type: RecordType,
    pub(crate) commit_time: u32,
    pub(crate) updated_fields: Option<Vec<String>>,
}

pub(crate) struct DecryptedRecord {
    pub(crate) revision: u64,
    pub(crate) id: String,
    #[allow(dead_code)]
    pub(crate) schema_version: String,
    pub(crate) data: SyncData,
}

#[derive(thiserror::Error, Debug)]
pub(crate) enum DecryptionError {
    #[error("Record is not applicable: schema_version too high")]
    SchemaNotApplicable,

    #[error("Remote record revision is lower or equal to the persisted one. Skipping update.")]
    AlreadyPersisted,

    #[error("Could not decrypt payload with signer: {err}")]
    InvalidPayload { err: String },

    #[error("Could not deserialize JSON bytes: {err}")]
    DeserializeError { err: String },

    #[error("Generic error: {err}")]
    Generic { err: String },
}

impl DecryptionError {
    pub(crate) fn invalid_payload(err: crate::model::SignerError) -> Self {
        Self::InvalidPayload {
            err: err.to_string(),
        }
    }

    pub(crate) fn deserialize_error(err: serde_json::Error) -> Self {
        Self::DeserializeError {
            err: err.to_string(),
        }
    }
}

impl From<anyhow::Error> for DecryptionError {
    fn from(value: anyhow::Error) -> Self {
        Self::Generic {
            err: value.to_string(),
        }
    }
}

pub(crate) struct DecryptionInfo {
    pub(crate) new_sync_state: SyncState,
    pub(crate) record: DecryptedRecord,
    pub(crate) last_commit_time: Option<u32>,
}

impl Record {
    pub(crate) fn new(
        data: SyncData,
        revision: u64,
        signer: Arc<Box<dyn Signer>>,
    ) -> Result<Self, anyhow::Error> {
        let id = Self::get_id_from_sync_data(&data);
        let data = data.to_bytes()?;
        trace!("About to encrypt sync data: {data:?}");
        let data = signer
            .ecies_encrypt(data)
            .map_err(|err| anyhow::anyhow!("Could not encrypt sync data: {err:?}"))?;
        trace!("Got encrypted sync data: {data:?}");
        let schema_version = CURRENT_SCHEMA_VERSION.to_string();
        Ok(Self {
            id,
            revision,
            schema_version,
            data,
        })
    }

    fn id(prefix: String, data_id: &str) -> String {
        sha256::Hash::hash((prefix + ":" + data_id).as_bytes()).to_lower_hex_string()
    }

    pub(crate) fn get_id_from_sync_data(data: &SyncData) -> String {
        let prefix = match data {
            SyncData::Chain(_) => "chain-swap",
            SyncData::Send(_) => "send-swap",
            SyncData::Receive(_) => "receive-swap",
            SyncData::LastDerivationIndex(_) => "derivation-index",
            SyncData::PaymentDetails(_) => "payment-details",
        }
        .to_string();
        Self::id(prefix, data.id())
    }

    pub(crate) fn get_id_from_record_type(record_type: RecordType, data_id: &str) -> String {
        let prefix = match record_type {
            RecordType::Chain => "chain-swap",
            RecordType::Send => "send-swap",
            RecordType::Receive => "receive-swap",
            RecordType::LastDerivationIndex => "derivation-index",
            RecordType::PaymentDetails => "payment-details",
        }
        .to_string();
        Self::id(prefix, data_id)
    }

    pub(crate) fn is_applicable(&self) -> Result<bool> {
        let record_version = Version::parse(&self.schema_version)?;
        Ok(CURRENT_SCHEMA_VERSION.major >= record_version.major)
    }

    pub(crate) fn decrypt(
        self,
        signer: Arc<Box<dyn Signer>>,
    ) -> Result<DecryptedRecord, DecryptionError> {
        let dec_data = signer
            .ecies_decrypt(self.data)
            .map_err(DecryptionError::invalid_payload)?;
        let data = serde_json::from_slice(&dec_data).map_err(DecryptionError::deserialize_error)?;
        Ok(DecryptedRecord {
            id: self.id,
            revision: self.revision,
            schema_version: self.schema_version,
            data,
        })
    }
}