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
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
use super::data_sources::{DataSource, DataSourceStatus};
use super::names::{InvalidName, Name};
use super::providers::Error;
use crate::blobs::Blob;
use crate::notebooks::Cell;
use crate::providers::{ConfigSchema, ProviderConfig, SupportedQueryType};
use crate::timestamps::Timestamp;
use base64uuid::{Base64Uuid, InvalidId};
#[cfg(feature = "fp-bindgen")]
use fp_bindgen::prelude::Serializable;
use serde::{Deserialize, Serialize};
use std::fmt::{self, Debug, Formatter};
use std::{convert::TryFrom, str::FromStr};
use strum_macros::Display;
use typed_builder::TypedBuilder;

#[derive(Clone, Serialize, Deserialize, Debug, PartialEq, Eq, TypedBuilder)]
#[non_exhaustive]
#[serde(rename_all = "camelCase")]
pub struct Proxy {
    #[builder(setter(into))]
    pub id: Base64Uuid,

    pub name: Name,

    pub status: ProxyStatus,

    #[builder(default)]
    pub data_sources: Vec<DataSource>,

    #[builder(default, setter(into, strip_option))]
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub token: Option<ProxyToken>,

    #[builder(default, setter(into, strip_option))]
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,

    #[builder(setter(into))]
    pub created_at: Timestamp,

    #[builder(setter(into))]
    pub updated_at: Timestamp,
}

#[derive(Clone, Serialize, Deserialize, Debug, PartialEq, Eq, TypedBuilder)]
#[cfg_attr(
    feature = "fp-bindgen",
    derive(Serializable),
    fp(rust_module = "fiberplane_models::proxies")
)]
#[non_exhaustive]
#[serde(rename_all = "camelCase")]
pub struct ProxySummary {
    #[builder(setter(into))]
    pub id: Base64Uuid,

    pub name: Name,

    pub status: ProxyStatus,
}

impl From<Proxy> for ProxySummary {
    fn from(proxy: Proxy) -> Self {
        Self {
            id: proxy.id,
            name: proxy.name,
            status: proxy.status,
        }
    }
}

#[derive(Serialize, Deserialize, Debug, PartialEq, Eq, Clone, Copy, Display)]
#[cfg_attr(
    feature = "fp-bindgen",
    derive(Serializable),
    fp(rust_module = "fiberplane_models::proxies")
)]
#[non_exhaustive]
#[serde(rename_all = "snake_case")]
pub enum ProxyStatus {
    Connected,
    Disconnected,
}

#[derive(Clone, Serialize, Deserialize, Debug, PartialEq, Eq, TypedBuilder)]
#[cfg_attr(
    feature = "fp-bindgen",
    derive(Serializable),
    fp(rust_module = "fiberplane_models::proxies")
)]
#[non_exhaustive]
#[serde(rename_all = "camelCase")]
pub struct NewProxy {
    pub name: Name,

    #[builder(default, setter(into, strip_option))]
    pub description: Option<String>,
}

#[derive(Debug, thiserror::Error, PartialEq, Eq)]
#[cfg_attr(
    feature = "fp-bindgen",
    derive(Serializable),
    fp(rust_module = "fiberplane_models::proxies")
)]
#[non_exhaustive]
pub enum InvalidProxyToken {
    #[error("Invalid workspace ID")]
    InvalidWorkspaceId(#[from] InvalidId),
    #[error("Invalid proxy name")]
    InvalidProxyName(#[from] InvalidName),
    #[error("Missing token")]
    MissingToken,
}

/// This represents the auth token that is generated by the API and used
/// by the proxy to authenticate its websocket connection.
#[derive(Clone, Serialize, Deserialize, PartialEq, Eq, TypedBuilder)]
#[cfg_attr(
    feature = "fp-bindgen",
    derive(Serializable),
    fp(rust_module = "fiberplane_models::proxies")
)]
#[non_exhaustive]
#[serde(try_from = "&str", into = "String")]
pub struct ProxyToken {
    #[builder(setter(into))]
    pub workspace_id: Base64Uuid,

