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
//! Transformations for the parsed query document tree.
//! As the schema validation guarantees the presence, type conformity, etc. of incoming documents,
//! consumers of the parsed query document want to directly unwrap and access the incoming data,
//! but would need to clutter their code with tons of matches and unwraps.
//! The transformers in this file helps consumers to directly access the data in the shape they
//! assume the data has to be because of the structural guarantees of the query schema validation.
use super::*;
use bigdecimal::ToPrimitive;
use chrono::prelude::*;
use query_structure::{OrderBy, PrismaValue, RelationLoadStrategy, ScalarFieldRef};
use std::convert::TryInto;
use user_facing_errors::query_engine::validation::ValidationError;

impl<'a> TryFrom<ParsedInputValue<'a>> for PrismaValue {
    type Error = ValidationError;

    fn try_from(value: ParsedInputValue<'a>) -> QueryParserResult<PrismaValue> {
        match value {
            ParsedInputValue::Single(val) => Ok(val),
            ParsedInputValue::List(values) => values
                .into_iter()
                .map(|val| val.try_into())
                .collect::<QueryParserResult<Vec<PrismaValue>>>()
                .map(PrismaValue::List),

            ParsedInputValue::Map(map) => Ok(PrismaValue::Object(
                map.into_iter()
                    .map(|(k, v)| Ok((k.into_owned(), v.try_into()?)))
                    .collect::<QueryParserResult<Vec<_>>>()?,
            )),

            v => Err(ValidationError::unexpected_runtime_error(format!(
                "Attempted conversion of ParsedInputValue ({v:?}) into PrismaValue failed."
            ))),
        }
    }
}

impl<'a> TryFrom<ParsedInputValue<'a>> for ParsedInputMap<'a> {
    type Error = ValidationError;

    fn try_from(value: ParsedInputValue<'a>) -> QueryParserResult<ParsedInputMap<'a>> {
        match value {
            ParsedInputValue::Map(val) => Ok(val),
            v => Err(ValidationError::unexpected_runtime_error(format!(
                "Attempted conversion of non-map ParsedInputValue ({v:?}) into map failed."
            ))),
        }
    }
}

impl<'a> TryFrom<ParsedInputValue<'a>> for Option<ParsedInputMap<'a>> {
    type Error = ValidationError;

    fn try_from(value: ParsedInputValue<'a>) -> QueryParserResult<Option<ParsedInputMap<'a>>> {
        match value {
            ParsedInputValue::Single(PrismaValue::Null) => Ok(None),
            ParsedInputValue::Map(val) => Ok(Some(val)),
            v => Err(ValidationError::unexpected_runtime_error(format!(
                "Attempted conversion of non-map ParsedInputValue ({v:?}) into Option map failed."
            ))),
        }
    }
}

impl<'a> TryFrom<ParsedInputValue<'a>> for ParsedInputList<'a> {
    type Error = ValidationError;

    fn try_from(value: ParsedInputValue<'a>) -> QueryParserResult<Vec<ParsedInputValue<'a>>> {
        match value {
            ParsedInputValue::List(vals) => Ok(vals),
            v => Err(ValidationError::unexpected_runtime_error(format!(
                "Attempted conversion of non-list ParsedInputValue ({v:?}) into list failed."
            ))),
        }
    }
}

impl<'a> TryFrom<ParsedInputValue<'a>> for Vec<PrismaValue> {
    type Error = ValidationError;

    fn try_from(value: ParsedInputValue<'a>) -> QueryParserResult<Vec<PrismaValue>> {
        match value {
            ParsedInputValue::List(vals) => vals
                .into_iter()
                .map(|val| val.try_into())
                .collect::<QueryParserResult<Vec<_>>>(),
            v => Err(ValidationError::unexpected_runtime_error(format!(
                "Attempted conversion of non-list ParsedInputValue ({v:?}) into prisma value list failed."
            ))),
        }
    }
}

impl<'a> TryFrom<ParsedInputValue<'a>> for Option<String> {
    type Error = ValidationError;

    fn try_from(value: ParsedInputValue<'a>) -> QueryParserResult<Option<String>> {
        let prisma_value = PrismaValue::try_from(value)?;

        match prisma_value {
            PrismaValue::String(s) => Ok(Some(s)),
            PrismaValue::Enum(s) => Ok(Some(s)),
            PrismaValue::Null => Ok(None),
            v => Err(ValidationError::unexpected_runtime_error(format!(
                "Attempted conversion of non-String Prisma value type ({v:?}) into String failed."
            ))),
        }
    }
}

impl<'a> TryFrom<ParsedInputValue<'a>> for OrderBy {
    type Error = ValidationError;

