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
use crate::DfStDatabase;
use df_st_db::{id_filter, string_filter, DBObject};
use juniper::RootNode;
use rocket::response::content;
use rocket::State;

/// GraphQL Context
pub struct Context {
    pub conn: DfStDatabase,
}
impl juniper::Context for Context {}
/// Schema for GraphQL
pub type Schema = RootNode<'static, QueryRoot, MutationRoot>;

static ADD_NESTED_ITEMS: bool = true;

/// Struct for querying and searching for data using GraphQL
pub struct QueryRoot;

#[juniper::object(Context = Context)]
impl QueryRoot {
    fn regions(context: &Context, region_id: Option<i32>) -> Vec<df_st_core::Region> {
        let conn = &context.conn;
        if let Some(region_id) = region_id {
            let search_item = df_st_db::Region::get_from_db(
                &*conn,
                id_filter!["id" => region_id],
                ADD_NESTED_ITEMS,
            )
            .unwrap();
            if let Some(item) = search_item {
                return vec![item];
            }
            return vec![];
        } else {
            df_st_db::Region::get_list_from_db(
                &*conn,
                id_filter![],
                string_filter![],
                0,
                200,
                None,
                None,
                None,
                ADD_NESTED_ITEMS,
            )
            .unwrap()
        }
    }

    fn sites(context: &Context, site_id: Option<i32>) -> Vec<df_st_core::Site> {
        let conn = &context.conn;
        if let Some(site_id) = site_id {
            let search_item =
                df_st_db::Site::get_from_db(&*conn, id_filter!["id" => site_id], ADD_NESTED_ITEMS)
                    .unwrap();
            if let Some(item) = search_item {
                return vec![item];
            }
            return vec![];
        } else {
            df_st_db::Site::get_list_from_db(
                &*conn,
                id_filter![],
                string_filter![],
                0,
                200,
                None,
                None,
                None,
                ADD_NESTED_ITEMS,
            )
            .unwrap()
        }
    }

    fn structures(
        context: &Context,
        site_id: Option<i32>,
        structure_id: Option<i32>,
    ) -> Vec<df_st_core::Structure> {
        let conn = &context.conn;
        if let Some(site_id) = site_id {
            if let Some(structure_id) = structure_id {
                let search_item = df_st_db::Structure::get_from_db(
                    &*conn,
                    id_filter!["site_id" => site_id, "local_id" => structure_id],
                    ADD_NESTED_ITEMS,
                )
                .unwrap();
                if let Some(item) = search_item {
                    return vec![item];
                }
                return vec![];
            } else {
                df_st_db::Structure::get_list_from_db(
                    &*conn,
                    id_filter!["site_id" => site_id],
                    string_filter![],
                    0,
                    200,
                    None,
                    None,
                    None,
                    ADD_NESTED_ITEMS,
                )
                .unwrap()
            }
        } else {
            df_st_db::Structure::get_list_from_db(
                &*conn,
                id_filter![],
                string_filter![],
                0,
                200,
                None,
                None,
                None,
                ADD_NESTED_ITEMS,
            )
            .unwrap()
        }
    }

    fn site_properties(
        context: &Context,
        site_id: Option<i32>,
        site_property_id: Option<i32>,
    ) -> Vec<df_st_core::SiteProperty> {
        let conn = &context.conn;
        if let Some(site_id) = site_id {
            if let Some(site_property_id) = site_property_id {
                let search_item = df_st_db::SiteProperty::get_from_db(
                    &*conn,
                    id_filter!["site_id" => site_id, "local_id" => site_property_id],
                    ADD_NESTED_ITEMS,
                )
                .unwrap();
                if let Some(item) = search_item {
                    return vec![item];
                }
                return vec![];
            } else {
                df_st_db::SiteProperty::get_list_from_db(
                    &*conn,
                    id_filter!["site_id" => site_id],
                    string_filter![],
                    0,
                    200,
                    None,
                    None,
                    None,
                    ADD_NESTED_ITEMS,
                )
                .unwrap()
            }
        } else {
            df_st_db::SiteProperty::get_list_from_db(
                &*conn,
                id_filter![],
                string_filter![],
                0,
                200,
                None,
                None,
                None,
                ADD_NESTED_ITEMS,
            )
            .unwrap()
        }
    }
}

/// Struct for adding and modifiable data using GraphQL
pub struct MutationRoot;
#[juniper::object(Context = Context)]
impl MutationRoot {}

/// Open a GraphiQL page for testing GraphQL syntax
#[rocket::get("/")]
pub fn graphiql() -> content::Html<String> {
    juniper_rocket::graphiql_source("/graphql/graphql")
}

/// Open a GraphQL Playground page for testing GraphQL syntax
#[rocket::get("/play")]
pub fn graphiql_playground() -> content::Html<String> {
    juniper_rocket::playground_source("/graphql/graphql")
}

/// Get GraphQL request using GET method
#[rocket::get("/graphql?<request>")]
pub fn get_graphql_handler(
    conn: DfStDatabase,
    request: juniper_rocket::GraphQLRequest,
    schema: State<Schema>,
) -> juniper_rocket::GraphQLResponse {
    let context = Context { conn };
    request.execute(&schema, &context)
}

/// Get GraphQL request using POST method
#[rocket::post("/graphql", data = "<request>")]
pub fn post_graphql_handler(
    conn: DfStDatabase,
    request: juniper_rocket::GraphQLRequest,
    schema: State<Schema>,
) -> juniper_rocket::GraphQLResponse {
    let context = Context { conn };
    request.execute(&schema, &context)
}