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
use crate::{
    filter::FilterPrefix,
    output_meta::{CompositeOutputMeta, OutputMeta, ScalarOutputMeta},
    IntoBson, MongoError,
};
use bigdecimal::{BigDecimal, FromPrimitive, ToPrimitive};
use chrono::{TimeZone, Utc};
use itertools::Itertools;
use mongodb::bson::{oid::ObjectId, spec::BinarySubtype, Binary, Bson, Document, Timestamp};
use psl::builtin_connectors::MongoDbType;
use query_structure::{
    CompositeFieldRef, Field, PrismaValue, RelationFieldRef, ScalarFieldRef, SelectedField, TypeIdentifier,
};
use serde_json::Value;
use std::{convert::TryFrom, fmt::Display};

/// Transforms a `PrismaValue` of a specific selected field into the BSON mapping as prescribed by
/// the native types or as defined by the default `TypeIdentifier` to BSON mapping.
impl IntoBson for (&SelectedField, PrismaValue) {
    fn into_bson(self) -> crate::Result<Bson> {
        let (selection, value) = self;

        match selection {
            SelectedField::Scalar(sf) => (sf, value).into_bson(),
            SelectedField::Composite(_) => todo!(), // [Composites] todo
            SelectedField::Relation(_) => unreachable!(),
            SelectedField::Virtual(_) => unreachable!(),
        }
    }
}

impl IntoBson for (&Field, PrismaValue) {
    fn into_bson(self) -> crate::Result<Bson> {
        let (selection, value) = self;

        match selection {
            Field::Scalar(sf) => (sf, value).into_bson(),
            Field::Composite(cf) => (cf, value).into_bson(),
            Field::Relation(_) => unreachable!("Relation fields should never hit the BSON conversion logic."),
        }
    }
}

impl IntoBson for (&CompositeFieldRef, PrismaValue) {
    fn into_bson(self) -> crate::Result<Bson> {
        let (cf, value) = self;

        match value {
            PrismaValue::Null => Ok(Bson::Null),
            PrismaValue::Object(pairs) if cf.is_list() => Ok(Bson::Array(vec![convert_composite_object(cf, pairs)?])),
            PrismaValue::Object(pairs) => convert_composite_object(cf, pairs),

            PrismaValue::List(values) => Ok(Bson::Array(
                values
                    .into_iter()
                    .map(|val| {
                        if let PrismaValue::Object(pairs) = val {
                            convert_composite_object(cf, pairs)
                        } else {
                            unreachable!("Composite lists must be objects")
                        }
                    })
                    .collect::<crate::Result<Vec<_>>>()?,
            )),

            _ => unreachable!("{}", value),
        }
    }
}

fn convert_composite_object(cf: &CompositeFieldRef, pairs: Vec<(String, PrismaValue)>) -> crate::Result<Bson> {
    let mut doc = Document::new();

    for (field, value) in pairs {
        let composite_type = cf.typ();
        let field = composite_type
            .find_field(&field) // Todo: This is assuming a lot by only checking the prisma names, not DB names.
            .expect("Writing unavailable composite field.");

        let converted = (&field, value).into_bson()?;

        doc.insert(field.db_name(), converted);
    }

    Ok(Bson::Document(doc))
}

impl IntoBson for (&FilterPrefix, &ScalarFieldRef) {
    fn into_bson(self) -> crate::Result<Bson> {
        let (prefix, sf) = self;

        Ok(Bson::String(prefix.render_with(sf.db_name().to_string())))
    }
}

impl IntoBson for (&FilterPrefix, &CompositeFieldRef) {
    fn into_bson(self) -> crate::Result<Bson> {
        let (prefix, cf) = self;

        Ok(Bson::String(prefix.render_with(cf.db_name().to_string())))
    }
}

impl IntoBson for (&FilterPrefix, &RelationFieldRef) {
    fn into_bson(self) -> crate::Result<Bson> {
        let (prefix, rf) = self;

        Ok(Bson::String(prefix.render_with(rf.relation().name())))
    }
}

