diff options
Diffstat (limited to 'dichroism/src/repo/entities')
| -rw-r--r-- | dichroism/src/repo/entities/mod.rs | 9 | ||||
| -rw-r--r-- | dichroism/src/repo/entities/photo_set.rs | 22 | ||||
| -rw-r--r-- | dichroism/src/repo/entities/photo_set_form.rs | 24 | ||||
| -rw-r--r-- | dichroism/src/repo/entities/product.rs | 39 | ||||
| -rw-r--r-- | dichroism/src/repo/entities/product_form.rs | 30 | 
5 files changed, 0 insertions, 124 deletions
diff --git a/dichroism/src/repo/entities/mod.rs b/dichroism/src/repo/entities/mod.rs deleted file mode 100644 index 288f1e3..0000000 --- a/dichroism/src/repo/entities/mod.rs +++ /dev/null @@ -1,9 +0,0 @@ -mod photo_set; -mod photo_set_form; -mod product; -mod product_form; - -pub use photo_set::*; -pub use photo_set_form::*; -pub use product::*; -pub use product_form::*; diff --git a/dichroism/src/repo/entities/photo_set.rs b/dichroism/src/repo/entities/photo_set.rs deleted file mode 100644 index 6e48e12..0000000 --- a/dichroism/src/repo/entities/photo_set.rs +++ /dev/null @@ -1,22 +0,0 @@ -use crate::models; - -#[derive(Debug, Clone, Queryable)] -pub struct PhotoSet { -    pub id: i32, -    pub original: String, -    pub fullsize: String, -    pub base: String, -    pub thumbnail: String, -} - -impl Into<models::PhotoSet> for PhotoSet { -    fn into(self) -> models::PhotoSet { -        models::PhotoSet { -            id: Some(self.id), -            original: models::Photo::new(self.original), -            fullsize: models::Photo::new(self.fullsize), -            base: models::Photo::new(self.base), -            thumbnail: models::Photo::new(self.thumbnail), -        } -    } -} diff --git a/dichroism/src/repo/entities/photo_set_form.rs b/dichroism/src/repo/entities/photo_set_form.rs deleted file mode 100644 index 611c8f0..0000000 --- a/dichroism/src/repo/entities/photo_set_form.rs +++ /dev/null @@ -1,24 +0,0 @@ -use crate::models::PhotoSet; -use crate::schema::photo_sets; - -#[derive(Insertable, AsChangeset)] -#[table_name = "photo_sets"] -pub struct PhotoSetForm { -    pub id: i32, -    pub original: String, -    pub fullsize: String, -    pub base: String, -    pub thumbnail: String, -} - -impl From<PhotoSet> for PhotoSetForm { -    fn from(p: PhotoSet) -> Self { -        Self { -            id: p.id.unwrap_or(-1), -            original: p.original.id, -            fullsize: p.fullsize.id, -            base: p.base.id, -            thumbnail: p.thumbnail.id, -        } -    } -} diff --git a/dichroism/src/repo/entities/product.rs b/dichroism/src/repo/entities/product.rs deleted file mode 100644 index c89495a..0000000 --- a/dichroism/src/repo/entities/product.rs +++ /dev/null @@ -1,39 +0,0 @@ -use crate::models; -use crate::schema::products; - -#[derive(Debug, Clone, Identifiable, Queryable)] -pub struct Product { -    pub id: i32, -    pub name: String, -    pub description: String, -    pub quantity: i32, -    pub cents: i32, -    pub featured: i32, -    pub category: String, -    pub photo_set_id: i32, -    pub original: String, -    pub fullsize: String, -    pub base: String, -    pub thumbnail: String, -} - -impl Into<models::Product> for Product { -    fn into(self) -> models::Product { -        models::Product { -            id: Some(self.id), -            name: self.name, -            description: self.description, -            quantity: self.quantity, -            cents: self.cents, -            featured: self.featured != 0, -            category: self.category, -            photo_set: models::PhotoSet { -                id: Some(self.photo_set_id), -                original: models::Photo::new(self.original), -                fullsize: models::Photo::new(self.fullsize), -                base: models::Photo::new(self.base), -                thumbnail: models::Photo::new(self.thumbnail), -            }, -        } -    } -} diff --git a/dichroism/src/repo/entities/product_form.rs b/dichroism/src/repo/entities/product_form.rs deleted file mode 100644 index b3447eb..0000000 --- a/dichroism/src/repo/entities/product_form.rs +++ /dev/null @@ -1,30 +0,0 @@ -use crate::models::*; -use crate::schema::products; - -#[derive(Debug, Insertable, AsChangeset)] -#[table_name = "products"] -pub struct ProductForm { -    pub id: i32, -    pub name: String, -    pub description: String, -    pub quantity: i32, -    pub cents: i32, -    pub featured: i32, -    pub photo_set: i32, -    pub category: String, -} - -impl From<Product> for ProductForm { -    fn from(p: Product) -> Self { -        Self { -            id: p.id.unwrap_or(-1), -            name: p.name, -            description: p.description, -            quantity: p.quantity, -            cents: p.cents, -            featured: p.featured as i32, -            photo_set: p.photo_set.id.unwrap_or(-1), -            category: p.category, -        } -    } -}  |