    pub proxy_name: Name,

    #[builder(default, setter(into))]
    pub token: String,
}

impl Debug for ProxyToken {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        f.debug_struct("ProxyToken")
            .field("workspace_id", &self.workspace_id)
            .field("proxy_name", &self.proxy_name)
            .field("token", &"[REDACTED]")
            .finish()
    }
}

impl From<ProxyToken> for String {
    fn from(token: ProxyToken) -> Self {
        format!(
            "{}:{}:{}",
            token.workspace_id, token.proxy_name, token.token
        )
    }
}

impl FromStr for ProxyToken {
    type Err = InvalidProxyToken;

    fn from_str(s: &str) -> Result<Self, Self::Err> {
        let mut parts = s.split(':');

        let workspace_id = parts.next().unwrap_or_default().parse::<Base64Uuid>()?;
        let proxy_name = Name::new(parts.next().unwrap_or_default())?;
        let token = parts
            .next()
            .ok_or(InvalidProxyToken::MissingToken)?
            .to_string();

        Ok(ProxyToken {
            workspace_id,
            proxy_name,
            token,
        })
    }
}

impl TryFrom<&str> for ProxyToken {
    type Error = InvalidProxyToken;

    fn try_from(s: &str) -> Result<Self, Self::Error> {
        Self::from_str(s)
    }
}

#[derive(Clone, Serialize, Deserialize, Debug, PartialEq, Eq, TypedBuilder)]
#[cfg_attr(
    feature = "fp-bindgen",
    derive(Serializable),
    fp(rust_module = "fiberplane_models::proxies")
)]
#[non_exhaustive]
#[serde(rename_all = "camelCase")]
pub struct CreateCellsApiRequest {
    pub response: Blob,

    #[builder(setter(into))]
    pub query_type: String,
}

#[derive(Clone, Serialize, Deserialize, Debug, PartialEq, Eq, TypedBuilder)]
#[cfg_attr(
    feature = "fp-bindgen",
    derive(Serializable),
    fp(rust_module = "fiberplane_models::proxies")
)]
#[non_exhaustive]
#[serde(rename_all = "camelCase")]
pub struct ExtractDataApiRequest {
    pub response: Blob,

    #[builder(setter(into))]
    pub mime_type: String,

    #[builder(default, setter(into, strip_option))]
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub query: Option<String>,
}

/// Messages sent to the Proxy
#[derive(Debug, Deserialize, Serialize, TypedBuilder)]
#[cfg_attr(
    feature = "fp-bindgen",
    derive(Serializable),
    fp(rust_module = "fiberplane_models::proxies")
)]
#[non_exhaustive]
#[serde(rename_all = "camelCase")]
pub struct ServerMessage {
    #[builder(setter(into))]
    pub op_id: Base64Uuid,

    pub data_source_name: Name,

    pub protocol_version: u8,

    #[serde(flatten)]
    pub payload: ServerMessagePayload,
}

impl ServerMessage {
    pub fn deserialize_msgpack(
        input: impl AsRef<[u8]>,
    ) -> Result<ServerMessage, rmp_serde::decode::Error> {
        rmp_serde::from_slice(input.as_ref())
    }

    pub fn serialize_msgpack(&self) -> Vec<u8> {
        rmp_serde::to_vec(&self).expect("MessgePack serialization error")
    }

    pub fn op_id(&self) -> Option<Base64Uuid> {
        Some(self.op_id)
    }

    fn payload_with_header(
        payload: ServerMessagePayload,
        data_source_name: Name,
        protocol_version: u8,
        op_id: Base64Uuid,
    ) -> Self {
        Self {
            op_id,
            data_source_name,
            protocol_version,
            payload,
        }
    }

    pub fn new_invoke_proxy_request(
        data: Vec<u8>,
        data_source_name: Name,
        protocol_version: u8,
        op_id: Base64Uuid,
    ) -> Self {
        Self::payload_with_header(
            ServerMessagePayload::Invoke(InvokeRequest { data }),
            data_source_name,
            protocol_version,
            op_id,
        )
    }

