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
//! Some SQL identifiers are not presentable in PSL. The sanitization
//! of these strings happens in this module.

use crate::introspection::{datamodel_calculator::DatamodelCalculatorContext, sanitize_datamodel_names};
use once_cell::sync::Lazy;
use regex::Regex;
use std::borrow::Cow;

/// Regex to determine if an identifier starts with a character that
/// is not supported.
static RE_START: Lazy<Regex> = Lazy::new(|| Regex::new("^[^a-zA-Z]+").unwrap());

/// Regex to determine if an identifier contains a character that is not
/// supported.
static RE: Lazy<Regex> = Lazy::new(|| Regex::new("[^_a-zA-Z0-9]").unwrap());

/// If a string has to be sanitized to the PSL.
pub(crate) fn needs_sanitation(s: &str) -> bool {
    RE_START.is_match(s) || RE.is_match(s)
}

/// Sanitize the string to be used in the PSL.
pub(crate) fn sanitize_string<'a>(s: impl Into<Cow<'a, str>>) -> Cow<'a, str> {
    let s = s.into();

    if needs_sanitation(&s) {
        let start_cleaned = RE_START.replace_all(&s, "");
        Cow::Owned(RE.replace_all(start_cleaned.as_ref(), "_").into_owned())
    } else {
        s
    }
}

/// Names that correspond to _types_ in the generated client.
/// Concretely, enums, models and composite types.
#[derive(Clone, Copy, Debug)]
pub(crate) enum ModelName<'a> {
    FromPsl {
        name: &'a str,
        mapped_name: Option<&'a str>,
    },
    FromSql {
        name: &'a str,
    },
    RenamedReserved {
        mapped_name: &'a str,
    },
    RenamedSanitized {
        mapped_name: &'a str,
    },
    RenamedDuplicate {
        mapped_name: &'a str,
        namespace: &'a str,
    },
}

impl<'a> ModelName<'a> {
    /// Create a name from an SQL identifier.
    pub(crate) fn new_from_sql(
        name: &'a str,
        namespace: Option<&'a str>,
        context: &DatamodelCalculatorContext<'a>,
    ) -> Self {
        match (name, namespace) {
            (mapped_name, Some(namespace)) if !context.name_is_unique(mapped_name) => {
                ModelName::RenamedDuplicate { mapped_name, namespace }
            }
            _ if psl::is_reserved_type_name(name) => ModelName::RenamedReserved { mapped_name: name },
            _ if sanitize_datamodel_names::needs_sanitation(name) => ModelName::RenamedSanitized { mapped_name: name },
            (name, _) => ModelName::FromSql { name },
        }
    }

    /// Output name to the PSL.
    pub(crate) fn prisma_name(&self) -> Cow<'a, str> {
        match self {
            ModelName::FromPsl { name, .. } => Cow::Borrowed(name),
            ModelName::FromSql { name } => Cow::Borrowed(name),
            ModelName::RenamedReserved { mapped_name } => Cow::Owned(format!("Renamed{mapped_name}")),
            ModelName::RenamedSanitized { mapped_name } => sanitize_datamodel_names::sanitize_string(*mapped_name),
            ModelName::RenamedDuplicate { mapped_name, namespace } => {
                sanitize_datamodel_names::sanitize_string(format!("{namespace}_{mapped_name}"))
            }
        }
    }

    /// The original name to be used in the `@@map` attribute.
    pub(crate) fn mapped_name(self) -> Option<&'a str> {
        match self {
            ModelName::FromPsl { mapped_name, .. } => mapped_name,
            ModelName::FromSql { .. } => None,
            ModelName::RenamedReserved { mapped_name } => Some(mapped_name),
            ModelName::RenamedSanitized { mapped_name } => Some(mapped_name),
            ModelName::RenamedDuplicate { mapped_name, .. } => Some(mapped_name),
        }
    }
}

/// Names that correspond to _identifiers_ in the generated client.
/// Concretely, columns.
#[derive(Clone, Copy, Debug)]
pub(crate) enum IntrospectedName<'a> {
    FromPsl {
        name: &'a str,
        mapped_name: Option<&'a str>,
    },
    FromSql {
        name: &'a str,
    },
    RenamedSanitized {
        mapped_name: &'a str,
    },
}

impl<'a> IntrospectedName<'a> {
    /// Create a name from an SQL identifier.
    pub(crate) fn new_from_sql(name: &'a str) -> Self {
        match name {
            _ if sanitize_datamodel_names::needs_sanitation(name) => {
                IntrospectedName::RenamedSanitized { mapped_name: name }
            }
            name => IntrospectedName::FromSql { name },
        }
    }

    /// Output name to the PSL.
    pub(crate) fn prisma_name(&self) -> Cow<'a, str> {
        match self {
            IntrospectedName::FromPsl { name, .. } => Cow::Borrowed(name),
            IntrospectedName::FromSql { name } => Cow::Borrowed(name),
            IntrospectedName::RenamedSanitized { mapped_name } => {
                sanitize_datamodel_names::sanitize_string(*mapped_name)
            }
        }
    }

    /// The original name to be used in the `@map` attribute.
    pub(crate) fn mapped_name(self) -> Option<&'a str> {
        match self {
            IntrospectedName::FromPsl { mapped_name, .. } => mapped_name,
            IntrospectedName::FromSql { .. } => None,
            IntrospectedName::RenamedSanitized { mapped_name } => Some(mapped_name),
        }
    }
}

/// Names that correspond to _enum variants_ in the generated client.
pub(crate) enum EnumVariantName<'a> {
    Empty,
    RenamedSanitized {
        mapped_name: &'a str,
    },
    FromSql {
        name: &'a str,
    },
    FromPsl {
        name: &'a str,
        mapped_name: Option<&'a str>,
    },
}

impl<'a> EnumVariantName<'a> {
    /// Create a name from an SQL identifier.
    pub(crate) fn new_from_sql(name: &'a str) -> Self {
        match name {
            "" => EnumVariantName::Empty,
            _ if sanitize_datamodel_names::needs_sanitation(name) => {
                EnumVariantName::RenamedSanitized { mapped_name: name }
            }
            name => EnumVariantName::FromSql { name },
        }
    }

    /// Output name to the PSL.
    pub(crate) fn prisma_name(&self) -> Cow<'a, str> {
        match self {
            EnumVariantName::Empty => Cow::Borrowed("EMPTY_ENUM_VALUE"),
            EnumVariantName::RenamedSanitized { mapped_name } => {
                sanitize_datamodel_names::sanitize_string(*mapped_name)
            }
            EnumVariantName::FromSql { name } | EnumVariantName::FromPsl { name, .. } => Cow::Borrowed(name),
        }
    }

    /// The original name to be used in the `@map` attribute.
    pub(crate) fn mapped_name(&self) -> Option<&'a str> {
        match self {
            EnumVariantName::Empty => Some(""),
            EnumVariantName::RenamedSanitized { mapped_name } => Some(mapped_name),
            EnumVariantName::FromSql { name: _ } => None,
            EnumVariantName::FromPsl { name: _, mapped_name } => *mapped_name,
        }
    }
}