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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
use std::time::{Duration, UNIX_EPOCH};
use json::{JsonValue, object};
use crate::Field;
use chrono::{DateTime, Local, NaiveDate, NaiveDateTime};

pub struct Year {
    pub require: bool,
    pub field: String,
    pub mode: String,
    pub title: String,
    pub def: u64,
}

impl Year {
    pub fn new(require: bool, field: &str, title: &str, default: u64) -> Self {
        Self {
            field: field.to_string(),
            mode: "year".to_string(),
            title: title.to_string(),
            def: default,
            require,
        }
    }
    pub fn year() -> String {
        let now: DateTime<Local> = Local::now();
        let dft = now.format("%Y");
        dft.to_string()
    }
}

impl Field for Year {
    fn sql(&mut self, model: &str) -> String {
        let mut sql = format!("{}", self.field);
        sql = format!("{} year", sql.clone());
        if self.require {
            sql = format!("{} not null default '{}'", sql.clone(), self.def);
        } else {
            sql = format!("{} null", sql.clone())
        }
        match model {
            "sqlite" => sql,
            _ => format!("{} comment '{}|{}|{}|{}'", sql.clone(), self.title, self.mode, self.require, self.def)
        }
    }
    fn field(&mut self) -> JsonValue {
        let mut field = object! {};
        field.insert("require", JsonValue::from(self.require.clone())).unwrap();
        field.insert("field", JsonValue::from(self.field.clone())).unwrap();
        field.insert("mode", JsonValue::from(self.mode.clone())).unwrap();
        field.insert("title", JsonValue::from(self.title.clone())).unwrap();
        field.insert("def", JsonValue::from(self.def.clone())).unwrap();
        field
    }
}


pub struct Datetime {
    pub require: bool,
    pub field: String,
    pub mode: String,
    pub title: String,
    pub def: String,
}

impl Datetime {
    pub fn new(require: bool, field: &str, title: &str, mut default: &str) -> Self {
        if default == "" {
            default = "0000-01-01 00:00:00"
        }
        Self {
            field: field.to_string(),
            mode: "datetime".to_string(),
            title: title.to_string(),
            def: default.to_string(),
            require,
        }
    }
    pub fn datetime() -> String {
        let now: DateTime<Local> = Local::now();
        let dft = now.format("%Y-%m-%d %H:%M:%S");
        dft.to_string()
    }
    pub fn timestamp_to_datetime(timestamp: i64) -> String {
        let d = UNIX_EPOCH + Duration::from_secs(timestamp as u64);
        let datetime = DateTime::<Local>::from(d);
        let timestamp_str = datetime.format("%Y-%m-%d %H:%M:%S").to_string();
        timestamp_str
    }
}

impl Field for Datetime {
    fn sql(&mut self, model: &str) -> String {
        let mut sql = format!("{}", self.field);
        sql = format!("{} datetime", sql.clone());
        if self.require {
            sql = format!("{} not null default '{}'", sql.clone(), self.def);
        } else {
            sql = format!("{} null", sql.clone())
        }
        match model {
            "sqlite" => sql,
            _ => format!("{} comment '{}|{}|{}|{}'", sql.clone(), self.title, self.mode, self.require, self.def)
        }
    }
    fn field(&mut self) -> JsonValue {
        let mut field = object! {};
        field.insert("require", JsonValue::from(self.require.clone())).unwrap();
        field.insert("field", JsonValue::from(self.field.clone())).unwrap();
        field.insert("mode", JsonValue::from(self.mode.clone())).unwrap();
        field.insert("title", JsonValue::from(self.title.clone())).unwrap();
        field.insert("def", JsonValue::from(self.def.clone())).unwrap();
        field
    }
}


pub struct Time {
    pub require: bool,
    pub field: String,
    pub mode: String,
    pub title: String,
    pub def: String,
}

impl Time {
    pub fn new(require: bool, field: &str, title: &str, default: &str) -> Self {
        Self {
            field: field.to_string(),
            mode: "time".to_string(),
            title: title.to_string(),
            def: default.to_string(),
            require,
        }
    }
    pub fn time() -> String {
        let now: DateTime<Local> = Local::now();
        let dft = now.format("%H:%M:%S");
        dft.to_string()
    }
}

impl Field for Time {
    fn sql(&mut self, model: &str) -> String {
        let mut sql = format!("{}", self.field);
        sql = format!("{} time", sql.clone());
        if self.require {
            sql = format!("{} not null default '{}'", sql.clone(), self.def);
        } else {
            sql = format!("{} null", sql.clone())
        }
        match model {
            "sqlite" => sql,
            _ => format!("{} comment '{}|{}|{}|{}'", sql.clone(), self.title, self.mode, self.require, self.def)
        }
    }
    fn field(&mut self) -> JsonValue {
        let mut field = object! {};
        field.insert("require", JsonValue::from(self.require.clone())).unwrap();
        field.insert("field", JsonValue::from(self.field.clone())).unwrap();
        field.insert("mode", JsonValue::from(self.mode.clone())).unwrap();
        field.insert("title", JsonValue::from(self.title.clone())).unwrap();
        field.insert("def", JsonValue::from(self.def.clone())).unwrap();
        field
    }
}


