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
232
233
234
235
236
237
238
239
240
use crate::db_object::{DBObject, OrderTypes};
use crate::df_world::{DBDFWorld, WrittenContent};
use crate::schema::wc_style;
use crate::DbConnection;
use df_st_core::fillable::{Fillable, Filler};
use df_st_core::item_count::ItemCount;
use df_st_derive::Fillable;
use diesel::expression_methods::ExpressionMethods;
use diesel::prelude::*;
use diesel::query_dsl::RunQueryDsl;
use diesel::Queryable;
use failure::Error;
use std::collections::HashMap;

#[derive(
    Clone, Debug, AsChangeset, Identifiable, Associations, Queryable, Insertable, Fillable, Default,
)]
#[table_name = "wc_style"]
#[primary_key(written_content_id, local_id)]
#[belongs_to(WrittenContent)]
pub struct WCStyle {
    pub written_content_id: i32,
    pub local_id: i32,
    pub world_id: i32,
    pub label: Option<String>,
    pub weight: Option<i32>,
}

impl WCStyle {
    pub fn new() -> Self {
        Self::default()
    }
}

impl DBObject<df_st_core::WCStyle, WCStyle> for WCStyle {
    fn add_missing_data_advanced(core_world: &df_st_core::DFWorld, world: &mut DBDFWorld) {
        for written_content in core_world.written_contents.values() {
            for style in &written_content.style {
                let mut db_style = WCStyle::new();
                db_style.add_missing_data(&style);
                db_style
                    .written_content_id
                    .add_missing_data(&written_content.id);
                world.wc_styles.push(db_style);
            }
        }
    }

    #[cfg(feature = "postgres")]
    fn insert_into_db(conn: &DbConnection, wc_style: &[WCStyle]) {
        use diesel::pg::upsert::excluded;
        diesel::insert_into(wc_style::table)
            .values(wc_style)
            .on_conflict((
                wc_style::written_content_id,
                wc_style::local_id,
                wc_style::world_id,
            ))
            .do_update()
            .set((
                wc_style::label.eq(excluded(wc_style::label)),
                wc_style::weight.eq(excluded(wc_style::weight)),
            ))
            .execute(conn)
            .expect("Error saving WCStyle");
    }

    #[cfg(not(feature = "postgres"))]
    fn insert_into_db(conn: &DbConnection, wc_style: &[WCStyle]) {
        diesel::insert_into(wc_style::table)
            .values(wc_style)
            .execute(conn)
            .expect("Error saving WCStyle");
    }

    fn find_db_list(
        conn: &DbConnection,
        id_filter: HashMap<String, i32>,
        _string_filter: HashMap<String, String>,
        offset: i64,
        limit: i64,
        order: Option<OrderTypes>,
        order_by: Option<String>,
        _id_list: Option<Vec<i32>>,
    ) -> Result<Vec<WCStyle>, Error> {
        use crate::schema::wc_style::dsl::*;
        let (order_by, asc) = Self::get_order(order, order_by);
        let query = wc_style.limit(limit).offset(offset);
        let query = query.filter(world_id.eq(id_filter.get("world_id").unwrap_or(&0)));
        if id_filter.get("written_content_id").is_some() {
            let query = query
                .filter(written_content_id.eq(id_filter.get("written_content_id").unwrap_or(&0)));
            optional_filter! {
                query, id_filter,
                [
                    "local_id" => local_id,
                ],
                {Ok(order_by!{
                    order_by, asc, query, conn,
                    "written_content_id" => written_content_id,
                    "local_id" => local_id,
                    "label" => label,
                    "weight" => weight,
                })},
            }
        } else {
            optional_filter! {
                query, id_filter,
                [
                    "local_id" => local_id,
                ],
                {Ok(order_by!{
                    order_by, asc, query, conn,
                    "written_content_id" => written_content_id,
                    "local_id" => local_id,
                    "label" => label,
                    "weight" => weight,
                })},
            }
        }
    }