impl IntoBson for (&ScalarFieldRef, PrismaValue) {
    fn into_bson(self) -> crate::Result<Bson> {
        let (sf, value) = self;

        let nt = sf.native_type();
        let mongo_type: Option<MongoDbType> = nt.map(|nt| nt.deserialize_native_type::<MongoDbType>().to_owned());

        // If we have a native type, use that one as source of truth for mapping, else use the type ident for defaults.
        match (mongo_type, &sf.type_identifier(), value) {
            // We assume this is always valid if it arrives here.
            (_, _, PrismaValue::Null) => Ok(Bson::Null),
            (Some(mt), _, value) => (&mt, value).into_bson(),
            (_, field_type, value) => (field_type, value).into_bson(),
        }
    }
}

/// Conversion using an explicit native type.
impl IntoBson for (&MongoDbType, PrismaValue) {
    fn into_bson(self) -> crate::Result<Bson> {
        Ok(match self {
            // ObjectId
            (MongoDbType::ObjectId, PrismaValue::String(s)) => Bson::ObjectId(ObjectId::parse_str(s)?),
            (MongoDbType::ObjectId, PrismaValue::Bytes(b)) => {
                if b.len() != 12 {
                    return Err(MongoError::MalformedObjectId(format!(
                        "ObjectIDs require exactly 12 bytes, got: {}",
                        b.len()
                    )));
                }

                let mut bytes: [u8; 12] = [0x0; 12];
                bytes.iter_mut().set_from(b);

                Bson::ObjectId(ObjectId::from_bytes(bytes))
            }

            // String
            (MongoDbType::String, PrismaValue::String(s)) => Bson::String(s),
            (MongoDbType::String, PrismaValue::Uuid(u)) => Bson::String(u.to_string()),

            // Double
            (MongoDbType::Double, PrismaValue::Int(i)) => Bson::Double(i as f64),
            (MongoDbType::Double, PrismaValue::Float(f)) => bigdecimal_to_bson_double(f)?,
            (MongoDbType::Double, PrismaValue::BigInt(b)) => Bson::Double(b.to_f64().convert(expl::MONGO_DOUBLE)?),

            // Int
            (MongoDbType::Int, PrismaValue::Int(b)) => Bson::Int32(b as i32),
            (MongoDbType::Int, PrismaValue::BigInt(b)) => Bson::Int32(b as i32),
            (MongoDbType::Int, PrismaValue::Float(b)) => Bson::Int32(b.to_i32().convert(expl::MONGO_I32)?),

            // Long
            (MongoDbType::Long, PrismaValue::Int(b)) => Bson::Int64(b),
            (MongoDbType::Long, PrismaValue::BigInt(b)) => Bson::Int64(b),
            (MongoDbType::Long, PrismaValue::Float(d)) => Bson::Int64(d.to_i64().convert(expl::MONGO_I64)?),

            // Array
            (typ, PrismaValue::List(vals)) => Bson::Array(
                vals.into_iter()
                    .map(|val| (typ, val).into_bson())
                    .collect::<crate::Result<Vec<_>>>()?,
            ),

            // BinData
            (MongoDbType::BinData, PrismaValue::Bytes(bytes)) => Bson::Binary(Binary {
                subtype: BinarySubtype::Generic,
                bytes,
            }),

            // Bool
            (MongoDbType::Bool, PrismaValue::Boolean(b)) => Bson::Boolean(b),

            // Date / Timestamp
            (MongoDbType::Date, PrismaValue::DateTime(dt)) => Bson::DateTime(dt.into()),
            (MongoDbType::Timestamp, PrismaValue::DateTime(dt)) => Bson::Timestamp(Timestamp {
                // We might not want to offer timestamp as a type, it's internal and mapping is weird.
                time: dt.timestamp() as u32,
                increment: 0,
            }),

            (MongoDbType::Json, PrismaValue::Json(json)) => {
                let val: Value = serde_json::from_str(&json)?;

                Bson::try_from(val).map_err(|_| MongoError::ConversionError {
                    from: "Stringified JSON".to_owned(),
                    to: "Mongo BSON (extJSON)".to_owned(),
                })?
            }

            // Unhandled conversions
            (mdb_type, p_val) => {
                return Err(MongoError::ConversionError {
                    from: format!("{p_val:?}"),
                    to: format!("{mdb_type:?}"),
                })
            }
        })
    }
}