    pub fn new_create_cells_request(
        data: Blob,
        query_type: String,
        data_source_name: Name,
        protocol_version: u8,
        op_id: Base64Uuid,
    ) -> Self {
        Self::payload_with_header(
            ServerMessagePayload::CreateCells(CreateCellsRequest {
                response: data,
                query_type,
            }),
            data_source_name,
            protocol_version,
            op_id,
        )
    }

    pub fn new_extract_data_request(
        data: Blob,
        mime_type: String,
        query: Option<String>,
        data_source_name: Name,
        protocol_version: u8,
        op_id: Base64Uuid,
    ) -> Self {
        Self::payload_with_header(
            ServerMessagePayload::ExtractData(ExtractDataRequest {
                response: data,
                mime_type,
                query,
            }),
            data_source_name,
            protocol_version,
            op_id,
        )
    }

    pub fn new_get_config_schema_request(
        data_source_name: Name,
        protocol_version: u8,
        op_id: Base64Uuid,
    ) -> Self {
        Self::payload_with_header(
            ServerMessagePayload::GetConfigSchema(GetConfigSchemaRequest {}),
            data_source_name,
            protocol_version,
            op_id,
        )
    }

    pub fn new_get_supported_query_types_request(
        config: ProviderConfig,
        data_source_name: Name,
        protocol_version: u8,
        op_id: Base64Uuid,
    ) -> Self {
        Self::payload_with_header(
            ServerMessagePayload::GetSupportedQueryTypes(GetSupportedQueryTypesRequest { config }),
            data_source_name,
            protocol_version,
            op_id,
        )
    }
}

/// Messages sent to the Proxy
#[derive(Debug, Deserialize, Serialize)]
#[cfg_attr(
    feature = "fp-bindgen",
    derive(Serializable),
    fp(rust_module = "fiberplane_models::proxies")
)]
#[non_exhaustive]
#[serde(tag = "type", rename_all = "camelCase")]
pub enum ServerMessagePayload {
    /// A request to call the `invoke` or `invoke2` exported binding
    #[serde(rename = "invokeProxy")] // Backwards compatibility alias
    Invoke(InvokeRequest),
    /// A request to call the `create_cells` exported binding
    CreateCells(CreateCellsRequest),
    /// A request to call the `extract_data` exported binding
    ExtractData(ExtractDataRequest),
    /// A request to call the `get_config_schema` exported binding
    GetConfigSchema(GetConfigSchemaRequest),
    /// A request to call the `get_supported_query_types` exported binding
    GetSupportedQueryTypes(GetSupportedQueryTypesRequest),
}

#[derive(Deserialize, Serialize, TypedBuilder)]
#[cfg_attr(
    feature = "fp-bindgen",
    derive(Serializable),
    fp(rust_module = "fiberplane_models::proxies")
)]
#[non_exhaustive]
#[serde(rename_all = "camelCase")]
pub struct InvokeRequest {
    #[serde(with = "serde_bytes")]
    pub data: Vec<u8>,
}

impl Debug for InvokeRequest {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("InvokeRequest")
            .field("data", &format!("[{} bytes]", self.data.len()))
            .finish()
    }
}

#[derive(Deserialize, Serialize, TypedBuilder)]
#[cfg_attr(
    feature = "fp-bindgen",
    derive(Serializable),
    fp(rust_module = "fiberplane_models::proxies")
)]
#[non_exhaustive]
#[serde(rename_all = "camelCase")]
pub struct CreateCellsRequest {
    pub response: Blob,

    #[builder(setter(into))]
    pub query_type: String,
}

impl Debug for CreateCellsRequest {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("CreateCellsRequest")
            .field("query_type", &self.query_type)
            .field("response", &format!("[{} bytes]", self.response.data.len()))
            .finish()
    }
}

#[derive(Deserialize, Serialize, TypedBuilder)]
#[cfg_attr(
    feature = "fp-bindgen",
    derive(Serializable),
    fp(rust_module = "fiberplane_models::proxies")
)]
#[non_exhaustive]
#[serde(rename_all = "camelCase")]
pub struct ExtractDataRequest {
    pub response: Blob,

