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
use super::GraphQLProtocolAdapter;
use query_core::{BatchDocument, BatchDocumentTransaction, Operation, QueryDocument};
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use tracing::info_span;

#[derive(Clone, Debug, Serialize, Deserialize)]
#[serde(rename_all = "camelCase", untagged)]
pub enum GraphqlBody {
    Single(SingleQuery),
    Multi(MultiQuery),
}

#[derive(Clone, Debug, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SingleQuery {
    query: String,
    operation_name: Option<String>,
    variables: HashMap<String, String>,
}

#[derive(Clone, Debug, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct MultiQuery {
    batch: Vec<SingleQuery>,
    transaction: bool,
    isolation_level: Option<String>,
}

impl MultiQuery {
    pub fn new(batch: Vec<SingleQuery>, transaction: bool, isolation_level: Option<String>) -> Self {
        Self {
            batch,
            transaction,
            isolation_level,
        }
    }
}

impl From<String> for SingleQuery {
    fn from(query: String) -> Self {
        SingleQuery {
            query,
            operation_name: None,
            variables: HashMap::new(),
        }
    }
}

impl From<&str> for SingleQuery {
    fn from(query: &str) -> Self {
        String::from(query).into()
    }
}

impl GraphqlBody {
    /// Convert a `GraphQlBody` into a `QueryDocument`.
    pub fn into_doc(self) -> crate::Result<QueryDocument> {
        let _span = info_span!("prisma:engine:into_doc").entered();
        match self {
            GraphqlBody::Single(body) => {
                let operation = GraphQLProtocolAdapter::convert_query_to_operation(&body.query, body.operation_name)?;

                Ok(QueryDocument::Single(operation))
            }
            GraphqlBody::Multi(bodies) => {
                let operations: crate::Result<Vec<Operation>> = bodies
                    .batch
                    .into_iter()
                    .map(|body| GraphQLProtocolAdapter::convert_query_to_operation(&body.query, body.operation_name))
                    .collect();
                let transaction = if bodies.transaction {
                    Some(BatchDocumentTransaction::new(bodies.isolation_level))
                } else {
                    None
                };

                Ok(QueryDocument::Multi(BatchDocument::new(operations?, transaction)))
            }
        }
    }
}