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
use super::*;
use crate::{
    error::{DecorateErrorWithFieldInformationExtension, MongoError},
    filter::{FilterPrefix, MongoFilter, MongoFilterVisitor},
    output_meta,
    query_builder::MongoReadQueryBuilder,
    query_strings::{Aggregate, DeleteMany, DeleteOne, Find, InsertMany, InsertOne, RunCommand, UpdateMany, UpdateOne},
    root_queries::raw::{MongoCommand, MongoOperation},
    IntoBson,
};
use connector_interface::*;
use mongodb::{
    bson::{doc, Document},
    error::ErrorKind,
    options::InsertManyOptions,
    ClientSession, Collection, Database,
};
use query_structure::{Model, PrismaValue, SelectionResult};
use std::{collections::HashMap, convert::TryInto};
use tracing::{info_span, Instrument};
use update::IntoUpdateDocumentExtension;

/// Create a single record to the database resulting in a
/// `RecordProjection` as an identifier pointing to the just-created document.
pub async fn create_record<'conn>(
    database: &Database,
    session: &mut ClientSession,
    model: &Model,
    mut args: WriteArgs,
) -> crate::Result<SingleRecord> {
    let coll = database.collection::<Document>(model.db_name());

    let span = info_span!(
        "prisma:engine:db_query",
        user_facing = true,
        "db.statement" = &format_args!("db.{}.insertOne(*)", coll.name())
    );

    let id_field = pick_singular_id(model);

    // Fields to write to the document.
    // Todo: Do we need to write null for everything? There's something with nulls and exists that might impact
    //       query capability (e.g. query for field: null may need to check for exist as well?)
    let fields: Vec<_> = model
        .fields()
        .non_relational()
        .iter()
        .filter(|field| args.has_arg_for(field.db_name()))
        .cloned()
        .collect();

    let mut doc = Document::new();
    let id_meta = output_meta::from_scalar_field(&id_field);

    for field in fields {
        let db_name = field.db_name();
        let value = args.take_field_value(db_name).unwrap();
        let value: PrismaValue = value
            .try_into()
            .expect("Create calls can only use PrismaValue write expressions (right now).");

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

        doc.insert(field.db_name().to_owned(), bson);
    }

    let query_builder = InsertOne::new(&doc, coll.name());
    let insert_result = observing(&query_builder, || coll.insert_one_with_session(&doc, None, session))
        .instrument(span)
        .await?;
    let id_value = value_from_bson(insert_result.inserted_id, &id_meta)?;

    Ok(SingleRecord {
        record: Record::new(vec![id_value]),
        field_names: vec![id_field.db_name().to_owned()],
    })
}

pub async fn create_records<'conn>(
    database: &Database,
    session: &mut ClientSession,
    model: &Model,
    args: Vec<WriteArgs>,
    skip_duplicates: bool,
) -> crate::Result<usize> {
    let coll = database.collection::<Document>(model.db_name());

    let span = info_span!(
        "prisma:engine:db_query",
        user_facing = true,
        "db.statement" = &format_args!("db.{}.insertMany(*)", coll.name())
    );

    let num_records = args.len();
    let fields: Vec<_> = model.fields().non_relational();

    let docs = args
        .into_iter()
        .map(|arg| {
            let mut doc = Document::new();

            for (field_name, value) in arg.args {
                // Todo: This is inefficient.
                let field = fields.iter().find(|f| f.db_name() == &*field_name).unwrap();
                let value: PrismaValue = value
                    .try_into()
                    .expect("Create calls can only use PrismaValue write expressions (right now).");

                let bson = (field, value).into_bson().decorate_with_field_info(field)?;

                doc.insert(field_name.to_string(), bson);
            }

            Ok(doc)
        })
        .collect::<crate::Result<Vec<_>>>()?;

    // Ordered = false (inverse of `skip_duplicates`) will ignore errors while executing
    // the operation and throw an error afterwards that we must handle.
    let ordered = !skip_duplicates;
    let options = Some(InsertManyOptions::builder().ordered(ordered).build());

    let query_string_builder = InsertMany::new(&docs, coll.name(), ordered);
    let docs_iter = docs.iter();
    let insert = observing(&query_string_builder, || {
        coll.insert_many_with_session(docs_iter, options, session)
    })
    .instrument(span);

    match insert.await {
        Ok(insert_result) => Ok(insert_result.inserted_ids.len()),
        Err(err) if skip_duplicates => match err.kind.as_ref() {
            ErrorKind::BulkWrite(ref failure) => match failure.write_errors {
                Some(ref errs) if !errs.iter().any(|err| err.code != 11000) => Ok(num_records - errs.len()),
                _ => Err(err.into()),
            },

            _ => Err(err.into()),
        },

        Err(err) => Err(err.into()),
    }
}

