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
use super::{
    constraint_namespace::ConstraintName,
    database_name::validate_db_name,
    default_value,
    names::{NameTaken, Names},
};
use crate::datamodel_connector::{walker_ext_traits::*, ConnectorCapability};
use crate::{diagnostics::DatamodelError, validate::validation_pipeline::context::Context};
use parser_database::{
    ast::{self, WithSpan},
    walkers::{FieldWalker, PrimaryKeyWalker, ScalarFieldAttributeWalker, ScalarFieldWalker, TypedFieldWalker},
    ScalarFieldType, ScalarType,
};

pub(super) fn validate_client_name(field: FieldWalker<'_>, names: &Names<'_>, ctx: &mut Context<'_>) {
    let model = field.model();

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

    for taken in names.name_taken(model.model_id(), field.name()).into_iter() {
        match taken {
            NameTaken::Index => {
                let message = format!(
                    "The custom name `{}` specified for the `@@index` attribute is already used as a name for a field. Please choose a different name.",
                    field.name()
                );

                let error = DatamodelError::new_model_validation_error(
                    &message,
                    container_type,
                    model.name(),
                    model.ast_model().span(),
                );
                ctx.push_error(error);
            }
            NameTaken::Unique => {
                let message = format!(
                    "The custom name `{}` specified for the `@@unique` attribute is already used as a name for a field. Please choose a different name.",
                    field.name()
                );

                let error = DatamodelError::new_model_validation_error(
                    &message,
                    container_type,
                    model.name(),
                    model.ast_model().span(),
                );
                ctx.push_error(error);
            }
            NameTaken::PrimaryKey => {
                let message = format!(
                    "The custom name `{}` specified for the `@@id` attribute is already used as a name for a field. Please choose a different name.",
                    field.name()
                );

                let error = DatamodelError::new_model_validation_error(
                    &message,
                    container_type,
                    model.name(),
                    model.ast_model().span(),
                );
                ctx.push_error(error);
            }
        }
    }
}

