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
use super::*;
use psl::datamodel_connector::{ConnectorCapabilities, ConnectorCapability};
use serde::{Deserialize, Serialize};
use std::{convert::TryFrom, str::FromStr};

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct DatamodelWithParams {
    datamodel: String,
    parent: QueryParams,
    child: QueryParams,
}

impl DatamodelWithParams {
    /// Get a reference to the datamodel with params's datamodel.
    pub fn datamodel(&self) -> &str {
        self.datamodel.as_str()
    }

    /// Get a reference to the datamodel with params's parent.
    pub fn parent(&self) -> &QueryParams {
        &self.parent
    }

    /// Get a reference to the datamodel with params's child.
    pub fn child(&self) -> &QueryParams {
        &self.child
    }
}

impl FromStr for DatamodelWithParams {
    type Err = serde_json::Error;

    fn from_str(from: &str) -> Result<Self, Self::Err> {
        serde_json::from_str(from)
    }
}

impl TryFrom<DatamodelWithParams> for String {
    type Error = serde_json::Error;

    fn try_from(from: DatamodelWithParams) -> Result<Self, Self::Error> {
        serde_json::to_string(&from)
    }
}

pub type DatamodelsAndCapabilities = (Vec<DatamodelWithParams>, Vec<ConnectorCapabilities>);