pub async fn update_records<'conn>(
    database: &Database,
    session: &mut ClientSession,
    model: &Model,
    record_filter: RecordFilter,
    mut args: WriteArgs,
    update_type: UpdateType,
) -> crate::Result<Vec<SelectionResult>> {
    let coll = database.collection::<Document>(model.db_name());

    // We need to load ids of documents to be updated first because Mongo doesn't
    // return ids on update, requiring us to follow the same approach as the SQL
    // connectors.
    //
    // Mongo can only have singular IDs (always `_id`), hence the unwraps. Since IDs are immutable, we also don't
    // need to merge back id changes into the result set as with SQL.
    let id_field = pick_singular_id(model);
    let id_meta = output_meta::from_scalar_field(&id_field);
    let ids: Vec<Bson> = if let Some(selectors) = record_filter.selectors {
        selectors
            .into_iter()
            .map(|p| {
                (&id_field, p.values().next().unwrap())
                    .into_bson()
                    .decorate_with_scalar_field_info(&id_field)
            })
            .collect::<crate::Result<Vec<_>>>()?
    } else {
        let filter = MongoFilterVisitor::new(FilterPrefix::default(), false).visit(record_filter.filter)?;
        find_ids(database, coll.clone(), session, model, filter).await?
    };

    if ids.is_empty() {
        return Ok(vec![]);
    }

    let span = info_span!(
        "prisma:engine:db_query",
        user_facing = true,
        "db.statement" = &format_args!("db.{}.updateMany(*)", coll.name())
    );

    let filter = doc! { id_field.db_name(): { "$in": ids.clone() } };
    let fields: Vec<_> = model
        .fields()
        .all()
        .filter_map(|field| {
            args.take_field_value(field.db_name())
                .map(|write_op| (field.clone(), write_op))
        })
        .collect();

    let mut update_docs: Vec<Document> = vec![];

    for (field, write_op) in fields {
        let field_path = FieldPath::new_from_segment(&field);

        update_docs.extend(write_op.into_update_docs(&field, field_path)?);
    }

    if !update_docs.is_empty() {
        let query_string_builder = UpdateMany::new(&filter, &update_docs, coll.name());
        let res = observing(&query_string_builder, || {
            coll.update_many_with_session(filter.clone(), update_docs.clone(), None, session)
        })
        .instrument(span)
        .await?;

        // It's important we check the `matched_count` and not the `modified_count` here.
        // MongoDB returns `modified_count: 0` when performing a noop update, which breaks
        // nested connect mutations as it rely on the returned count to know whether the update happened.
        if update_type == UpdateType::Many && res.matched_count == 0 {
            return Ok(Vec::new());
        }
    }

    let ids = ids
        .into_iter()
        .map(|bson_id| {
            Ok(SelectionResult::from((
                id_field.clone(),
                value_from_bson(bson_id, &id_meta)?,
            )))
        })
        .collect::<crate::Result<Vec<_>>>()?;

    Ok(ids)
}