    #[builder(setter(into))]
    pub mime_type: String,

    #[builder(default, setter(into, strip_option))]
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub query: Option<String>,
}

impl Debug for ExtractDataRequest {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("ExtractDataRequest")
            .field("mime_type", &self.mime_type)
            .field("query", &self.query)
            .field("response", &format!("[{} bytes]", self.response.data.len()))
            .finish()
    }
}

#[derive(Deserialize, Serialize)]
#[cfg_attr(
    feature = "fp-bindgen",
    derive(Serializable),
    fp(rust_module = "fiberplane_models::proxies")
)]
#[non_exhaustive]
#[serde(rename_all = "camelCase")]
pub struct GetConfigSchemaRequest {}

impl Debug for GetConfigSchemaRequest {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("ConfigSchemaRequest").finish()
    }
}

#[derive(Deserialize, Serialize, Debug, TypedBuilder)]
#[cfg_attr(
    feature = "fp-bindgen",
    derive(Serializable),
    fp(rust_module = "fiberplane_models::proxies")
)]
#[non_exhaustive]
#[serde(rename_all = "camelCase")]
pub struct GetSupportedQueryTypesRequest {
    pub config: ProviderConfig,
}

/// Messages sent from the Proxy
#[derive(Debug, Deserialize, Serialize, TypedBuilder)]
#[cfg_attr(
    feature = "fp-bindgen",
    derive(Serializable),
    fp(rust_module = "fiberplane_models::proxies")
)]
#[non_exhaustive]
#[serde(rename_all = "camelCase")]
pub struct ProxyMessage {
    #[builder(default, setter(into, strip_option))]
    pub op_id: Option<Base64Uuid>,

    #[serde(flatten)]
    pub payload: ProxyMessagePayload,
}

impl ProxyMessage {
    fn response(payload: ProxyMessagePayload, op_id: Base64Uuid) -> Self {
        Self {
            op_id: Some(op_id),
            payload,
        }
    }

    fn notification(payload: ProxyMessagePayload) -> Self {
        Self {
            op_id: None,
            payload,
        }
    }

    pub fn new_error_response(error: Error, op_id: Base64Uuid) -> Self {
        Self::response(ProxyMessagePayload::Error(ErrorMessage { error }), op_id)
    }
    pub fn new_invoke_proxy_response(data: Vec<u8>, op_id: Base64Uuid) -> Self {
        Self::response(
            ProxyMessagePayload::InvokeProxyResponse(InvokeProxyResponseMessage { data }),
            op_id,
        )
    }
    pub fn new_create_cells_response(cells: Result<Vec<Cell>, Error>, op_id: Base64Uuid) -> Self {
        Self::response(
            ProxyMessagePayload::CreateCellsResponse(CreateCellsResponseMessage { cells }),
            op_id,
        )
    }
    pub fn new_extract_data_response(data: Result<Blob, Error>, op_id: Base64Uuid) -> Self {
        Self::response(
            ProxyMessagePayload::ExtractDataResponse(ExtractDataResponseMessage { data }),
            op_id,
        )
    }
    pub fn new_config_schema_response(schema: ConfigSchema, op_id: Base64Uuid) -> Self {
        Self::response(
            ProxyMessagePayload::GetConfigSchemaResponse(GetConfigSchemaResponseMessage { schema }),
            op_id,
        )
    }
    pub fn new_supported_query_types_response(
        queries: Vec<SupportedQueryType>,
        op_id: Base64Uuid,
    ) -> Self {
        Self::response(
            ProxyMessagePayload::GetSupportedQueryTypesResponse(
                GetSupportedQueryTypesResponseMessage { queries },
            ),
            op_id,
        )
    }
    pub fn new_set_data_sources_notification(data_sources: Vec<UpsertProxyDataSource>) -> Self {
        Self::notification(ProxyMessagePayload::SetDataSources(SetDataSourcesMessage {
            data_sources,
        }))
    }
}

