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
use anyhow::{bail, Error, Result};
use bc_components::{PrivateKeyBase, PublicKeyBase, ARID};
use dcbor::{prelude::*, Date};

use crate::{known_values, Envelope, EnvelopeEncodable, Response, ResponseBehavior};

use super::Continuation;

#[derive(Debug, Clone, PartialEq)]
pub struct SealedResponse {
    response: Response,
    sender: PublicKeyBase,
    // This is the continuation we're going to self-encrypt and send to the peer.
    state: Option<Envelope>,
    // This is a continuation we previously received from the peer and want to send back to them.
    peer_continuation: Option<Envelope>,
}

impl std::fmt::Display for SealedResponse {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "SealedResponse({}, state: {}, peer_continuation: {})",
            self.response.summary(),
            self.state.as_ref().map_or("None".to_string(), |state| state.format_flat()),
            self.peer_continuation.clone().map_or_else(|| "None".to_string(), |_| "Some".to_string())
        )
    }
}

impl SealedResponse {
    //
    // Success Composition
    //

    pub fn new_success(id: impl AsRef<ARID>, sender: impl AsRef<PublicKeyBase>) -> Self {
        Self {
            response: Response::new_success(id),
            sender: sender.as_ref().clone(),
            state: None,
            peer_continuation: None,
        }
    }

    //
    // Failure Composition
    //

    pub fn new_failure(id: impl AsRef<ARID>, sender: impl AsRef<PublicKeyBase>) -> Self {
        Self {
            response: Response::new_failure(id),
            sender: sender.as_ref().clone(),
            state: None,
            peer_continuation: None,
        }
    }

    /// An early failure takes place before the message has been decrypted,
    /// and therefore the ID and sender public key are not known.
    pub fn new_early_failure(sender: impl AsRef<PublicKeyBase>) -> Self {
        Self {
            response: Response::new_early_failure(),
            sender: sender.as_ref().clone(),
            state: None,
            peer_continuation: None,
        }
    }
}

pub trait SealedResponseBehavior: ResponseBehavior {
    //
    // Composition
    //

    /// Adds state to the request that the peer may return at some future time.
    fn with_state(self, state: impl EnvelopeEncodable) -> Self;

    fn with_optional_state(self, state: Option<impl EnvelopeEncodable>) -> Self;

    /// Adds a continuation we previously received from the recipient and want to send back to them.
    fn with_peer_continuation(self, peer_continuation: Option<&Envelope>) -> Self;

    //
    // Parsing
    //

    fn sender(&self) -> &PublicKeyBase;

    fn state(&self) -> Option<&Envelope>;

    fn peer_continuation(&self) -> Option<&Envelope>;
}

impl SealedResponseBehavior for SealedResponse {
    //
    // Composition
    //

    /// Adds state to the request that the peer may return at some future time.
    fn with_state(mut self, state: impl EnvelopeEncodable) -> Self {
        if self.response.is_ok() {
            self.state = Some(state.into_envelope());
        } else {
            panic!("Cannot set state on a failed response");
        }
        self
    }

    fn with_optional_state(mut self, state: Option<impl EnvelopeEncodable>) -> Self {
        if let Some(state) = state {
            self.with_state(state)
        } else {
            self.state = None;
            self
        }
    }

    /// Adds a continuation we previously received from the recipient and want to send back to them.
    fn with_peer_continuation(mut self, peer_continuation: Option<&Envelope>) -> Self {
        self.peer_continuation = peer_continuation.cloned();
        self
    }

    //
    // Parsing
    //

    fn sender(&self) -> &PublicKeyBase {
        self.sender.as_ref()
    }

    fn state(&self) -> Option<&Envelope> {
        self.state.as_ref()
    }

    fn peer_continuation(&self) -> Option<&Envelope> {
        self.peer_continuation.as_ref()
    }
}

impl ResponseBehavior for SealedResponse {
    fn with_result(mut self, result: impl EnvelopeEncodable) -> Self {
        self.response = self.response.with_result(result);
        self
    }

    /// If the result is `None`, the value of the response will be the null envelope.
    fn with_optional_result(mut self, result: Option<impl EnvelopeEncodable>) -> Self {
        self.response = self.response.with_optional_result(result);
        self
    }

    /// If no error is provided, the value of the response will be the unknown value.
    fn with_error(mut self, error: impl EnvelopeEncodable) -> Self {
        self.response = self.response.with_error(error);
        self
    }

    /// If the error is `None`, the value of the response will be the unknown value.
    fn with_optional_error(mut self, error: Option<impl EnvelopeEncodable>) -> Self {
        self.response = self.response.with_optional_error(error);
        self
    }

    fn is_ok(&self) -> bool {
        self.response.is_ok()
    }

    fn is_err(&self) -> bool {
        self.response.is_err()
    }

    fn ok(&self) -> Option<&(ARID, Envelope)> {
        self.response.ok()
    }

    fn err(&self) -> Option<&(Option<ARID>, Envelope)> {
        self.response.err()
    }

    fn id(&self) -> Option<&ARID> {
        self.response.id()
    }

    fn expect_id(&self) -> &ARID {
        self.response.expect_id()
    }

    fn result(&self) -> Result<&Envelope> {
        self.response.result()
    }