/// Convert the `PrismaValue` into Bson using the type hint given by `TypeIdentifier`.
impl IntoBson for (&TypeIdentifier, PrismaValue) {
    fn into_bson(self) -> crate::Result<Bson> {
        Ok(match self {
            // String & UUID
            (TypeIdentifier::String, PrismaValue::String(s)) => Bson::String(s),
            (TypeIdentifier::String, PrismaValue::Uuid(s)) => Bson::String(s.to_string()),
            (TypeIdentifier::UUID, PrismaValue::Uuid(s)) => Bson::String(s.to_string()),
            (TypeIdentifier::UUID, PrismaValue::String(s)) => Bson::String(s),

            // Enums
            (TypeIdentifier::Enum(_), PrismaValue::String(s)) => Bson::String(s),
            (TypeIdentifier::Enum(_), PrismaValue::Enum(s)) => Bson::String(s),

            // Bool
            (TypeIdentifier::Boolean, PrismaValue::Boolean(b)) => Bson::Boolean(b),

            // DateTime
            (TypeIdentifier::DateTime, PrismaValue::DateTime(dt)) => Bson::DateTime(dt.into()),

            // Int
            (TypeIdentifier::Int, PrismaValue::Int(i)) => Bson::Int64(i),
            (TypeIdentifier::Int, PrismaValue::BigInt(i)) => Bson::Int64(i),
            (TypeIdentifier::Int, PrismaValue::Float(dec)) => Bson::Int64(dec.to_i64().convert(expl::MONGO_I64)?),

            // BigInt
            (TypeIdentifier::BigInt, PrismaValue::BigInt(i)) => Bson::Int64(i),
            (TypeIdentifier::BigInt, PrismaValue::Int(i)) => Bson::Int64(i),
            (TypeIdentifier::BigInt, PrismaValue::Float(dec)) => Bson::Int64(dec.to_i64().convert(expl::MONGO_I64)?),

            // Float
            (TypeIdentifier::Float, PrismaValue::Float(dec)) => bigdecimal_to_bson_double(dec)?,
            (TypeIdentifier::Float, PrismaValue::Int(i)) => Bson::Double(i.to_f64().convert(expl::MONGO_DOUBLE)?),
            (TypeIdentifier::Float, PrismaValue::BigInt(i)) => Bson::Double(i.to_f64().convert(expl::MONGO_DOUBLE)?),

            // Decimal (todo properly when the driver supports dec128)
            (TypeIdentifier::Decimal, PrismaValue::Float(dec)) => {
                Bson::Double(dec.to_f64().convert(expl::MONGO_DOUBLE)?)
            }
            (TypeIdentifier::Decimal, PrismaValue::Int(i)) => Bson::Double(i.to_f64().convert(expl::MONGO_DOUBLE)?),
            (TypeIdentifier::Decimal, PrismaValue::BigInt(i)) => Bson::Double(i.to_f64().convert(expl::MONGO_DOUBLE)?),

            // Bytes
            (TypeIdentifier::Bytes, PrismaValue::Bytes(bytes)) => Bson::Binary(Binary {
                subtype: BinarySubtype::Generic,
                bytes,
            }),

            // Json
            (TypeIdentifier::Json, PrismaValue::Json(json)) => {
                let val: Value = serde_json::from_str(&json)?;
                Bson::try_from(val).map_err(|_| MongoError::ConversionError {
                    from: "Stringified JSON".to_owned(),
                    to: "Mongo BSON (extJSON)".to_owned(),
                })?
            }

            // List values
            (typ, PrismaValue::List(vals)) => Bson::Array(
                vals.into_iter()
                    .map(|val| (typ, val).into_bson())
                    .collect::<crate::Result<Vec<_>>>()?,
            ),

            // Unhandled mappings
            (TypeIdentifier::Unsupported, _) => unreachable!("Unsupported types should never hit the connector."),

            (ident, val) => {
                return Err(MongoError::Unsupported(format!(
                    "Unhandled and unsupported value mapping for MongoDB: {val} as {ident:?}.",
                )))
            }
        })
    }
}