    fn try_from(value: ParsedInputValue<'a>) -> QueryParserResult<OrderBy> {
        match value {
            ParsedInputValue::OrderBy(ord) => Ok(ord),
            v => Err(ValidationError::unexpected_runtime_error(format!(
                "Attempted conversion of non-order-by enum ({v:?}) into order by enum value failed."
            ))),
        }
    }
}

impl<'a> TryFrom<ParsedInputValue<'a>> for ScalarFieldRef {
    type Error = ValidationError;

    fn try_from(value: ParsedInputValue<'a>) -> QueryParserResult<ScalarFieldRef> {
        match value {
            ParsedInputValue::ScalarField(f) => Ok(f),
            v => Err(ValidationError::unexpected_runtime_error(format!(
                "Attempted conversion of non-field-ref enum ({v:?}) into scalar field reference value failed."
            ))),
        }
    }
}

impl<'a> TryFrom<ParsedInputValue<'a>> for Option<f64> {
    type Error = ValidationError;

    fn try_from(value: ParsedInputValue<'a>) -> QueryParserResult<Option<f64>> {
        let prisma_value = PrismaValue::try_from(value)?;

        match prisma_value {
            PrismaValue::Float(d) => Ok(d.to_f64()),
            PrismaValue::Null => Ok(None),
            v => Err(ValidationError::unexpected_runtime_error(format!(
                "Attempted conversion of non-float Prisma value type ({v:?}) into float failed."
            ))),
        }
    }
}

impl<'a> TryFrom<ParsedInputValue<'a>> for Option<bool> {
    type Error = ValidationError;

    fn try_from(value: ParsedInputValue<'a>) -> QueryParserResult<Option<bool>> {
        let prisma_value = PrismaValue::try_from(value)?;

        match prisma_value {
            PrismaValue::Boolean(b) => Ok(Some(b)),
            PrismaValue::Null => Ok(None),
            v => Err(ValidationError::unexpected_runtime_error(format!(
                "Attempted conversion of non-bool Prisma value type ({v:?}) into bool failed."
            ))),
        }
    }
}

impl<'a> TryFrom<ParsedInputValue<'a>> for Option<DateTime<FixedOffset>> {
    type Error = ValidationError;

    fn try_from(value: ParsedInputValue<'a>) -> QueryParserResult<Option<DateTime<FixedOffset>>> {
        let prisma_value = PrismaValue::try_from(value)?;

        match prisma_value {
            PrismaValue::DateTime(dt) => Ok(Some(dt)),
            PrismaValue::Null => Ok(None),
            v => Err(ValidationError::unexpected_runtime_error(format!(
                "Attempted conversion of non-DateTime Prisma value type ({v:?}) into DateTime failed."
            ))),
        }
    }
}

impl<'a> TryFrom<ParsedInputValue<'a>> for Option<i64> {
    type Error = ValidationError;

    fn try_from(value: ParsedInputValue<'a>) -> QueryParserResult<Option<i64>> {
        let prisma_value = PrismaValue::try_from(value)?;

        match prisma_value {
            PrismaValue::Int(i) => Ok(Some(i)),
            PrismaValue::Null => Ok(None),
            v => Err(ValidationError::unexpected_runtime_error(format!(
                "Attempted conversion of non-int Prisma value type ({v:?}) into int failed."
            ))),
        }
    }
}

impl<'a> TryFrom<ParsedInputValue<'a>> for bool {
    type Error = ValidationError;

    fn try_from(value: ParsedInputValue<'a>) -> QueryParserResult<bool> {
        let prisma_value = PrismaValue::try_from(value)?;

        match prisma_value {
            PrismaValue::Boolean(b) => Ok(b),
            v => Err(ValidationError::unexpected_runtime_error(format!(
                "Attempted conversion of non-boolean Prisma value type ({v:?}) into bool failed."
            ))),
        }
    }
}

impl<'a> TryFrom<ParsedInputValue<'a>> for RelationLoadStrategy {
    type Error = ValidationError;

    fn try_from(value: ParsedInputValue<'a>) -> QueryParserResult<RelationLoadStrategy> {
        let prisma_value = PrismaValue::try_from(value)?;

        match prisma_value {
            PrismaValue::Enum(e) if e == load_strategy::JOIN => Ok(RelationLoadStrategy::Join),
            PrismaValue::Enum(e) if e == load_strategy::QUERY => Ok(RelationLoadStrategy::Query),
            v => Err(ValidationError::unexpected_runtime_error(format!(
                "Attempted conversion of ParsedInputValue ({v:?}) into relation load strategy enum value failed."
            ))),
        }
    }
}