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
use super::{database_name::validate_db_name, names::Names};
use crate::{
    ast::{self, WithName, WithSpan},
    datamodel_connector::RelationMode,
    diagnostics::DatamodelError,
    validate::validation_pipeline::context::Context,
};
use diagnostics::DatamodelWarning;
use enumflags2::BitFlags;
use itertools::Itertools;
use parser_database::{
    walkers::{ModelWalker, RelationFieldId, RelationFieldWalker, RelationName},
    ReferentialAction,
};
use std::fmt;

struct Fields<'db> {
    fields: &'db [RelationFieldId],
    model: ModelWalker<'db>,
}

impl<'db> Fields<'db> {
    fn new(fields: &'db [RelationFieldId], model: ModelWalker<'db>) -> Self {
        Self { fields, model }
    }
}

impl<'db> fmt::Display for Fields<'db> {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        let mut fields = self
            .fields
            .iter()
            .map(|field_id| self.model.walk(*field_id).name())
            .map(|name| format!("`{name}`"));

        match fields.len() {
            x if x < 2 => f.write_str(&fields.join(", ")),
            2 => f.write_str(&fields.join(" and ")),
            _ => {
                let len = fields.len();

                for (i, name) in fields.enumerate() {
                    f.write_str(&name)?;

                    if i < len - 2 {
                        f.write_str(", ")?;
                    } else if i < len - 1 {
                        f.write_str(" and ")?;
                    }
                }

                Ok(())
            }
        }
    }
}

pub(super) fn ambiguity(field: RelationFieldWalker<'_>, names: &Names<'_>) -> Result<(), DatamodelError> {
    let model = field.model();
    let related_model = field.related_model();

    let identifier = (model.model_id(), related_model.model_id(), field.relation_name());

    match names.relation_names.get(&identifier) {
        Some(fields) if fields.len() > 1 => {
            let field_names = Fields::new(fields, model);
            let relation_name = identifier.2;
            let is_self_relation = model.id == related_model.id;

            let message = match relation_name {
                RelationName::Generated(_) if is_self_relation && fields.len() == 2 => {
                    format!(
                        "Ambiguous self relation detected. The fields {} in model `{}` both refer to `{}`. If they are part of the same relation add the same relation name for them with `@relation(<name>)`.",
                        field_names,
                        model.name(),
                        related_model.name(),
                    )
                }
                RelationName::Generated(_) if is_self_relation && fields.len() > 2 => {
                    format!(
                        "Unnamed self relation detected. The fields {} in model `{}` have no relation name. Please provide a relation name for one of them by adding `@relation(<name>).",
                        field_names,
                        model.name(),
                    )
                }
                RelationName::Explicit(_) if is_self_relation && fields.len() > 2 => {
                    format!(
                        "Wrongly named self relation detected. The fields {} in model `{}` have the same relation name. At most two relation fields can belong to the same relation and therefore have the same name. Please assign a different relation name to one of them.",
                        field_names,
                        model.name(),
                    )
                }
                RelationName::Explicit(_) if is_self_relation && fields.len() == 2 => return Ok(()),
                RelationName::Generated(_) => {
                    format!(
                        "Ambiguous relation detected. The fields {} in model `{}` both refer to `{}`. Please provide different relation names for them by adding `@relation(<name>).",
                        field_names,
                        model.name(),
                        related_model.name(),
                    )
                }
                RelationName::Explicit(_) => {
                    format!(
                        "Wrongly named relation detected. The fields {} in model `{}` both use the same relation name. Please provide different relation names for them through `@relation(<name>).",
                        field_names,
                        model.name(),
                    )
                }
            };

            let container_type = if model.ast_model().is_view() { "view" } else { "model" };

            Err(DatamodelError::new_model_validation_error(
                &message,
                container_type,
                model.name(),
                field.ast_field().span(),
            ))
        }
        _ => Ok(()),
    }
}

/// Validates if the related model for the relation is ignored.
pub(super) fn ignored_related_model(field: RelationFieldWalker<'_>, ctx: &mut Context<'_>) {
    let related_model = field.related_model();
    let model = field.model();

    if !related_model.is_ignored() || field.is_ignored() || model.is_ignored() {
        return;
    }

    let message = format!(
        "The relation field `{}` on Model `{}` must specify the `@ignore` attribute, because the model {} it is pointing to is marked ignored.",
        field.name(), model.name(), related_model.name()
    );

    ctx.push_error(DatamodelError::new_attribute_validation_error(
        &message,
        "@ignore",
        field.ast_field().span(),
    ));
}