pub async fn delete_records<'conn>(
    database: &Database,
    session: &mut ClientSession,
    model: &Model,
    record_filter: RecordFilter,
) -> crate::Result<usize> {
    let coll = database.collection::<Document>(model.db_name());
    let id_field = pick_singular_id(model);

    let ids = if let Some(selectors) = record_filter.selectors {
        selectors
            .into_iter()
            .map(|p| {
                (&id_field, p.values().next().unwrap())
                    .into_bson()
                    .decorate_with_scalar_field_info(&id_field)
            })
            .collect::<crate::Result<Vec<_>>>()?
    } else {
        let filter = MongoFilterVisitor::new(FilterPrefix::default(), false).visit(record_filter.filter)?;
        find_ids(database, coll.clone(), session, model, filter).await?
    };

    if ids.is_empty() {
        return Ok(0);
    }

    let span = info_span!(
        "prisma:engine:db_query",
        user_facing = true,
        "db.statement" = &format_args!("db.{}.deleteMany(*)", coll.name())
    );

    let filter = doc! { id_field.db_name(): { "$in": ids } };
    let query_string_builder = DeleteMany::new(&filter, coll.name());
    let delete_result = observing(&query_string_builder, || {
        coll.delete_many_with_session(filter.clone(), None, session)
    })
    .instrument(span)
    .await?;

    Ok(delete_result.deleted_count as usize)
}

pub async fn delete_record<'conn>(
    database: &Database,
    session: &mut ClientSession,
    model: &Model,
    record_filter: RecordFilter,
    selected_fields: FieldSelection,
) -> crate::Result<SingleRecord> {
    let coll = database.collection::<Document>(model.db_name());
    let (filter, joins) = MongoFilterVisitor::new(FilterPrefix::default(), false)
        .visit(record_filter.filter)?
        .render();
    debug_assert!(
        joins.is_empty(),
        "filter should not contain any predicates on relations"
    );

    // All filters use `aggregate` command syntax by default. To use rendered expression in `find*`
    // command family, it needs to be wrapped in `$expr`.
    let filter = doc! {
        "$expr": filter,
    };

    let span = info_span!(
        "prisma:engine:db_query",
        user_facing = true,
        "db.statement" = &format_args!("db.{}.findAndModify(*)", coll.name())
    );
    let query_string_builder = DeleteOne::new(&filter, coll.name());
    let document = observing(&query_string_builder, || {
        coll.find_one_and_delete_with_session(filter.clone(), None, session)
    })
    .instrument(span)
    .await?
    .ok_or(MongoError::RecordDoesNotExist {
        cause: "Record to delete does not exist.".to_owned(),
    })?;

    let meta_mapping = output_meta::from_selected_fields(&selected_fields);
    let field_names: Vec<_> = selected_fields.db_names().collect();
    let record = document_to_record(document, &field_names, &meta_mapping)?;
    Ok(SingleRecord { record, field_names })
}

/// Retrives document ids based on the given filter.
async fn find_ids(
    database: &Database,
    collection: Collection<Document>,
    session: &mut ClientSession,
    model: &Model,
    filter: MongoFilter,
) -> crate::Result<Vec<Bson>> {
    let coll = database.collection::<Document>(model.db_name());

    let span = info_span!(
        "prisma:engine:db_query",
        user_facing = true,
        "db.statement" = &format_args!("db.{}.findMany(*)", coll.name())
    );

    let id_field = model.primary_identifier();
    let mut builder = MongoReadQueryBuilder::new(model.clone());

    // If a filter comes with joins, it needs to be run _after_ the initial filter query / $matches.
    let (filter, filter_joins) = filter.render();
    if !filter_joins.is_empty() {
        builder.joins = filter_joins;
        builder.join_filters.push(filter);
    } else {
        builder.query = Some(filter);
    };

    let builder = builder.with_model_projection(id_field)?;
    let query = builder.build()?;
    let docs = query.execute(collection, session).instrument(span).await?;
    let ids = docs.into_iter().map(|mut doc| doc.remove("_id").unwrap()).collect();

    Ok(ids)
}