    fn find_db_item(
        conn: &DbConnection,
        id_filter: HashMap<String, i32>,
    ) -> Result<Option<WCStyle>, Error> {
        use crate::schema::wc_style::dsl::*;
        let query = wc_style;
        let query =
            query.filter(written_content_id.eq(id_filter.get("written_content_id").unwrap_or(&0)));
        let query = query.filter(world_id.eq(id_filter.get("world_id").unwrap_or(&0)));
        let query = query.filter(local_id.eq(id_filter.get("local_id").unwrap_or(&0)));
        Ok(query.first::<WCStyle>(conn).optional()?)
    }

    fn match_field_by(field: String) -> String {
        match field.as_ref() {
            "local_id" => "local_id",
            "label" => "label",
            "weight" => "weight",
            _ => "written_content_id",
        }
        .to_owned()
    }

    fn add_nested_items(
        _conn: &DbConnection,
        _db_list: &[WCStyle],
        core_list: Vec<df_st_core::WCStyle>,
    ) -> Result<Vec<df_st_core::WCStyle>, Error> {
        Ok(core_list)
    }

    fn get_count_from_db(
        conn: &DbConnection,
        id_filter: HashMap<String, i32>,
        _string_filter: HashMap<String, String>,
        offset: u32,
        limit: u32,
        group_by_opt: Option<String>,
        _id_list: Option<Vec<i32>>,
    ) -> Result<Vec<ItemCount>, Error> {
        use crate::schema::wc_style::dsl::*;
        let query = wc_style.limit(limit as i64).offset(offset as i64);
        let query = query.filter(world_id.eq(id_filter.get("world_id").unwrap_or(&0)));
        if id_filter.get("written_content_id").is_some() {
            let query = query
                .filter(written_content_id.eq(id_filter.get("written_content_id").unwrap_or(&0)));
            optional_filter! {
                query, id_filter,
                [
                    "local_id" => local_id,
                ],
                {group_by!{
                    group_by_opt, query, conn,
                    "written_content_id" => {written_content_id: i32},
                    "local_id" => {local_id: i32},
                    "label" => {label: Option<String>},
                    "weight" => {weight: Option<i32>},
                };},
            };
        } else {
            optional_filter! {
                query, id_filter,
                [
                    "local_id" => local_id,
                ],
                {
                    group_by!{
                        group_by_opt, query, conn,
                        "written_content_id" => {written_content_id: i32},
                        "local_id" => {local_id: i32},
                        "label" => {label: Option<String>},
                        "weight" => {weight: Option<i32>},
                    };
                },
            };
        }
    }
}

/// From Core to DB
impl Filler<WCStyle, df_st_core::WCStyle> for WCStyle {
    fn add_missing_data(&mut self, source: &df_st_core::WCStyle) {
        self.written_content_id
            .add_missing_data(&source.written_content_id);
        self.local_id.add_missing_data(&source.local_id);
        self.label.add_missing_data(&source.label);
        self.weight.add_missing_data(&source.weight);
    }
}

/// From DB to Core
impl Filler<df_st_core::WCStyle, WCStyle> for df_st_core::WCStyle {
    fn add_missing_data(&mut self, source: &WCStyle) {
        self.written_content_id
            .add_missing_data(&source.written_content_id);
        self.local_id.add_missing_data(&source.local_id);
        self.label.add_missing_data(&source.label);
        self.weight.add_missing_data(&source.weight);
    }
}

impl PartialEq<df_st_core::WCStyle> for WCStyle {
    fn eq(&self, other: &df_st_core::WCStyle) -> bool {
        self.written_content_id == other.written_content_id && self.local_id == other.local_id
    }
}

impl PartialEq<WCStyle> for df_st_core::WCStyle {
    fn eq(&self, other: &WCStyle) -> bool {
        self.written_content_id == other.written_content_id && self.local_id == other.local_id
    }
}

impl PartialEq<WCStyle> for WCStyle {
    fn eq(&self, other: &Self) -> bool {
        self.written_content_id == other.written_content_id && self.local_id == other.local_id
    }
}