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
use crate::search::*;
use crate::util::*;

/// Raw JSON query for something not yet supported.
///
/// To create JSON query:
/// ```
/// # use elasticsearch_dsl::queries::*;
/// # use elasticsearch_dsl::queries::params::*;
/// # let query =
/// Query::json(serde_json::json!({ "term": { "user": "username" } }));
/// ```
/// **NOTE**: This is fallible and can lead to incorrect queries and
/// rejected search requests, use ar your own risk.
#[derive(Debug, Clone, PartialEq, Serialize)]
pub struct JsonQuery(serde_json::Value);

impl Query {
    /// Creates an instance of [`JsonQuery`]
    ///
    /// - `query` - raw JSON query
    pub fn json(query: serde_json::Value) -> JsonQuery {
        JsonQuery(query)
    }
}

impl From<serde_json::Value> for Query {
    fn from(value: serde_json::Value) -> Self {
        Self::Json(JsonQuery(value))
    }
}

impl From<serde_json::Value> for JsonQuery {
    fn from(value: serde_json::Value) -> Self {
        Self(value)
    }
}

impl ShouldSkip for JsonQuery {
    fn should_skip(&self) -> bool {
        !self.0.is_object()
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    test_serialization! {
        with_required_fields(
            Query::json(json!({ "term": { "user": "username" } })),
            json!({ "term": { "user": "username" } })
        );
    }
}