/// Does the connector support the given referential actions.
pub(super) fn referential_actions(field: RelationFieldWalker<'_>, ctx: &mut Context<'_>) {
    let connector = ctx.connector;
    let relation_mode = ctx.relation_mode;

    fn fmt_allowed_actions(allowed_actions: BitFlags<ReferentialAction>) -> String {
        allowed_actions.iter().map(|f| format!("`{}`", f.as_str())).join(", ")
    }

    // validation template for relationMode = "foreignKeys"
    let msg_foreign_keys = |action: ReferentialAction| {
        let allowed_actions = connector.referential_actions();

        format!(
            "Invalid referential action: `{}`. Allowed values: ({})",
            action.as_str(),
            fmt_allowed_actions(allowed_actions),
        )
    };

    // validation template for relationMode = "prisma"
    let msg_prisma = |action: ReferentialAction| {
        let allowed_actions = connector.emulated_referential_actions();

        let additional_info = match action {
            ReferentialAction::NoAction => {
                // we don't want to suggest the users to use Restrict instead, if the connector doesn't support it
                if ctx
                    .connector
                    .emulated_referential_actions()
                    .contains(ReferentialAction::Restrict)
                {
                    Some(format!(
                        ". `{}` is not implemented for {} when using `relationMode = \"prisma\"`, you could try using `{}` instead. Learn more at https://pris.ly/d/relation-mode",
                        ReferentialAction::NoAction.as_str(),
                        connector.name(),
                        ReferentialAction::Restrict.as_str(),
                    ))
                } else {
                    None
                }
            }
            _ => None,
        };
        let additional_info = additional_info.unwrap_or_default();

        format!(
            "Invalid referential action: `{}`. Allowed values: ({}){additional_info}",
            action.as_str(),
            fmt_allowed_actions(allowed_actions),
        )
    };

    let msg_template = |action: ReferentialAction| -> String {
        match relation_mode {
            RelationMode::ForeignKeys => msg_foreign_keys(action),
            RelationMode::Prisma => msg_prisma(action),
        }
    };

    if let Some(on_delete) = field.explicit_on_delete() {
        let span = field
            .ast_field()
            .span_for_argument("relation", "onDelete")
            .unwrap_or_else(|| field.ast_field().span());

        if !ctx.connector.supports_referential_action(&ctx.relation_mode, on_delete) {
            ctx.push_error(DatamodelError::new_validation_error(&msg_template(on_delete), span));
        }
    }

    if let Some(on_update) = field.explicit_on_update() {
        let span = field
            .ast_field()
            .span_for_argument("relation", "onUpdate")
            .unwrap_or_else(|| field.ast_field().span());

        if !ctx.connector.supports_referential_action(&ctx.relation_mode, on_update) {
            ctx.push_error(DatamodelError::new_validation_error(&msg_template(on_update), span));
        }
    }
}

pub(super) fn map(field: RelationFieldWalker<'_>, ctx: &mut Context<'_>) {
    if field.mapped_name().is_none() {
        return;
    }

    if !ctx.connector.supports_named_foreign_keys() {
        let span = field
            .ast_field()
            .span_for_attribute("relation")
            .unwrap_or_else(ast::Span::empty);

        ctx.push_error(DatamodelError::new_attribute_validation_error(
            "Your provider does not support named foreign keys.",
            "@relation",
            span,
        ));
        return;
    }

    if let Some(relation_attr) = field
        .ast_field()
        .attributes
        .iter()
        .find(|attr| attr.name() == "relation")
    {
        validate_db_name(field.model().name(), relation_attr, field.mapped_name(), ctx, false);
    }
}

pub(super) fn validate_missing_relation_indexes(relation_field: RelationFieldWalker<'_>, ctx: &mut Context<'_>) {
    if !ctx.connector.should_suggest_missing_referencing_fields_indexes() || ctx.relation_mode != RelationMode::Prisma {
        return;
    }

    if let Some(fields) = relation_field.referencing_fields() {
        let model = relation_field.model();
        // Considers all fields that should be part of an index in the given model, w.r.t. to left-wise inclusion.
        let referencing_fields_it = fields.map(|field| field.field_id());

        // Considers all groups of indexes explicitly declared in the given model.
        // An index group can be:
        // - a singleton (@unique or @id)
        // - an ordered set (@@unique or @@index)
        let index_field_groups = model.indexes();

        let referencing_fields_appear_in_index = index_field_groups
            .map(|index_walker| index_walker.fields().map(|index| index.field_id()))
            .any(|index_fields_it| {
                let fields_it = referencing_fields_it.clone();
                is_leftwise_included_it(fields_it, index_fields_it)
            });

        if !referencing_fields_appear_in_index {
            let ast_field = relation_field.ast_field();
            let span = ast_field
                .span_for_attribute("relation")
                .unwrap_or_else(|| ast_field.span());
            ctx.push_warning(DatamodelWarning::new_missing_index_on_emulated_relation(span));
        }
    }
}

pub(super) fn connector_specific(field: RelationFieldWalker<'_>, ctx: &mut Context<'_>) {
    ctx.connector.validate_relation_field(field, ctx.diagnostics)
}

/// An subgroup is left-wise included in a supergroup if the subgroup is contained in the supergroup, and all the entries of
/// the left-most entries of the supergroup match the order of definitions of the subgroup.
/// More formally: { x_1, x_2, ..., x_n } is left-wise included in { y_1, y_2, ..., y_m } if and only if
/// n <= m and x_i = y_i for all i in [1, n].
fn is_leftwise_included_it<T>(subgrop: impl ExactSizeIterator<Item = T>, supergroup: impl Iterator<Item = T>) -> bool
where
    T: PartialEq,
{
    supergroup.take(subgrop.len()).eq(subgrop)
}

#[cfg(test)]
mod tests {
    use super::is_leftwise_included_it;
    #[test]
    fn test_is_left_wise_included() {
        let item = [1, 2];
        let group = [1, 2, 3, 4];
        assert!(is_leftwise_included_it(item.iter(), group.iter()));
        let item = [1, 2, 3, 4];
        let group = [1, 2, 3, 4];
        assert!(is_leftwise_included_it(item.iter(), group.iter()));
        let item = [1, 2, 3, 4];
        let group = [1, 2];
        assert!(!is_leftwise_included_it(item.iter(), group.iter()));
        let item = [2, 3];
        let group = [1, 2, 3, 4];
        assert!(!is_leftwise_included_it(item.iter(), group.iter()));
    }
}