image.rs
3.67 KB
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
use std::sync::Arc;
use crate::error::*;
use crate::{schema::*, Pool};
use diesel::{Connection, insert_into, delete, update};
use diesel::prelude::*;
use serde::{Deserialize, Serialize};
#[derive(Clone, Debug, Serialize, Deserialize, Queryable, Identifiable)]
pub struct Image {
pub id :i32,
pub upload_uuid :Option<Vec<u8>>,
pub uuid :Option<Vec<u8>>,
pub size :i32,
pub dim_x :Option<i32>,
pub dim_y :Option<i32>,
pub mime_type :String,
pub date_created :String,
pub date_updated :String
}
#[derive(Debug, Insertable)]
#[table_name = "images"]
pub struct ImageNew<'a> {
pub upload_uuid :Option<&'a [u8]>,
pub size :i32,
pub mime_type :&'a str,
pub date_created :&'a str,
pub date_updated :&'a str
}
#[derive(Clone, Debug, Serialize, Deserialize, AsChangeset)]
#[table_name = "images"]
pub struct Upload {
pub upload_uuid :Option<Vec<u8>>,
pub size :i32,
pub mime_type :String,
}
#[derive(Clone, Debug, Serialize, Deserialize, AsChangeset)]
#[table_name = "images"]
#[changeset_options(treat_none_as_null = "true")]
pub struct ImagePatch {
pub upload_uuid :Option<Vec<u8>>,
pub uuid :Option<Vec<u8>>,
pub size :i32,
pub dim_x :Option<i32>,
pub dim_y :Option<i32>,
pub mime_type :String,
pub date_updated :String
}
impl From<Image> for ImagePatch {
fn from(image: Image) -> Self {
let now = chrono::Local::now().naive_local();
Self { upload_uuid :image.upload_uuid
, uuid :image.uuid
, size :image.size
, dim_x :image.dim_x
, dim_y :image.dim_y
, mime_type :image.mime_type
, date_updated :format!("{}", now)
}
}
}
#[macro_export]
macro_rules! upload_uuid {
($u:expr) => {
match &$u.upload_uuid {
Some(uuid) => $crate::uuid::Uuid::try_from(uuid.as_slice()).ok(),
None => None,
}
};
}
#[macro_export]
macro_rules! upload_filename {
($u:expr) => {
$crate::upload_uuid!($u)
. and_then(|uuid| Some(format!( "{}/upload_{}"
, $crate::config::CONFIG.upload_dir()
, uuid )))
};
}
pub(crate) fn upload( pool: Arc<Pool>
, item: Upload ) -> Result<Image> {
use crate::schema::images::dsl::*;
let db_connection = pool.get()?;
let now = chrono::Local::now().naive_local();
let new_image = ImageNew {
upload_uuid : item.upload_uuid.as_deref(),
size : item.size,
mime_type : &item.mime_type,
date_created : &format!("{}", now),
date_updated : &format!("{}", now)
};
Ok(db_connection.transaction(|| {
insert_into(images) . values(&new_image)
. execute(&db_connection)?;
images . order(id.desc())
. first::<Image>(&db_connection)
})?)
}
pub(crate) fn finalize( pool: Arc<Pool>
, item: Image ) -> Result<Image> {
use crate::schema::images::dsl::*;
let db_connection = pool.get()?;
let item_uuid = item.uuid.clone();
match images . filter(uuid.eq(item_uuid))
. first::<Image>(&db_connection) {
Ok(image) => {
delete(images.find(item.id)).execute(&db_connection)?;
Ok(image)
},
Err(_) => {
let image = images.find(item.id);
let patch = ImagePatch::from(item.clone());
update(image).set(&patch).execute(&db_connection)?;
Ok(item)
},
}
}