/// Messages sent from the Proxy
#[derive(Debug, Deserialize, Serialize)]
#[cfg_attr(
    feature = "fp-bindgen",
    derive(Serializable),
    fp(rust_module = "fiberplane_models::proxies")
)]
#[non_exhaustive]
#[serde(tag = "type", rename_all = "camelCase")]
pub enum ProxyMessagePayload {
    SetDataSources(SetDataSourcesMessage),
    InvokeProxyResponse(InvokeProxyResponseMessage),
    CreateCellsResponse(CreateCellsResponseMessage),
    ExtractDataResponse(ExtractDataResponseMessage),
    GetConfigSchemaResponse(GetConfigSchemaResponseMessage),
    GetSupportedQueryTypesResponse(GetSupportedQueryTypesResponseMessage),
    Error(ErrorMessage),
}

impl From<(ErrorMessage, Base64Uuid)> for ProxyMessage {
    fn from((message, op_id): (ErrorMessage, Base64Uuid)) -> Self {
        Self::response(ProxyMessagePayload::Error(message), op_id)
    }
}

#[derive(Deserialize, Serialize, TypedBuilder)]
#[cfg_attr(
    feature = "fp-bindgen",
    derive(Serializable),
    fp(rust_module = "fiberplane_models::proxies")
)]
#[non_exhaustive]
#[serde(rename_all = "camelCase")]
pub struct InvokeProxyResponseMessage {
    #[serde(with = "serde_bytes")]
    pub data: Vec<u8>,
}

impl Debug for InvokeProxyResponseMessage {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("InvokeProxyResponseMessage")
            .field("data", &format!("[{} bytes]", self.data.len()))
            .finish()
    }
}

#[derive(Deserialize, Serialize, Debug, TypedBuilder)]
#[cfg_attr(
    feature = "fp-bindgen",
    derive(Serializable),
    fp(rust_module = "fiberplane_models::proxies")
)]
#[non_exhaustive]
#[serde(rename_all = "camelCase")]
pub struct ExtractDataResponseMessage {
    pub data: Result<Blob, Error>,
}

#[derive(Deserialize, Serialize, Debug, TypedBuilder)]
#[cfg_attr(
    feature = "fp-bindgen",
    derive(Serializable),
    fp(rust_module = "fiberplane_models::proxies")
)]
#[non_exhaustive]
#[serde(rename_all = "camelCase")]
pub struct CreateCellsResponseMessage {
    pub cells: Result<Vec<Cell>, Error>,
}

#[derive(Deserialize, Serialize, Debug, TypedBuilder)]
#[cfg_attr(
    feature = "fp-bindgen",
    derive(Serializable),
    fp(rust_module = "fiberplane_models::proxies")
)]
#[non_exhaustive]
#[serde(rename_all = "camelCase")]
pub struct GetConfigSchemaResponseMessage {
    pub schema: ConfigSchema,
}

#[derive(Deserialize, Serialize, Debug, TypedBuilder)]
#[cfg_attr(
    feature = "fp-bindgen",
    derive(Serializable),
    fp(rust_module = "fiberplane_models::proxies")
)]
#[non_exhaustive]
#[serde(rename_all = "camelCase")]
pub struct GetSupportedQueryTypesResponseMessage {
    pub queries: Vec<SupportedQueryType>,
}

#[derive(Debug, Deserialize, Serialize, TypedBuilder)]
#[cfg_attr(
    feature = "fp-bindgen",
    derive(Serializable),
    fp(rust_module = "fiberplane_models::proxies")
)]
#[non_exhaustive]
#[serde(rename_all = "camelCase")]
pub struct ErrorMessage {
    pub error: Error,
}

impl ProxyMessage {
    pub fn deserialize_msgpack(
        input: impl AsRef<[u8]>,
    ) -> Result<ProxyMessage, rmp_serde::decode::Error> {
        rmp_serde::from_slice(input.as_ref())
    }

    pub fn serialize_msgpack(&self) -> Vec<u8> {
        rmp_serde::to_vec_named(&self).expect("MessgePack serialization error")
    }

    pub fn op_id(&self) -> Option<Base64Uuid> {
        self.op_id
    }
}