/// Connect relations defined in `child_ids` to a parent defined in `parent_id`.
/// The relation information is in the `RelationFieldRef`.
pub async fn m2m_connect<'conn>(
    database: &Database,
    session: &mut ClientSession,
    field: &RelationFieldRef,
    parent_id: &SelectionResult,
    child_ids: &[SelectionResult],
) -> crate::Result<()> {
    let parent_model = field.model();
    let child_model = field.related_model();

    let parent_coll = database.collection::<Document>(parent_model.db_name());
    let child_coll = database.collection::<Document>(child_model.db_name());

    let parent_id = parent_id.values().next().unwrap();
    let parent_id_field = pick_singular_id(&parent_model);

    let parent_ids_scalar_field_name = field.walker().fields().unwrap().next().unwrap().name().to_owned();
    let parent_id = (&parent_id_field, parent_id)
        .into_bson()
        .decorate_with_scalar_field_info(&parent_id_field)?;

    let parent_filter = doc! { "_id": { "$eq": parent_id.clone() } };
    let child_ids = child_ids
        .iter()
        .map(|child_id| {
            let (selection, value) = child_id.pairs.first().unwrap();

            (selection, value.clone())
                .into_bson()
                .decorate_with_selected_field_info(selection)
        })
        .collect::<crate::Result<Vec<_>>>()?;

    let parent_update = doc! { "$addToSet": { parent_ids_scalar_field_name: { "$each": child_ids.clone() } } };

    let query_string_builder = UpdateOne::new(&parent_filter, &parent_update, parent_coll.name());

    observing(&query_string_builder, || {
        parent_coll.update_one_with_session(parent_filter.clone(), parent_update.clone(), None, session)
    })
    .await?;

    // Then update all children and add the parent
    let child_filter = doc! { "_id": { "$in": child_ids } };
    let child_ids_scalar_field_name = field
        .walker()
        .opposite_relation_field()
        .unwrap()
        .fields()
        .unwrap()
        .next()
        .unwrap()
        .name()
        .to_owned();
    let child_update = doc! { "$addToSet": { child_ids_scalar_field_name: parent_id } };

    let child_updates = vec![child_update.clone()];
    let query_string_builder = UpdateMany::new(&child_filter, &child_updates, child_coll.name());
    observing(&query_string_builder, || {
        child_coll.update_many_with_session(child_filter.clone(), child_update.clone(), None, session)
    })
    .await?;

    Ok(())
}

pub async fn m2m_disconnect<'conn>(
    database: &Database,
    session: &mut ClientSession,
    field: &RelationFieldRef,
    parent_id: &SelectionResult,
    child_ids: &[SelectionResult],
) -> crate::Result<()> {
    let parent_model = field.model();
    let child_model = field.related_model();

    let parent_coll = database.collection::<Document>(parent_model.db_name());
    let child_coll = database.collection::<Document>(child_model.db_name());

    let parent_id = parent_id.values().next().unwrap();
    let parent_id_field = pick_singular_id(&parent_model);

    let parent_ids_scalar_field_name = field.walker().fields().unwrap().next().unwrap().name().to_owned();
    let parent_id = (&parent_id_field, parent_id)
        .into_bson()
        .decorate_with_scalar_field_info(&parent_id_field)?;

    let parent_filter = doc! { "_id": { "$eq": parent_id.clone() } };
    let child_ids = child_ids
        .iter()
        .map(|child_id| {
            let (field, value) = child_id.pairs.first().unwrap();

            (field, value.clone())
                .into_bson()
                .decorate_with_selected_field_info(field)
        })
        .collect::<crate::Result<Vec<_>>>()?;

    let parent_update = doc! { "$pullAll": { parent_ids_scalar_field_name: child_ids.clone() } };

    // First update the parent and remove all child IDs to the m:n scalar field.
    let query_string_builder = UpdateOne::new(&parent_filter, &parent_update, parent_coll.name());
    observing(&query_string_builder, || {
        parent_coll.update_one_with_session(parent_filter.clone(), parent_update.clone(), None, session)
    })
    .await?;

    // Then update all children and add the parent
    let child_filter = doc! { "_id": { "$in": child_ids } };
    let child_ids_scalar_field_name = field
        .walker()
        .opposite_relation_field()
        .unwrap()
        .fields()
        .unwrap()
        .next()
        .unwrap()
        .name()
        .to_owned();

    let child_update = doc! { "$pull": { child_ids_scalar_field_name: parent_id } };

    let child_updates = vec![child_update.clone()];
    let query_string_builder = UpdateMany::new(&child_filter, &child_updates, child_coll.name());
    observing(&query_string_builder, || {
        child_coll.update_many_with_session(child_filter.clone(), child_update, None, session)
    })
    .await?;

    Ok(())
}