    fn extract_result<T>(&self) -> Result<T>
    where
        T: TryFrom<CBOR, Error = Error> + 'static,
    {
        self.response.extract_result()
    }

    fn error(&self) -> Result<&Envelope> {
        self.response.error()
    }

    fn extract_error<T>(&self) -> Result<T>
    where
        T: TryFrom<CBOR, Error = Error> + 'static,
    {
        self.response.extract_error()
    }
}

/// SealedResponse + optional expiration date -> Envelope
impl From<(SealedResponse, Option<&Date>)> for Envelope {
    fn from((sealed_response, valid_until): (SealedResponse, Option<&Date>)) -> Self {
        let sender_continuation: Option<Envelope>;
        if let Some(state) = &sealed_response.state {
            let continuation = Continuation::new(state)
                        .with_optional_valid_until(valid_until);
            sender_continuation =
                Some((
                    continuation,
                    &sealed_response.sender
                ).into());
        } else {
            sender_continuation = None;
        }

        sealed_response.response.into_envelope()
            .add_assertion(known_values::SENDER_PUBLIC_KEY, sealed_response.sender.to_envelope())
            .add_optional_assertion(known_values::SENDER_CONTINUATION, sender_continuation)
            .add_optional_assertion(known_values::RECIPIENT_CONTINUATION, sealed_response.peer_continuation)
    }
}

/// SealedResponse -> Envelope
impl From<SealedResponse> for Envelope {
    fn from(sealed_response: SealedResponse) -> Self {
        (sealed_response, None).into()
    }
}

/// SealedResponse + optional expiration date + sender private key -> signed Envelope
impl From<(SealedResponse, Option<&Date>, &PrivateKeyBase)> for Envelope {
    fn from((sealed_response, valid_until, sender_private_key): (SealedResponse, Option<&Date>, &PrivateKeyBase)) -> Self {
        (sealed_response, valid_until).into_envelope()
            .sign(sender_private_key)
    }
}

/// SealedResponse + sender private key -> signed Envelope
impl From<(SealedResponse, &PrivateKeyBase)> for Envelope {
    fn from((sealed_response, sender_private_key): (SealedResponse, &PrivateKeyBase)) -> Self {
        (sealed_response, None, sender_private_key).into()
    }
}

/// SealedResponse + optional expiration date + sender private key + recipient public key -> signed and encrypted Envelope
impl From<(SealedResponse, Option<&Date>, &PrivateKeyBase, &PublicKeyBase)> for Envelope {
    fn from((sealed_response, valid_until, sender_private_key, recipient_public_key): (SealedResponse, Option<&Date>, &PrivateKeyBase, &PublicKeyBase)) -> Self {
        (sealed_response, valid_until, sender_private_key).into_envelope()
            .encrypt_to_recipient(recipient_public_key)
    }
}

/// SealedResponse + sender private key + recipient public key -> signed and encrypted Envelope
impl From<(SealedResponse, &PrivateKeyBase, &PublicKeyBase)> for Envelope {
    fn from((sealed_response, sender_private_key, recipient_public_key): (SealedResponse, &PrivateKeyBase, &PublicKeyBase)) -> Self {
        (sealed_response, None, sender_private_key, recipient_public_key).into()
    }
}

/// Encrypted Envelope + optional request ID + optional current date + recipient private key -> SealedResponse
impl TryFrom<(Envelope, Option<&ARID>, Option<&Date>, &PrivateKeyBase)> for SealedResponse {
    type Error = Error;

    fn try_from((encrypted_envelope, id, now, recipient_private_key): (Envelope, Option<&ARID>, Option<&Date>, &PrivateKeyBase)) -> Result<Self> {
        let signed_envelope = encrypted_envelope.decrypt_to_recipient(recipient_private_key)?;
        let sender_public_key: PublicKeyBase = signed_envelope.unwrap_envelope()?.extract_object_for_predicate(known_values::SENDER_PUBLIC_KEY)?;
        let response_envelope = signed_envelope.verify(&sender_public_key)?;
        let peer_continuation = response_envelope.optional_object_for_predicate(known_values::SENDER_CONTINUATION)?;
        if let Some(some_peer_continuation) = peer_continuation.clone() {
            if !some_peer_continuation.subject().is_encrypted() {
                bail!("Peer continuation must be encrypted");
            }
        }
        let encrypted_continuation = response_envelope.optional_object_for_predicate(known_values::RECIPIENT_CONTINUATION)?;
        let state: Option<Envelope>;
        if let Some(encrypted_continuation) = encrypted_continuation {
            let continuation = Continuation::try_from((encrypted_continuation, id, now, recipient_private_key))?;
            if continuation.state().is_null() {
                state = None;
            } else {
                state = Some(continuation.state().clone());
            }
        } else {
            state = None;
        }
        let response = Response::try_from(response_envelope)?;
        Ok(Self {
            response,
            sender: sender_public_key,
            state,
            peer_continuation,
        })
    }
}

/// Encrypted Envelope + recipient private key -> SealedResponse
impl TryFrom<(Envelope, &PrivateKeyBase)> for SealedResponse {
    type Error = Error;

    fn try_from((encrypted_envelope, recipient_private_key): (Envelope, &PrivateKeyBase)) -> Result<Self> {
        Self::try_from((encrypted_envelope, None, None, recipient_private_key))
    }
}