pub struct Date {
    pub require: bool,
    pub field: String,
    pub mode: String,
    pub title: String,
    pub def: String,
}

impl Date {
    pub fn new(require: bool, field: &str, title: &str, default: &str) -> Self {
        let def = {
            if default == "" {
                "0000-01-01"
            } else {
                default
            }
        };
        Self {
            field: field.to_string(),
            mode: "date".to_string(),
            title: title.to_string(),
            def: def.parse().unwrap(),
            require,
        }
    }
    /// 默认值 2023-01-01
    pub fn date() -> String {
        let now: DateTime<Local> = Local::now();
        let dft = now.format("%Y-%m-%d");
        dft.to_string()
    }
    pub fn timestamp_to_date(timestamp: i64) -> String {
        let d = UNIX_EPOCH + Duration::from_secs(timestamp as u64);
        let datetime = DateTime::<Local>::from(d);
        let timestamp_str = datetime.format("%Y-%m-%d").to_string();
        timestamp_str
    }
}

impl Field for Date {
    fn sql(&mut self, model: &str) -> String {
        let mut sql = format!("{}", self.field);
        sql = format!("{} date", sql.clone());
        if self.require {
            sql = format!("{} not null default '{}'", sql.clone(), self.def);
        } else {
            sql = format!("{} null", sql.clone())
        }
        match model {
            "sqlite" => sql,
            _ => format!("{} comment '{}|{}|{}|{}'", sql.clone(), self.title, self.mode, self.require, self.def)
        }
    }
    fn field(&mut self) -> JsonValue {
        let mut field = object! {};
        field.insert("require", JsonValue::from(self.require.clone())).unwrap();
        field.insert("field", JsonValue::from(self.field.clone())).unwrap();
        field.insert("mode", JsonValue::from(self.mode.clone())).unwrap();
        field.insert("title", JsonValue::from(self.title.clone())).unwrap();
        field.insert("def", JsonValue::from(self.def.clone())).unwrap();
        field
    }
}


pub struct Timestamp {
    pub require: bool,
    pub field: String,
    pub mode: String,
    pub title: String,
    pub def: f64,
    pub dec: i32,
}

impl Timestamp {
    pub fn new(require: bool, field: &str, title: &str, dec: i32, default: f64) -> Self {
        Self {
            require,
            field: field.to_string(),
            mode: "timestamp".to_string(),
            title: title.to_string(),
            def: default,
            dec,
        }
    }
    /// 默认值 秒 10位
    pub fn timestamp() -> i64 {
        return Local::now().timestamp();
    }
    /// 毫秒 13位
    pub fn timestamp_ms() -> i64 {
        return Local::now().timestamp_millis();
    }
    /// 微秒 16位
    pub fn timestamp_μs() -> i64 {
        return Local::now().timestamp_micros();
    }
    /// 纳秒 19位
    pub fn timestamp_ns() -> i64 {
        return Local::now().timestamp_nanos();
    }

    /// 日期转时间戳
    pub fn date_to_timestamp(date: &str) -> i64 {
        let t = NaiveDate::parse_from_str(date, "%Y-%m-%d").unwrap();
        return t.and_hms_opt(0, 0, 0).unwrap().timestamp();
    }
    /// 日期时间转时间戳
    pub fn datetime_to_timestamp(datetime: &str) -> i64 {
        let t = NaiveDateTime::parse_from_str(datetime, "%Y-%m-%d %H:%M:%S").unwrap();
        return t.timestamp();
    }
}

impl Field for Timestamp {
    fn sql(&mut self, model: &str) -> String {
        let max = 10 + self.dec;

        let mut sql = format!("{}", self.field);
        sql = format!("{} float({},{})", sql.clone(), max, self.dec);
        if self.require {
            sql = format!("{} not null", sql.clone())
        };
        self.def = format!("{0:.width$}", self.def, width = self.dec as usize).parse::<f64>().unwrap();
        sql = format!("{} default {}", sql.clone(), self.def);
        match model {
            "sqlite" => sql,
            _ => format!("{} comment '{}|{}|{}|{}|{}'", sql.clone(), self.title, self.mode, self.require, self.dec, self.def)
        }
    }
    fn field(&mut self) -> JsonValue {
        let mut field = object! {};
        field.insert("require", JsonValue::from(self.require.clone())).unwrap();
        field.insert("field", JsonValue::from(self.field.clone())).unwrap();
        field.insert("mode", JsonValue::from(self.mode.clone())).unwrap();
        field.insert("title", JsonValue::from(self.title.clone())).unwrap();
        field.insert("def", JsonValue::from(self.def.clone())).unwrap();
        field.insert("dec", JsonValue::from(self.dec.clone())).unwrap();
        field
    }
}