pub(crate) fn schema_with_relation(
    on_parent: &RelationField,
    on_child: &RelationField,
    id_only: bool,
) -> DatamodelsAndCapabilities {
    let is_required_1to1 = on_parent.is_required() && on_child.is_required();

    if is_required_1to1 {
        panic!("required 1:1 relations must be rejected by the parser already");
    }

    // Query Params
    let id_param = QueryParams::new(
        "id",
        QueryParamsWhere::identifier("id"),
        QueryParamsWhereMany::many_ids("id"),
    );

    let compound_id_param = {
        let fields = vec!["id_1", "id_2"];
        let arg_name = "id_1_id_2";

        QueryParams::new(
            "id_1, id_2",
            QueryParamsWhere::compound_identifier(fields.clone(), arg_name),
            QueryParamsWhereMany::many_compounds(fields, arg_name),
        )
    };

    let parent_unique_params = vec![
        QueryParams::new(
            "p",
            QueryParamsWhere::identifier("p"),
            QueryParamsWhereMany::many_ids("p"),
        ),
        {
            let fields = vec!["p_1", "p_2"];
            let arg_name = "p_1_p_2";

            QueryParams::new(
                "p_1, p_2",
                QueryParamsWhere::compound_identifier(fields.clone(), arg_name),
                QueryParamsWhereMany::many_compounds(fields, arg_name),
            )
        },
    ];

    let child_unique_params = vec![
        QueryParams::new(
            "c",
            QueryParamsWhere::identifier("c"),
            QueryParamsWhereMany::many_ids("c"),
        ),
        {
            let fields = vec!["c_1", "c_2"];
            let arg_name = "c_1_c_2";

            QueryParams::new(
                "c_1, c_2",
                QueryParamsWhere::compound_identifier(fields.clone(), arg_name),
                QueryParamsWhereMany::many_compounds(fields, arg_name),
            )
        },
    ];

    // we only support singular id fields with implicit many to many relations. https://github.com/prisma/prisma/issues/2262
    let id_options = if on_parent.is_list() && on_child.is_list() {
        SIMPLE_ID_OPTIONS.to_vec()
    } else {
        FULL_ID_OPTIONS.to_vec()
    };

    // Reduces the amount of generated tests when `true`
    let simple_test_mode = std::env::var("SIMPLE_TEST_MODE").is_ok();
    let mut datamodels: Vec<DatamodelWithParams> = vec![];
    let mut required_capabilities: Vec<ConnectorCapabilities> = vec![];

    for parent_id in id_options.iter() {
        for child_id in id_options.iter() {
            // Based on Id and relation fields
            for child_ref_to_parent in child_references(simple_test_mode, parent_id, on_parent, on_child) {
                for parent_ref_to_child in
                    parent_references(simple_test_mode, child_id, &child_ref_to_parent, on_parent, on_child)
                {
                    // TODO: The RelationReference.render() equality is a hack. Implement PartialEq instead
                    let is_virtual_req_rel_field =
                        on_parent.is_required() && parent_ref_to_child.render() == RelationReference::NoRef.render();

                    // skip required virtual relation fields as those are disallowed in a Prisma Schema
                    if is_virtual_req_rel_field {
                        continue;
                    }

                    // Only based on id
                    let parent_params = if id_only {
                        vec![id_param.clone()]
                    } else {
                        match *parent_id {
                            Identifier::Simple => parent_unique_params.clone_push(&id_param),
                            Identifier::Compound => parent_unique_params.clone_push(&compound_id_param),
                            Identifier::None => parent_unique_params.clone(),
                        }
                    };

                    let child_params = if id_only {
                        vec![id_param.clone()]
                    } else {
                        match *child_id {
                            Identifier::Simple => child_unique_params.clone_push(&id_param),
                            Identifier::Compound => child_unique_params.clone_push(&compound_id_param),
                            Identifier::None => child_unique_params.clone(),
                        }
                    };

                    for parent_param in parent_params.iter() {
                        for child_param in child_params.iter() {
                            let (parent_field, child_field) =
                                render_relation_fields(on_parent, &parent_ref_to_child, on_child, &child_ref_to_parent);

                            let datamodel = indoc::formatdoc! {"
                                model Parent {{
                                    p             String    @unique
                                    p_1           String
                                    p_2           String
                                    {parent_field}
                                    non_unique    String?
                                    {parent_id}

                                    @@unique([p_1, p_2])
                                }}

                                model Child {{
                                    c              String    @unique
                                    c_1            String
                                    c_2            String
                                    {child_field}
                                    non_unique     String?
                                    {child_id}

                                    @@unique([c_1, c_2])
                                }}
                            "};

                            let mut required_capabilities_for_dm = ConnectorCapabilities::default();

                            match (parent_id, child_id) {
                                (Identifier::Compound, _) | (_, Identifier::Compound) => {
                                    required_capabilities_for_dm |= ConnectorCapability::CompoundIds;
                                }
                                (Identifier::None, _) | (_, Identifier::None) => {
                                    required_capabilities_for_dm |= ConnectorCapability::AnyId;
                                }
                                _ => (),
                            }

                            required_capabilities.push(required_capabilities_for_dm);

                            datamodels.push(DatamodelWithParams {
                                datamodel,
                                parent: parent_param.clone(),
                                child: child_param.clone(),
                            });
                        }
                    }
                }
            }
        }
    }

    (datamodels, required_capabilities)
}

fn render_relation_fields(
    parent: &RelationField,
    parent_ref_to_child: &RelationReference,
    child: &RelationField,
    child_ref_to_parent: &RelationReference,
) -> (String, String) {
    if parent.is_list() && child.is_list() {
        let rendered_parent = format!("#m2m({}, {}, id, String)", parent.field_name(), parent.type_name());
        let rendered_child = format!("#m2m({}, {}, id, String)", child.field_name(), child.type_name(),);

        (rendered_parent, rendered_child)
    } else {
        let mut rendered_parent = format!(
            "{} {} {}",
            parent.field_name(),
            parent.type_name(),
            parent_ref_to_child.render()
        );

        let mut rendered_child = format!(
            "{} {} {}",
            child.field_name(),
            child.type_name(),
            child_ref_to_parent.render()
        );

        if !child.is_list() && !parent.is_list() {
            let child_unique = match child_ref_to_parent {
                RelationReference::SimpleChildId(_) => r#"@@unique([childId])"#,
                RelationReference::SimpleParentId(_) => r#"@@unique([parentId])"#,
                RelationReference::CompoundParentId(_) => r#"@@unique([parent_id_1, parent_id_2])"#,
                RelationReference::CompoundChildId(_) => r#"@@unique([child_id_1, child_id_2])"#,
                RelationReference::ParentReference(_) => r#"@@unique([parentRef])"#,
                RelationReference::CompoundParentReference(_) => r#"@@unique([parent_p_1, parent_p_2])"#,
                RelationReference::ChildReference(_) => r#"@@unique([parent_c])"#,
                RelationReference::CompoundChildReference(_) => r#"@@unique([child_c_1, child_c_2])"#,
                RelationReference::IdReference => "",
                RelationReference::NoRef => "",
            };

            let parent_unique = match parent_ref_to_child {
                RelationReference::SimpleChildId(_) => r#"@@unique([childId])"#,
                RelationReference::SimpleParentId(_) => r#"@@unique([parentId])"#,
                RelationReference::CompoundParentId(_) => r#"@@unique([parent_id_1, parent_id_2])"#,
                RelationReference::CompoundChildId(_) => r#"@@unique([child_id_1, child_id_2])"#,
                RelationReference::ParentReference(_) => r#"@@unique([parentRef])"#,
                RelationReference::CompoundParentReference(_) => r#"@@unique([parent_p_1, parent_p_2])"#,
                RelationReference::ChildReference(_) => r#"@@unique([parent_c])"#,
                RelationReference::CompoundChildReference(_) => r#"@@unique([child_c_1, child_c_2])"#,
                RelationReference::IdReference => "",
                RelationReference::NoRef => "",
            };

            rendered_child.push('\n');
            rendered_child.push_str(child_unique);

            rendered_parent.push('\n');
            rendered_parent.push_str(parent_unique);
        }

        (rendered_parent, rendered_child)
    }
}