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
use crate::DbId;
use crate::QueryId;
use crate::QueryResult;
use crate::SearchQuery;

/// List of database ids used in queries. It
/// can either represent a list of [`QueryId`]s
/// or a search query. Search query allows query
/// nesting and sourcing the ids dynamically for
/// another query most commonly with the
/// select queries.
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(feature = "openapi", derive(utoipa::ToSchema))]
pub enum QueryIds {
    /// List of [`QueryId`]s
    Ids(Vec<QueryId>),

    /// Search query
    Search(SearchQuery),
}

impl QueryIds {
    pub(crate) fn get_ids(self) -> Vec<QueryId> {
        match self {
            QueryIds::Ids(ids) => ids,
            QueryIds::Search(_) => vec![],
        }
    }
}

impl From<Vec<QueryId>> for QueryIds {
    fn from(value: Vec<QueryId>) -> Self {
        QueryIds::Ids(value)
    }
}

impl From<Vec<String>> for QueryIds {
    fn from(value: Vec<String>) -> Self {
        QueryIds::Ids(value.into_iter().map(|v| v.into()).collect())
    }
}

impl From<Vec<&str>> for QueryIds {
    fn from(value: Vec<&str>) -> Self {
        QueryIds::Ids(value.iter().map(|v| (*v).into()).collect())
    }
}

impl From<Vec<i64>> for QueryIds {
    fn from(value: Vec<i64>) -> Self {
        QueryIds::Ids(value.into_iter().map(|v| v.into()).collect())
    }
}

impl From<Vec<DbId>> for QueryIds {
    fn from(value: Vec<DbId>) -> Self {
        QueryIds::Ids(value.into_iter().map(|v| v.into()).collect())
    }
}

impl From<i64> for QueryIds {
    fn from(value: i64) -> Self {
        QueryIds::Ids(vec![value.into()])
    }
}

impl From<DbId> for QueryIds {
    fn from(value: DbId) -> Self {
        QueryIds::Ids(vec![value.into()])
    }
}

impl From<&str> for QueryIds {
    fn from(value: &str) -> Self {
        QueryIds::Ids(vec![value.into()])
    }
}

impl From<String> for QueryIds {
    fn from(value: String) -> Self {
        QueryIds::Ids(vec![value.into()])
    }
}

impl From<QueryResult> for QueryIds {
    fn from(value: QueryResult) -> Self {
        Self::from(&value)
    }
}

impl From<&QueryResult> for QueryIds {
    fn from(value: &QueryResult) -> Self {
        QueryIds::Ids(value.elements.iter().map(|e| QueryId::from(e.id)).collect())
    }
}

impl From<SearchQuery> for QueryIds {
    fn from(query: SearchQuery) -> Self {
        QueryIds::Search(query)
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::query::search_query::SearchQueryAlgorithm;

    #[test]
    #[allow(clippy::redundant_clone)]
    fn derived_from_clone() {
        let left = QueryIds::Ids(vec![QueryId::from(0)]);
        let right = left.clone();
        assert_eq!(left, right);
    }

    #[test]
    fn derived_from_partial_eq() {
        assert_eq!(
            QueryIds::Ids(vec![QueryId::from(0)]),
            QueryIds::Ids(vec![QueryId::from(0)])
        );
    }

    #[test]
    fn derived_from_debug() {
        format!("{:?}", QueryIds::Ids(vec![QueryId::from(0)]));
    }

    #[test]
    fn get_ids_from_search() {
        let ids = QueryIds::Search(SearchQuery {
            algorithm: SearchQueryAlgorithm::BreadthFirst,
            origin: QueryId::Id(DbId(0)),
            destination: QueryId::Id(DbId(0)),
            limit: 0,
            offset: 0,
            order_by: vec![],
            conditions: vec![],
        })
        .get_ids();

        assert_eq!(ids, vec![]);
    }
}