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
use crate::db_object::{DBObject, OrderTypes};
use crate::df_world::{DBDFWorld, Region};
use crate::schema::regions_forces;
use crate::DbConnection;
use df_st_core::fillable::{Fillable, Filler};
use df_st_core::item_count::ItemCount;
use df_st_derive::{Fillable, Filler};
use diesel::expression_methods::ExpressionMethods;
use diesel::prelude::*;
use diesel::query_dsl::RunQueryDsl;
use failure::Error;
use std::collections::HashMap;
use std::fmt;

#[derive(Clone, Queryable, Insertable, Default, Associations, Identifiable, Fillable, Filler)]
#[table_name = "regions_forces"]
#[primary_key(region_id, force_id)]
#[belongs_to(Region)]
pub struct RegionForce {
    pub region_id: i32,
    pub force_id: i32,
    pub world_id: i32,
}

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

// There is no core variant of this item, so implement it for itself.
impl DBObject<RegionForce, RegionForce> for RegionForce {
    fn add_missing_data_advanced(core_world: &df_st_core::DFWorld, world: &mut DBDFWorld) {
        for region in core_world.regions.values() {
            for force_id in &region.force_id {
                world.regions_forces.push(RegionForce {
                    region_id: region.id,
                    force_id: *force_id,
                    ..Default::default()
                });
            }
        }
    }

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

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

    /// Get a list of RegionForce from the database
    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<RegionForce>, Error> {
        use crate::schema::regions_forces::dsl::*;
        let (order_by, asc) = Self::get_order(order, order_by);
        let query = regions_forces.limit(limit).offset(offset);
        let query = query.filter(world_id.eq(id_filter.get("world_id").unwrap_or(&0)));
        optional_filter! {
            query, id_filter,
            [
                "region_id" => region_id,
                "force_id" => force_id,
            ],
            {Ok(order_by!{
                order_by, asc, query, conn,
                "region_id" => region_id,
                "force_id" => force_id,
            })},
        }
    }

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

    fn match_field_by(field: String) -> String {
        match field.as_ref() {
            "force_id" => "force_id",
            _ => "region_id",
        }
        .to_owned()
    }

    fn add_nested_items(
        _conn: &DbConnection,
        _db_list: &[RegionForce],
        core_list: Vec<RegionForce>,
    ) -> Result<Vec<RegionForce>, 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::regions_forces::dsl::*;
        let query = regions_forces.limit(limit as i64).offset(offset as i64);
        let query = query.filter(world_id.eq(id_filter.get("world_id").unwrap_or(&0)));
        optional_filter! {
            query, id_filter,
            [
                "region_id" => region_id,
                "force_id" => force_id,
            ],
            {group_by!{
                group_by_opt, query, conn,
                "region_id" => {region_id: i32},
                "force_id" => {force_id: i32},
            };},
        };
    }
}

impl PartialEq for RegionForce {
    fn eq(&self, other: &Self) -> bool {
        self.region_id == other.region_id && self.force_id == other.force_id
    }
}

/// Force a new format for `RegionForce` to not clutter the screen
impl fmt::Debug for RegionForce {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.write_str(&format! {"(region_id: {}, force_id: {})",
        self.region_id, self.force_id})
    }
}

impl fmt::Display for RegionForce {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(
            f,
            "(region_id: {}, force_id: {})",
            self.region_id, self.force_id
        )
    }
}