// Parsing of values coming from MongoDB back to the connector / core.
pub fn value_from_bson(bson: Bson, meta: &OutputMeta) -> crate::Result<PrismaValue> {
    match meta {
        OutputMeta::Scalar(scalar_meta) => read_scalar_value(bson, scalar_meta),
        OutputMeta::Composite(composite_meta) => read_composite_value(bson, composite_meta),
    }
}

fn read_scalar_value(bson: Bson, meta: &ScalarOutputMeta) -> crate::Result<PrismaValue> {
    let val = match (&meta.ident, bson) {
        // We expect a list to be returned.
        (type_identifier, bson) if meta.list => match bson {
            Bson::Null => PrismaValue::List(Vec::new()),

            Bson::Array(list) => PrismaValue::List(
                list.into_iter()
                    .map(|list_val| value_from_bson(list_val, &meta.strip_list().into()))
                    .collect::<crate::Result<Vec<_>>>()?,
            ),

            _ => {
                return Err(MongoError::ConversionError {
                    from: format!("{bson}"),
                    to: format!("List of {type_identifier:?}"),
                });
            }
        },

        // Null catch-all.
        (_, Bson::Null) => {
            if let Some(ref dv) = meta.default {
                dv.clone()
            } else {
                PrismaValue::Null
            }
        }

        // String + UUID + Enum
        (TypeIdentifier::String, Bson::String(s)) => PrismaValue::String(s),
        (TypeIdentifier::String, Bson::ObjectId(oid)) => PrismaValue::String(oid.to_string()),
        (TypeIdentifier::UUID, Bson::String(s)) => PrismaValue::Uuid(uuid::Uuid::parse_str(&s)?),
        (TypeIdentifier::Enum(_), Bson::String(s)) => PrismaValue::Enum(s),

        // Bool
        (TypeIdentifier::Boolean, Bson::Boolean(b)) => PrismaValue::Boolean(b),

        // Int
        (TypeIdentifier::Int, Bson::Int64(i)) => PrismaValue::Int(i),
        (TypeIdentifier::Int, Bson::Int32(i)) => PrismaValue::Int(i as i64),
        (TypeIdentifier::Int, Bson::Double(i)) => PrismaValue::Int(i as i64),
        (TypeIdentifier::Int, Bson::Boolean(bool)) => PrismaValue::Int(bool as i64),

        // BigInt
        (TypeIdentifier::BigInt, Bson::Int64(i)) => PrismaValue::BigInt(i),
        (TypeIdentifier::BigInt, Bson::Int32(i)) => PrismaValue::BigInt(i as i64),
        (TypeIdentifier::BigInt, Bson::Boolean(bool)) => PrismaValue::BigInt(bool as i64),

        // Floats
        (TypeIdentifier::Float, Bson::Double(f)) => {
            PrismaValue::Float(BigDecimal::from_f64(f).convert(expl::PRISMA_FLOAT)?.normalized())
        }
        (TypeIdentifier::Float, Bson::Int32(i)) => {
            PrismaValue::Float(BigDecimal::from_i64(i as i64).convert(expl::PRISMA_FLOAT)?.normalized())
        }
        (TypeIdentifier::Float, Bson::Int64(i)) => {
            PrismaValue::Float(BigDecimal::from_i64(i).convert(expl::PRISMA_FLOAT)?.normalized())
        }

        // Decimals
        (TypeIdentifier::Decimal, Bson::Double(f)) => {
            PrismaValue::Float(BigDecimal::from_f64(f).convert(expl::PRISMA_FLOAT)?.normalized())
        }
        (TypeIdentifier::Decimal, Bson::Int32(i)) => {
            PrismaValue::Float(BigDecimal::from_i64(i as i64).convert(expl::PRISMA_FLOAT)?.normalized())
        }
        (TypeIdentifier::Decimal, Bson::Int64(i)) => {
            PrismaValue::Float(BigDecimal::from_i64(i).convert(expl::PRISMA_FLOAT)?.normalized())
        }

        // DateTime
        (TypeIdentifier::DateTime, Bson::DateTime(dt)) => PrismaValue::DateTime(dt.to_chrono().into()),
        (TypeIdentifier::DateTime, Bson::Timestamp(ts)) => {
            PrismaValue::DateTime(Utc.timestamp_opt(ts.time as i64, 0).unwrap().into())
        }

        // Bytes
        (TypeIdentifier::Bytes, Bson::Binary(bin)) => PrismaValue::Bytes(bin.bytes),
        (TypeIdentifier::Bytes, Bson::ObjectId(oid)) => PrismaValue::Bytes(oid.bytes().to_vec()),

        // Json
        (TypeIdentifier::Json, bson) => PrismaValue::Json(serde_json::to_string(&bson.into_relaxed_extjson())?),

        (ident, bson) => {
            return Err(MongoError::ConversionError {
                from: bson.to_string(),
                to: format!("{ident:?}"),
            })
        }
    };

    Ok(val)
}