/// Some databases use constraints for default values, with a name that can be unique in a certain
/// namespace. Validates the field default constraint against name clases.
pub(super) fn has_a_unique_default_constraint_name(
    field: ScalarFieldWalker<'_>,
    names: &Names<'_>,
    ctx: &mut Context<'_>,
) {
    let name = match field.default_value().map(|w| w.constraint_name(ctx.connector)) {
        Some(name) => name,
        None => return,
    };

    for violation in names.constraint_namespace.constraint_name_scope_violations(
        field.model().model_id(),
        ConstraintName::Default(name.as_ref()),
        ctx,
    ) {
        let message = format!(
            "The given constraint name `{}` has to be unique in the following namespace: {}. Please provide a different name using the `map` argument.",
            name,
            violation.description(field.model().name()),
        );

        let span = field
            .ast_field()
            .span_for_argument("default", "map")
            .unwrap_or_else(|| field.ast_field().span());

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

/// The length prefix can be used with strings and byte columns.
pub(crate) fn validate_length_used_with_correct_types(
    attr: ScalarFieldAttributeWalker<'_>,
    attribute: (&str, ast::Span),
    ctx: &mut Context<'_>,
) {
    if !ctx
        .connector
        .has_capability(ConnectorCapability::IndexColumnLengthPrefixing)
    {
        return;
    }

    if attr.length().is_none() {
        return;
    }

    if attr.as_index_field().scalar_field_type().is_unsupported() {
        return;
    }

    if let Some(r#type) = attr.as_index_field().scalar_field_type().as_builtin_scalar() {
        if [ScalarType::String, ScalarType::Bytes].iter().any(|t| t == &r#type) {
            return;
        }
    };

    let message = "The length argument is only allowed with field types `String` or `Bytes`.";

    ctx.push_error(DatamodelError::new_attribute_validation_error(
        message,
        attribute.0,
        attribute.1,
    ));
}

pub(super) fn validate_native_type_arguments<'db>(field: impl Into<TypedFieldWalker<'db>>, ctx: &mut Context<'db>) {
    let field = field.into();

    let connector_name = ctx.datasource.map(|ds| ds.active_provider).unwrap_or_else(|| "Default");
    let (scalar_type, (attr_scope, type_name, args, span)) = match (field.scalar_type(), field.raw_native_type()) {
        (Some(scalar_type), Some(raw)) => (scalar_type, raw),
        _ => return,
    };

    // Validate that the attribute is scoped with the right datasource name.
    if let Some(datasource) = ctx.datasource {
        if datasource.name != attr_scope {
            let suggestion = [datasource.name.as_str(), type_name].join(".");
            ctx.push_error(DatamodelError::new_invalid_prefix_for_native_types(
                attr_scope,
                &datasource.name,
                &suggestion,
                span,
            ));
        }
    }

    let constructor = if let Some(cons) = ctx.connector.find_native_type_constructor(type_name) {
        cons
    } else {
        return ctx.push_error(DatamodelError::new_native_type_name_unknown(
            connector_name,
            type_name,
            span,
        ));
    };

    let number_of_args = args.len();

    if number_of_args < constructor.number_of_args
        || ((number_of_args > constructor.number_of_args) && constructor.number_of_optional_args == 0)
    {
        ctx.push_error(DatamodelError::new_argument_count_mismatch_error(
            type_name,
            constructor.number_of_args,
            number_of_args,
            span,
        ));
        return;
    }

    if number_of_args > constructor.number_of_args + constructor.number_of_optional_args
        && constructor.number_of_optional_args > 0
    {
        ctx.push_error(DatamodelError::new_optional_argument_count_mismatch(
            type_name,
            constructor.number_of_optional_args,
            number_of_args,
            span,
        ));
        return;
    }

    // check for compatibility with scalar type
    if !constructor.prisma_types.contains(&scalar_type) {
        let expected_types = constructor
            .prisma_types
            .iter()
            .map(|s| s.as_str())
            .collect::<Vec<_>>()
            .join(" or ");

        let err = DatamodelError::new_incompatible_native_type(type_name, scalar_type.as_str(), &expected_types, span);

        ctx.push_error(err);

        return;
    }

    if let Some(native_type) = ctx.connector.parse_native_type(type_name, args, span, ctx.diagnostics) {
        ctx.connector
            .validate_native_type_arguments(&native_type, &scalar_type, span, ctx.diagnostics);
    }
}

/// Validates the @default attribute of a model scalar field
pub(super) fn validate_default_value(field: ScalarFieldWalker<'_>, ctx: &mut Context<'_>) {
    let model_name = field.model().name();
    let default_mapped_name = field.default_value().and_then(|d| d.mapped_name());
    let default_attribute = field.default_attribute();

    // Named defaults.
    if default_mapped_name.is_some() && !ctx.connector.supports_named_default_values() {
        let msg = "You defined a database name for the default value of a field on the model. This is not supported by the provider.";

        ctx.push_error(DatamodelError::new_attribute_validation_error(
            msg,
            "@default",
            default_attribute.unwrap().span,
        ));
    }

    if default_mapped_name.is_some() {
        validate_db_name(model_name, default_attribute.unwrap(), default_mapped_name, ctx, false);
    }

    let default_value = field.default_value().map(|d| d.value());
    let scalar_type = field.scalar_type();

    default_value::validate_default_value(default_value, scalar_type, ctx);
    default_value::validate_auto_param(default_value, ctx);
}

pub(super) fn validate_scalar_field_connector_specific(field: ScalarFieldWalker<'_>, ctx: &mut Context<'_>) {
    let container = if field.model().ast_model().is_view() {
        "view"
    } else {
        "model"
    };

    match field.scalar_field_type() {
        ScalarFieldType::BuiltInScalar(ScalarType::Json) => {
            if !ctx.connector.supports_json() {
                ctx.push_error(DatamodelError::new_field_validation_error(
                    &format!(
                        "Field `{}` in {container} `{}` can't be of type Json. The current connector does not support the Json type.",
                        field.name(),
                        field.model().name(),
                    ),
                    container,
                    field.model().name(),
                    field.name(),
                    field.ast_field().span(),
                ));
            }

            if field.ast_field().arity.is_list() && !ctx.connector.supports_json_lists() {
                ctx.push_error(DatamodelError::new_field_validation_error(
                    &format!(
                        "Field `{}` in {container} `{}` can't be of type Json[]. The current connector does not support the Json List type.",
                        field.name(),
                        field.model().name()
                    ),
                    container,
                    field.model().name(),
                    field.name(),
                    field.ast_field().span(),
                ));
            }
        }

        ScalarFieldType::BuiltInScalar(ScalarType::Decimal) => {
            if !ctx.connector.supports_decimal() {
                ctx.push_error(DatamodelError::new_field_validation_error(
                    &format!(
                        "Field `{}` in {container} `{}` can't be of type Decimal. The current connector does not support the Decimal type.",
                        field.name(),
                        field.model().name(),
                    ),
                    container,
                    field.model().name(),
                    field.name(),
                    field.ast_field().span(),
                ));
            }
        }

        _ => (),
    }

    if field.ast_field().arity.is_list() && !ctx.connector.supports_scalar_lists() {
        ctx.push_error(DatamodelError::new_scalar_list_fields_are_not_supported(
            if field.model().ast_model().is_view() {
                "view"
            } else {
                "model"
            },
            field.model().name(),
            field.name(),
            field.ast_field().span(),
        ));
    }
}

pub(super) fn validate_unsupported_field_type(field: ScalarFieldWalker<'_>, ctx: &mut Context<'_>) {
    use once_cell::sync::Lazy;
    use regex::Regex;

    let source = if let Some(s) = ctx.datasource { s } else { return };

    static TYPE_REGEX: Lazy<Regex> = Lazy::new(|| {
        Regex::new(r"(?x)
    ^                           # beginning of the string
    (?P<prefix>[^(]+)           # a required prefix that is any character until the first opening brace
    (?:\((?P<params>.*?)\))?    # (optional) an opening parenthesis, a closing parenthesis and captured params in-between
    (?P<suffix>.+)?             # (optional) captured suffix after the params until the end of the string
    $                           # end of the string
    ").unwrap()
    });

    let connector = source.active_connector;
    let (unsupported_lit, _) = if let ScalarFieldType::Unsupported(_) = field.scalar_field_type() {
        field.ast_field().field_type.as_unsupported().unwrap()
    } else {
        return;
    };

    if let Some(captures) = TYPE_REGEX.captures(unsupported_lit) {
        let prefix = captures.name("prefix").unwrap().as_str().trim();

        let params = captures.name("params");
        let args = match params {
            None => vec![],
            Some(params) => params.as_str().split(',').map(|s| s.trim().to_string()).collect(),
        };

        if let Some(native_type) =
            connector.parse_native_type(prefix, &args, field.ast_field().span(), &mut Default::default())
        {
            let prisma_type = connector.scalar_type_for_native_type(&native_type);

            let msg = format!(
                        "The type `Unsupported(\"{}\")` you specified in the type definition for the field `{}` is supported as a native type by Prisma. Please use the native type notation `{} @{}.{}` for full support.",
                        unsupported_lit, field.name(), prisma_type.as_str(), &source.name, connector.native_type_to_string(&native_type)
                    );

            ctx.push_error(DatamodelError::new_validation_error(&msg, field.ast_field().span()));
        }
    }
}

pub(crate) fn id_supports_clustering_setting(pk: PrimaryKeyWalker<'_>, ctx: &mut Context<'_>) {
    if ctx.connector.has_capability(ConnectorCapability::ClusteringSetting) {
        return;
    }

    if pk.clustered().is_none() {
        return;
    }

    ctx.push_error(DatamodelError::new_attribute_validation_error(
        "Defining clustering is not supported in the current connector.",
        pk.attribute_name(),
        pk.ast_attribute().span(),
    ));
}

/// Only one index or key can be clustered per table.
///
/// Here we check the primary key. Another check in index validations.
pub(crate) fn clustering_can_be_defined_only_once(pk: PrimaryKeyWalker<'_>, ctx: &mut Context<'_>) {
    if !ctx.connector.has_capability(ConnectorCapability::ClusteringSetting) {
        return;
    }

    if pk.clustered() == Some(false) {
        return;
    }

    for index in pk.model().indexes() {
        if index.clustered() != Some(true) {
            continue;
        }

        ctx.push_error(DatamodelError::new_attribute_validation_error(
            "A model can only hold one clustered index or id.",
            pk.attribute_name(),
            pk.ast_attribute().span(),
        ));

        return;
    }
}