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
use super::{write_args_parser::WriteArgsParser, *};
use crate::{
    query_ast::*,
    query_graph::{Flow, Node, QueryGraph, QueryGraphDependency},
    ParsedField, ParsedInputMap, ParsedInputValue, ParsedObject,
};
use query_structure::{IntoFilter, Model};
use schema::QuerySchema;

/// Handles a top-level upsert
///
/// ```text
///                         ┌─────────────────┐           ┌ ─ ─ ─ ─ ─ ─
///                         │   Read Parent   │─ ─ ─ ─ ─ ▶    Result   │
///                         └─────────────────┘           └ ─ ─ ─ ─ ─ ─
///                                  │
///                                  │
///                                  │
///                                  │
///                                  ▼
///                         ┌─────────────────┐
///           ┌───Then──────│   If (exists)   │──Else─────┐
///           │             └─────────────────┘           │
///           │                                           │
/// ┌ ─ ─ ─ ─ ▼ ─ ─ ─ ─ ┐                                 │
///  ┌─────────────────┐                                  │
/// ││    Join Node    ││                                 │
///  └─────────────────┘                                  ▼
/// │         │         │                        ┌─────────────────┐
///           │                                  │  Create Parent  │
/// │         ▼         │                        └─────────────────┘
///  ┌─────────────────┐                                  │
/// ││ Insert onUpdate ││                                 │
///  │emulation subtree│                                  │
/// ││for all relations││                                 │
///  │ pointing to the │                                  ▼
/// ││  Parent model   ││                        ┌─────────────────┐
///  └─────────────────┘                         │   Read Parent   │
/// └ ─ ─ ─ ─ ┬ ─ ─ ─ ─ ┘                        └─────────────────┘
///           │
///           │
///           ▼
///  ┌─────────────────┐
///  │  Update Parent  │
///  └─────────────────┘
///           │
///           ▼
///  ┌─────────────────┐
///  │   Read Parent   │
///  └─────────────────┘
/// ```
pub(crate) fn upsert_record(
    graph: &mut QueryGraph,
    query_schema: &QuerySchema,
    model: Model,
    mut field: ParsedField<'_>,
) -> QueryGraphBuilderResult<()> {
    let where_argument = field.where_arg()?.unwrap();
    let create_argument = field.create_arg()?.unwrap();
    let update_argument = field.update_arg()?.unwrap();
    let selection = &field.nested_fields;

    let can_use_native_upsert = can_use_connector_native_upsert(
        &model,
        &where_argument,
        &create_argument,
        &update_argument,
        selection,
        query_schema,
    );

    let filter = extract_unique_filter(where_argument, &model)?;
    let read_query = read::find_unique(field.clone(), model.clone(), query_schema)?;

    if can_use_native_upsert {
        if let ReadQuery::RecordQuery(read) = read_query {
            let mut create_write_args = WriteArgsParser::from(&model, create_argument)?.args;
            let mut update_write_args = WriteArgsParser::from(&model, update_argument)?.args;

            create_write_args.add_datetimes(&model);
            update_write_args.add_datetimes(&model);

            graph.create_node(WriteQuery::native_upsert(
                field.name,
                model,
                filter.into(),
                create_write_args,
                update_write_args,
                read,
            ));

            return Ok(());
        }
    }

    graph.flag_transactional();

    let model_id = model.primary_identifier();

    let read_parent_records = utils::read_ids_infallible(model.clone(), model_id.clone(), filter.clone());
    let read_parent_records_node = graph.create_node(read_parent_records);

    let create_node = create::create_record_node(graph, query_schema, model.clone(), create_argument)?;

    let update_node = update::update_record_node(
        graph,
        query_schema,
        filter,
        model.clone(),
        update_argument,
        Some(&field),
    )?;

    let read_node_create = graph.create_node(Query::Read(read_query.clone()));
    let read_node_update = graph.create_node(Query::Read(read_query));

    graph.add_result_node(&read_node_create);
    graph.add_result_node(&read_node_update);

    let if_node = graph.create_node(Flow::default_if());

    graph.create_edge(
        &read_parent_records_node,
        &if_node,
        QueryGraphDependency::ProjectedDataDependency(
            model_id.clone(),
            Box::new(|if_node, parent_ids| {
                if let Node::Flow(Flow::If(_)) = if_node {
                    // Todo: This looks super unnecessary
                    Ok(Node::Flow(Flow::If(Box::new(move || !parent_ids.is_empty()))))
                } else {
                    Ok(if_node)
                }
            }),
        ),
    )?;

    // In case the connector doesn't support referential integrity, we add a subtree to the graph that emulates the ON_UPDATE referential action.
    // When that's the case, we create an intermediary node to which we connect all the nodes reponsible for emulating the referential action
    // Then, we connect the if node to that intermediary emulation node. This enables performing the emulation only in case the graph traverses
    // the update path (if the children already exists and goes to the THEN node).
    // It's only after we've executed the emulation that it'll traverse the update node, hence the ExecutionOrder between
    // the emulation node and the update node.
    if let Some(emulation_node) = utils::insert_emulated_on_update_with_intermediary_node(
        graph,
        query_schema,
        &model,
        &read_parent_records_node,
        &update_node,
    )? {
        graph.create_edge(&if_node, &emulation_node, QueryGraphDependency::Then)?;
        graph.create_edge(&emulation_node, &update_node, QueryGraphDependency::ExecutionOrder)?;
    } else {
        graph.create_edge(&if_node, &update_node, QueryGraphDependency::Then)?;
    }

    graph.create_edge(&if_node, &create_node, QueryGraphDependency::Else)?;

    // Pass-in the read parent record result to the update node RecordFilter to avoid a redundant read.
    graph.create_edge(
        &read_parent_records_node,
        &update_node,
        QueryGraphDependency::ProjectedDataDependency(
            model_id.clone(),
            Box::new(move |mut update_node, parent_ids| {
                if let Node::Query(Query::Write(WriteQuery::UpdateRecord(ref mut ur))) = update_node {
                    ur.set_selectors(parent_ids);
                }

                Ok(update_node)
            }),
        ),
    )?;

    graph.create_edge(
        &update_node,
        &read_node_update,
        QueryGraphDependency::ProjectedDataDependency(
            model_id.clone(),
            Box::new(move |mut read_node_update, mut parent_ids| {
                let parent_id = match parent_ids.pop() {
                    Some(pid) => Ok(pid),
                    None => Err(QueryGraphBuilderError::AssertionError(
                        "Expected a valid parent ID to be present for create follow-up for upsert query.".to_string(),
                    )),
                }?;

                if let Node::Query(Query::Read(ReadQuery::RecordQuery(ref mut rq))) = read_node_update {
                    rq.add_filter(parent_id.filter());
                };

                Ok(read_node_update)
            }),
        ),
    )?;

    graph.create_edge(
        &create_node,
        &read_node_create,
        QueryGraphDependency::ProjectedDataDependency(
            model_id,
            Box::new(move |mut read_node_create, mut parent_ids| {
                let parent_id = match parent_ids.pop() {
                    Some(pid) => Ok(pid),
                    None => Err(QueryGraphBuilderError::AssertionError(
                        "Expected a valid parent ID to be present for update follow-up for upsert query.".to_string(),
                    )),
                }?;

                if let Node::Query(Query::Read(ReadQuery::RecordQuery(ref mut rq))) = read_node_create {
                    rq.add_filter(parent_id.filter());
                };

                Ok(read_node_create)
            }),
        ),
    )?;

    Ok(())
}