fn read_composite_value(bson: Bson, meta: &CompositeOutputMeta) -> crate::Result<PrismaValue> {
    let val = if meta.list {
        match bson {
            // Coerce null to empty list (Prisma doesn't have nullable lists)
            Bson::Null => PrismaValue::List(Vec::new()),

            Bson::Array(list) => PrismaValue::List(
                list.into_iter()
                    .map(|list_val| value_from_bson(list_val, &meta.strip_list().into()))
                    .collect::<crate::Result<Vec<_>>>()?,
            ),

            _ => {
                return Err(MongoError::ConversionError {
                    from: format!("{bson}"),
                    to: "List".to_owned(),
                });
            }
        }
    } else {
        // Null catch-all.
        match bson {
            Bson::Null => PrismaValue::Null,
            Bson::Document(mut doc) => {
                let mut pairs = Vec::with_capacity(doc.len());

                // This approach ensures that missing fields are filled,
                // so that the serialization can decide if this is invalid or not.
                for (field, meta) in meta.inner.iter() {
                    match (doc.remove(field), meta) {
                        (Some(value), _) => {
                            let value = value_from_bson(value, meta)?;
                            pairs.push((field.clone(), value))
                        }
                        // Coerce missing scalar lists as empty lists
                        (None, OutputMeta::Composite(meta)) if meta.list => {
                            pairs.push((field.clone(), PrismaValue::List(Vec::new())))
                        }
                        // Coerce missing scalars with their default values
                        (None, OutputMeta::Scalar(meta)) if meta.default.is_some() => {
                            pairs.push((field.clone(), meta.default.clone().unwrap()))
                        }
                        // Fill missing fields without default values with nulls.
                        (None, _) => pairs.push((field.clone(), PrismaValue::Null)),
                    }
                }

                PrismaValue::Object(pairs)
            }
            bson => {
                return Err(MongoError::ConversionError {
                    from: format!("{bson:?}"),
                    to: "Document".to_owned(),
                })
            }
        }
    };

    Ok(val)
}

trait UnwrapConversion<T: Display> {
    fn convert(self, to_type_explanation: &str) -> crate::Result<T>;
}

impl<T> UnwrapConversion<T> for Option<T>
where
    T: Display,
{
    fn convert(self, to_type_explanation: &str) -> crate::Result<T> {
        match self {
            Some(i) => Ok(i),
            None => Err(MongoError::ConversionError {
                from: format_opt(self),
                to: to_type_explanation.to_owned(),
            }),
        }
    }
}

fn format_opt<T: Display>(opt: Option<T>) -> String {
    match opt {
        Some(t) => format!("{t}"),
        None => "None".to_owned(),
    }
}

fn bigdecimal_to_bson_double(dec: BigDecimal) -> crate::Result<Bson> {
    let dec_str = dec.to_string();
    let f64_val = dec_str.parse::<f64>().ok();
    let converted = f64_val.convert(expl::MONGO_DOUBLE)?;

    Ok(Bson::Double(converted))
}

/// Explanation constants for conversion errors.
mod expl {
    #![allow(dead_code)]

    pub const MONGO_DOUBLE: &str = "MongoDB Double (64bit)";
    pub const MONGO_I32: &str = "MongoDB Int (32 bit)";
    pub const MONGO_I64: &str = "MongoDB Int (64 bit)";

    pub const PRISMA_FLOAT: &str = "Prisma Float (BigDecimal)";
    pub const PRISMA_BIGINT: &str = "Prisma BigInt (64 bit)";
    pub const PRISMA_INT: &str = "Prisma Int (64 bit)";
}