/// Execute raw is not implemented on MongoDB
pub async fn execute_raw<'conn>(
    _database: &Database,
    _session: &mut ClientSession,
    _inputs: HashMap<String, PrismaValue>,
) -> crate::Result<usize> {
    Err(MongoError::Unsupported("execute_raw".into()))
}

/// Execute a plain MongoDB query, returning the answer as a JSON `Value`.
pub async fn query_raw<'conn>(
    database: &Database,
    session: &mut ClientSession,
    model: Option<&Model>,
    inputs: HashMap<String, PrismaValue>,
    query_type: Option<String>,
) -> crate::Result<serde_json::Value> {
    let db_statement = get_raw_db_statement(&query_type, &model, database);
    let span = info_span!(
        "prisma:engine:db_query",
        user_facing = true,
        "db.statement" = &&db_statement.as_str()
    );

    let mongo_command = MongoCommand::from_raw_query(model, inputs, query_type)?;

    async {
        let json_result = match mongo_command {
            MongoCommand::Raw { cmd } => {
                let query_string_builder = RunCommand::new(&cmd);
                let mut result = observing(&query_string_builder, || {
                    database.run_command_with_session(cmd.clone(), None, session)
                })
                .await?;

                // Removes unnecessary properties from raw response
                // See https://docs.mongodb.com/v5.0/reference/method/db.runCommand
                result.remove("operationTime");
                result.remove("$clusterTime");
                result.remove("opTime");
                result.remove("electionId");

                let json_result: serde_json::Value = Bson::Document(result).into();

                json_result
            }
            MongoCommand::Handled { collection, operation } => {
                let coll = database.collection::<Document>(collection.as_str());

                match operation {
                    MongoOperation::Find(filter, options) => {
                        let unwrapped_filter = filter.clone().unwrap_or_default();
                        let projection = options
                            .as_ref()
                            .and_then(|options| options.projection.clone())
                            .unwrap_or_default();
                        let query_string_builder = Find::new(&unwrapped_filter, &projection, coll.name());
                        let cursor = observing(&query_string_builder, || {
                            coll.find_with_session(filter, options, session)
                        })
                        .await?;

                        raw::cursor_to_json(cursor, session).await?
                    }
                    MongoOperation::Aggregate(pipeline, options) => {
                        let query_string_builder = Aggregate::new(&pipeline, coll.name());
                        let cursor = observing(&query_string_builder, || {
                            coll.aggregate_with_session(pipeline.clone(), options, session)
                        })
                        .await?;

                        raw::cursor_to_json(cursor, session).await?
                    }
                }
            }
        };
        Ok(json_result)
    }
    .instrument(span)
    .await
}

fn get_raw_db_statement(query_type: &Option<String>, model: &Option<&Model>, database: &Database) -> String {
    match (query_type.as_deref(), model) {
        (Some("findRaw"), Some(m)) => format!("db.{}.findRaw(*)", database.collection::<Document>(m.db_name()).name()),
        (Some("aggregateRaw"), Some(m)) => format!(
            "db.{}.aggregateRaw(*)",
            database.collection::<Document>(m.db_name()).name()
        ),
        _ => "db.runCommandRaw(*)".to_string(),
    }
}