// This optimisation on our upserts allows us to use the `INSERT ... ON CONFLICT SET ..`
// when the query matches the following conditions:
// 1. The data connector supports it
// 2. The create and update arguments do not have any nested queries
// 3. There is only 1 unique field in the where clause
// 4. The unique field defined in where clause has the same value as defined in the create arguments
fn can_use_connector_native_upsert<'a>(
    model: &Model,
    where_field: &ParsedInputMap<'a>,
    create_argument: &ParsedInputMap<'a>,
    update_argument: &ParsedInputMap<'a>,
    selection: &Option<ParsedObject<'_>>,
    query_schema: &QuerySchema,
) -> bool {
    let has_nested_selects = has_nested_selects(selection);

    let has_nested_create = create_argument
        .iter()
        .any(|(field_name, _)| model.fields().find_from_relation_fields(field_name).is_ok());

    let has_nested_update = update_argument
        .iter()
        .any(|(field_name, _)| model.fields().find_from_relation_fields(field_name).is_ok());

    let empty_update = update_argument.iter().len() == 0;

    let has_one_unique = where_field
        .iter()
        .filter(|(field_name, _)| is_unique_field(field_name, model))
        .count()
        == 1;

    let where_values_same_as_create = where_field
        .iter()
        .all(|(field_name, input)| where_and_create_equal(field_name, input, create_argument));

    query_schema.can_native_upsert()
        && has_one_unique
        && !has_nested_create
        && !has_nested_update
        && !empty_update
        && !has_nested_selects
        && where_values_same_as_create
        && !query_schema.relation_mode().is_prisma()
}

fn is_unique_field(field_name: &str, model: &Model) -> bool {
    match model.fields().find_from_scalar(field_name) {
        Ok(field) => field.unique(),
        Err(_) => resolve_compound_field(field_name, model).is_some(),
    }
}

fn has_nested_selects(selection: &Option<ParsedObject<'_>>) -> bool {
    if let Some(parsed_object) = selection {
        parsed_object
            .fields
            .iter()
            .any(|field| field.parsed_field.nested_fields.is_some())
    } else {
        false
    }
}

/// Make sure the unique fields defined in the where clause have the same values
/// as in the create of the upsert.
fn where_and_create_equal<'a>(
    field_name: &str,
    where_value: &ParsedInputValue<'a>,
    create_map: &ParsedInputMap<'a>,
) -> bool {
    match where_value {
        ParsedInputValue::Map(inner_map) => inner_map
            .iter()
            .all(|(inner_field, inner_value)| where_and_create_equal(inner_field, inner_value, create_map)),
        _ => Some(where_value) == create_map.get(field_name),
    }
}