#[derive(Debug, Deserialize, Serialize, TypedBuilder)]
#[cfg_attr(
    feature = "fp-bindgen",
    derive(Serializable),
    fp(rust_module = "fiberplane_models::proxies")
)]
#[non_exhaustive]
#[serde(rename_all = "camelCase")]
pub struct SetDataSourcesMessage {
    pub data_sources: Vec<UpsertProxyDataSource>,
}

#[derive(Debug, Deserialize, Serialize, PartialEq, Eq, Clone, TypedBuilder)]
#[cfg_attr(
    feature = "fp-bindgen",
    derive(Serializable),
    fp(rust_module = "fiberplane_models::proxies")
)]
#[non_exhaustive]
#[serde(tag = "type", rename_all = "camelCase")]
pub struct UpsertProxyDataSource {
    pub name: Name,

    #[builder(default, setter(into, strip_option))]
    pub description: Option<String>,

    #[builder(setter(into))]
    pub provider_type: String,

    #[builder(default)]
    #[serde(default)]
    pub protocol_version: u8,

    #[serde(flatten)]
    pub status: DataSourceStatus,
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::providers::Error;

    #[test]
    fn serialization_deserialization() {
        let data_sources = vec![
            UpsertProxyDataSource {
                name: Name::from_static("prometheus-prod"),
                provider_type: "prometheus".to_string(),
                protocol_version: 2,
                description: Some("Production Prometheus".to_string()),
                status: DataSourceStatus::Connected,
            },
            UpsertProxyDataSource {
                name: Name::from_static("elasticsearch-prod"),
                provider_type: "elasticsearch".to_string(),
                protocol_version: 1,
                description: None,
                status: DataSourceStatus::Error(Error::NotFound),
            },
        ];
        let message = ProxyMessage::new_set_data_sources_notification(data_sources.clone());
        let serialized = message.serialize_msgpack();
        let deserialized = ProxyMessage::deserialize_msgpack(serialized).unwrap();
        if let ProxyMessage {
            op_id: None,
            payload: ProxyMessagePayload::SetDataSources(set_data_sources),
        } = deserialized
        {
            assert_eq!(set_data_sources.data_sources, data_sources)
        } else {
            panic!("Unexpected message type");
        }
    }

    #[test]
    fn backwards_compatibility() {
        // The test checks that an old message can be deserialized into a new one
        mod old {
            use crate::names::Name;
            use base64uuid::Base64Uuid;
            use serde::{Deserialize, Serialize};

            #[derive(Debug, Deserialize, Serialize)]
            #[serde(tag = "type", rename_all = "camelCase")]
            pub enum ServerMessage {
                InvokeProxy(InvokeProxyMessage),
            }

            #[derive(Debug, Deserialize, Serialize, Clone)]
            #[serde(rename_all = "camelCase")]
            pub struct InvokeProxyMessage {
                pub op_id: Base64Uuid,
                pub data_source_name: Name,
                #[serde(with = "serde_bytes")]
                pub data: Vec<u8>,
                pub protocol_version: u8,
            }
        }

        let op_id = Base64Uuid::parse_str("34edc58d-f8ec-4c95-bce0-c2ae8800e6ef").unwrap();
        let data_source_name = Name::from_static("test-name");
        let data = b"aieu".to_vec();
        let old_message = old::InvokeProxyMessage {
            op_id,
            data_source_name,
            protocol_version: 12,
            data,
        };

        let new_message: ServerMessage = rmp_serde::from_slice(
            &rmp_serde::to_vec_named(&old::ServerMessage::InvokeProxy(old_message.clone()))
                .unwrap(),
        )
        .unwrap();

        assert_eq!(new_message.op_id, old_message.op_id);
        assert_eq!(new_message.data_source_name, old_message.data_source_name);
        assert_eq!(new_message.protocol_version, old_message.protocol_version);

        if let ServerMessagePayload::Invoke(response) = new_message.payload {
            assert_eq!(response.data, old_message.data)
        } else {
            panic!("Wrong variant of ServerMessage deserialized. Expecting Invoke")
        }
    }
}