br-fields 2.3.5

This is a shortcut tool related to database fields
Documentation
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
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
use crate::Field;
use chrono::{DateTime, FixedOffset, Local, NaiveDate, NaiveDateTime};
use json::{object, JsonValue};
use std::time::{Duration, UNIX_EPOCH};

pub struct Year {
    pub require: bool,
    pub field: String,
    pub mode: String,
    pub title: String,
    pub def: String,
    pub show: bool,
    pub describe: String,
    pub example: JsonValue,
}

impl Year {
    pub fn new(require: bool, field: &str, title: &str, default: &str) -> Self {
        Self {
            field: field.to_string(),
            mode: "year".to_string(),
            title: title.to_string(),
            def: default.to_string(),
            require,
            show: true,
            describe: String::new(),
            example: JsonValue::Null,
        }
    }
    pub fn year() -> String {
        let now: DateTime<Local> = Local::now();
        let dft = now.format("%Y");
        dft.to_string()
    }
    pub fn timestamp_to_year(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").to_string();
        timestamp_str
    }
}

impl Field for Year {
    fn sql(&mut self, model: &str) -> String {
        let not_null = if self.require { " not null" } else { "" };
        match model {
            "sqlite" => format!(
                "`{}` INTEGER{} default '{}'",
                self.field, not_null, self.def
            ),
            "pgsql" => {
                let sql = format!(r#""{}" SMALLINT default '{}'"#, self.field, self.def);
                format!(
                    "{} --{}|{}|{}|{}",
                    sql, self.title, self.mode, self.require, self.def
                )
            }
            _ => {
                let sql = format!("`{}` year{} default '{}'", self.field, not_null, self.def);
                format!(
                    "{} comment '{}|{}|{}|{}'",
                    sql, self.title, self.mode, self.require, self.def
                )
            }
        }
    }
    fn hide(&mut self) -> &mut Self {
        self.show = false;
        self
    }

    fn describe(&mut self, text: &str) -> &mut Self {
        self.describe = text.to_string();
        self
    }
    fn field(&mut self) -> JsonValue {
        let mut field = object! {};
        field
            .insert("require", JsonValue::from(self.require))
            .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("show", JsonValue::from(self.show)).unwrap();
        field
            .insert("describe", JsonValue::from(self.describe.clone()))
            .unwrap();
        field.insert("example", self.example.clone()).unwrap();
        field
    }

    fn swagger(&mut self) -> JsonValue {
        object! {
            "type": self.mode.clone(),
            "example": self.example.clone(),
        }
    }
    fn example(&mut self, data: JsonValue) -> &mut Self {
        self.example = data.clone();
        self
    }
}

/// 年月 (时间戳存储)
///
/// * require 是否必填
/// * field 字段名
/// * mode 模式 yearmonth
/// * title 字段描述
/// * def 默认值 (时间戳,存储为每月1日 00:00:00)
pub struct YearMonth {
    pub require: bool,
    pub field: String,
    pub mode: String,
    pub title: String,
    pub def: i64,
    pub show: bool,
    pub describe: String,
    pub example: JsonValue,
}

impl YearMonth {
    pub fn new(require: bool, field: &str, title: &str, default: i64) -> Self {
        Self {
            field: field.to_string(),
            mode: "yearmonth".to_string(),
            title: title.to_string(),
            def: default,
            require,
            show: true,
            describe: String::new(),
            example: JsonValue::Null,
        }
    }
    /// 获取当前年月时间戳 (每月1日 00:00:00)
    pub fn year_month() -> i64 {
        let now: DateTime<Local> = Local::now();
        let first_day = format!("{}-01 00:00:00", now.format("%Y-%m"));
        let t = NaiveDateTime::parse_from_str(&first_day, "%Y-%m-%d %H:%M:%S").unwrap();
        let tz = FixedOffset::east_opt(Local::now().offset().local_minus_utc()).unwrap();
        t.and_local_timezone(tz).unwrap().timestamp()
    }
    #[allow(clippy::should_implement_trait)]
    /// YYYY-MM 格式转时间戳
    pub fn from_str(year_month: &str) -> i64 {
        let date_str = if year_month.len() == 7 {
            format!("{}-01 00:00:00", year_month)
        } else {
            format!("{} 00:00:00", year_month)
        };
        let t = match NaiveDateTime::parse_from_str(&date_str, "%Y-%m-%d %H:%M:%S") {
            Ok(t) => t,
            Err(_) => return 0,
        };
        let tz = FixedOffset::east_opt(Local::now().offset().local_minus_utc()).unwrap();
        t.and_local_timezone(tz).unwrap().timestamp()
    }
    /// 时间戳转 YYYY-MM 格式
    pub fn to_str(timestamp: i64) -> String {
        let d = UNIX_EPOCH + Duration::from_secs(timestamp as u64);
        let datetime = DateTime::<Local>::from(d);
        datetime.format("%Y-%m").to_string()
    }
}

impl Field for YearMonth {
    fn sql(&mut self, model: &str) -> String {
        let not_null = if self.require { " not null" } else { "" };
        let max = 10;
        match model {
            "sqlite" => {
                format!("`{}` REAL{} default {}", self.field, not_null, self.def)
            }
            "pgsql" => {
                let sql = format!(
                    r#""{}" decimal({},0) default {}"#,
                    self.field, max, self.def
                );
                format!(
                    "{} --{}|{}|{}|{}",
                    sql, self.title, self.mode, self.require, self.def
                )
            }
            _ => {
                let sql = format!(
                    "`{}` decimal({},0){} default {}",
                    self.field, max, not_null, self.def
                );
                format!(
                    "{} comment '{}|{}|{}|{}'",
                    sql, self.title, self.mode, self.require, self.def
                )
            }
        }
    }
    fn hide(&mut self) -> &mut Self {
        self.show = false;
        self
    }

    fn describe(&mut self, text: &str) -> &mut Self {
        self.describe = text.to_string();
        self
    }

    fn field(&mut self) -> JsonValue {
        let mut field = object! {};
        field
            .insert("require", JsonValue::from(self.require))
            .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)).unwrap();
        field.insert("show", JsonValue::from(self.show)).unwrap();
        field
            .insert("describe", JsonValue::from(self.describe.clone()))
            .unwrap();
        field.insert("example", self.example.clone()).unwrap();
        field
    }

    fn swagger(&mut self) -> JsonValue {
        object! {
            "type": self.mode.clone(),
            "example": self.example.clone(),
        }
    }
    fn example(&mut self, data: JsonValue) -> &mut Self {
        self.example = data.clone();
        self
    }
}

pub struct Datetime {
    pub require: bool,
    pub field: String,
    pub mode: String,
    pub title: String,
    pub def: i64,
    pub show: bool,
    pub describe: String,
    pub example: JsonValue,
}

impl Datetime {
    pub fn new(require: bool, field: &str, title: &str, default: i64) -> Self {
        Self {
            field: field.to_string(),
            mode: "datetime".to_string(),
            title: title.to_string(),
            def: default,
            require,
            show: true,
            describe: String::new(),
            example: JsonValue::Null,
        }
    }
    /// 当前日期时间戳(秒)
    pub fn datetime() -> i64 {
        Local::now().timestamp()
    }
    /// 时间戳转日期时间字符串
    pub fn timestamp_to_datetime(timestamp: i64) -> String {
        let d = UNIX_EPOCH + Duration::from_secs(timestamp as u64);
        let datetime = DateTime::<Local>::from(d);
        datetime.format("%Y-%m-%d %H:%M:%S").to_string()
    }
    /// 日期时间字符串转时间戳
    pub fn datetime_to_timestamp(datetime: &str) -> i64 {
        if datetime.is_empty() || datetime == "0001-01-01 00:00:00" {
            return 0;
        }
        let t = NaiveDateTime::parse_from_str(datetime, "%Y-%m-%d %H:%M:%S");
        match t {
            Ok(d) => {
                let tz = FixedOffset::east_opt(Local::now().offset().local_minus_utc()).unwrap();
                d.and_local_timezone(tz).unwrap().timestamp()
            }
            Err(_) => 0,
        }
    }
    pub fn datetime_format(format: &str) -> String {
        let now: DateTime<Local> = Local::now();
        let dft = now.format(format);
        dft.to_string()
    }
}

impl Field for Datetime {
    fn sql(&mut self, model: &str) -> String {
        let not_null = if self.require { " not null" } else { "" };
        let max = 10;
        match model {
            "sqlite" => {
                format!("`{}` REAL{} default {}", self.field, not_null, self.def)
            }
            "pgsql" => {
                let sql = format!(
                    r#""{}" decimal({},0) default {}"#,
                    self.field, max, self.def
                );
                format!(
                    "{} --{}|{}|{}|{}",
                    sql, self.title, self.mode, self.require, self.def
                )
            }
            _ => {
                let sql = format!(
                    "`{}` decimal({},0){} default {}",
                    self.field, max, not_null, self.def
                );
                format!(
                    "{} comment '{}|{}|{}|{}'",
                    sql, self.title, self.mode, self.require, self.def
                )
            }
        }
    }
    fn hide(&mut self) -> &mut Self {
        self.show = false;
        self
    }
    fn describe(&mut self, text: &str) -> &mut Self {
        self.describe = text.to_string();
        self
    }

    fn field(&mut self) -> JsonValue {
        let mut field = object! {};
        field
            .insert("require", JsonValue::from(self.require))
            .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)).unwrap();

        field.insert("show", JsonValue::from(self.show)).unwrap();
        field
            .insert("describe", JsonValue::from(self.describe.clone()))
            .unwrap();
        field.insert("example", self.example.clone()).unwrap();
        field
    }

    fn swagger(&mut self) -> JsonValue {
        object! {
            "type": self.mode.clone(),
            "example": self.example.clone(),
        }
    }
    fn example(&mut self, data: JsonValue) -> &mut Self {
        self.example = data.clone();
        self
    }
}
#[derive(Debug, Clone)]
pub struct Time {
    pub require: bool,
    pub field: String,
    pub mode: String,
    pub title: String,
    pub def: String,
    pub show: bool,
    pub describe: String,
    pub example: JsonValue,
}

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,
            show: true,
            describe: String::new(),
            example: JsonValue::Null,
        }
    }
    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 not_null = if self.require { " not null" } else { "" };
        match model {
            "sqlite" => format!("`{}` time{} default '{}'", self.field, not_null, self.def),
            "pgsql" => {
                let sql = format!(r#""{}" time default '{}'"#, self.field, self.def);
                format!(
                    "{} --{}|{}|{}|{}",
                    sql, self.title, self.mode, self.require, self.def
                )
            }
            _ => {
                let sql = format!("`{}` time{} default '{}'", self.field, not_null, self.def);
                format!(
                    "{} comment '{}|{}|{}|{}'",
                    sql, self.title, self.mode, self.require, self.def
                )
            }
        }
    }
    fn hide(&mut self) -> &mut Self {
        self.show = false;
        self
    }

    fn describe(&mut self, text: &str) -> &mut Self {
        self.describe = text.to_string();
        self
    }

    fn field(&mut self) -> JsonValue {
        let mut field = object! {};
        field
            .insert("require", JsonValue::from(self.require))
            .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("show", JsonValue::from(self.show)).unwrap();
        field
            .insert("describe", JsonValue::from(self.describe.clone()))
            .unwrap();
        field.insert("example", self.example.clone()).unwrap();
        field
    }

    fn swagger(&mut self) -> JsonValue {
        object! {
            "type": self.mode.clone(),
            "example": self.example.clone(),
        }
    }
    fn example(&mut self, data: JsonValue) -> &mut Self {
        self.example = data.clone();
        self
    }
}
#[derive(Debug, Clone)]
pub struct Date {
    pub require: bool,
    pub field: String,
    pub mode: String,
    pub title: String,
    pub def: i64,
    pub show: bool,
    pub describe: String,
    pub example: JsonValue,
}

impl Date {
    pub fn new(require: bool, field: &str, title: &str, default: i64) -> Self {
        Self {
            field: field.to_string(),
            mode: "date".to_string(),
            title: title.to_string(),
            def: default,
            require,
            show: true,
            describe: "".to_string(),
            example: JsonValue::Null,
        }
    }
    /// 当前日期时间戳(当天 00:00:00 UTC)
    pub fn date() -> i64 {
        let now: DateTime<Local> = Local::now();
        let today = now.format("%Y-%m-%d").to_string();
        let t = NaiveDate::parse_from_str(&today, "%Y-%m-%d").unwrap();
        let tz = FixedOffset::east_opt(Local::now().offset().local_minus_utc()).unwrap();
        t.and_hms_opt(0, 0, 0)
            .unwrap()
            .and_local_timezone(tz)
            .unwrap()
            .timestamp()
    }
    /// 时间戳转日期字符串
    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
    }
    /// 日期字符串转时间戳
    pub fn date_to_timestamp(date: &str) -> i64 {
        if date.is_empty() || date == "0001-01-01" {
            return 0;
        }
        let t = NaiveDate::parse_from_str(date, "%Y-%m-%d");
        match t {
            Ok(d) => {
                let tz = FixedOffset::east_opt(Local::now().offset().local_minus_utc()).unwrap();
                d.and_hms_opt(0, 0, 0)
                    .unwrap()
                    .and_local_timezone(tz)
                    .unwrap()
                    .timestamp()
            }
            Err(_) => 0,
        }
    }
}

impl Field for Date {
    fn sql(&mut self, model: &str) -> String {
        let not_null = if self.require { " not null" } else { "" };
        let max = 10;
        match model {
            "sqlite" => {
                format!("`{}` REAL{} default {}", self.field, not_null, self.def)
            }
            "pgsql" => {
                let sql = format!(
                    r#""{}" decimal({},0) default {}"#,
                    self.field, max, self.def
                );
                format!(
                    "{} --{}|{}|{}|{}",
                    sql, self.title, self.mode, self.require, self.def
                )
            }
            _ => {
                let sql = format!(
                    "`{}` decimal({},0){} default {}",
                    self.field, max, not_null, self.def
                );
                format!(
                    "{} comment '{}|{}|{}|{}'",
                    sql, self.title, self.mode, self.require, self.def
                )
            }
        }
    }
    fn hide(&mut self) -> &mut Self {
        self.show = false;
        self
    }

    fn describe(&mut self, text: &str) -> &mut Self {
        self.describe = text.to_string();
        self
    }

    fn field(&mut self) -> JsonValue {
        let mut field = object! {};
        field
            .insert("require", JsonValue::from(self.require))
            .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)).unwrap();

        field.insert("show", JsonValue::from(self.show)).unwrap();
        field
            .insert("describe", JsonValue::from(self.describe.clone()))
            .unwrap();
        field.insert("example", self.example.clone()).unwrap();
        field
    }
    fn swagger(&mut self) -> JsonValue {
        object! {
            "type": self.mode.clone(),
            "example": self.example.clone(),
        }
    }
    fn example(&mut self, data: JsonValue) -> &mut Self {
        self.example = data.clone();
        self
    }
}
#[derive(Debug, Clone)]
pub struct Timestamp {
    pub require: bool,
    pub field: String,
    pub mode: String,
    pub title: String,
    pub def: f64,
    pub dec: i32,
    pub show: bool,
    pub describe: String,
    pub example: JsonValue,
}

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,
            show: true,
            describe: "".to_string(),
            example: JsonValue::Null,
        }
    }
    /// 默认值 秒 10位
    pub fn timestamp() -> i64 {
        Local::now().timestamp()
    }
    /// 毫秒 13位
    pub fn timestamp_ms() -> i64 {
        Local::now().timestamp_millis()
    }
    /// 毫秒 10位+3位
    pub fn timestamp_ms_f64() -> f64 {
        Local::now().timestamp_millis() as f64 / 1000.0
    }
    /// 微秒 16位
    pub fn timestamp_μs() -> i64 {
        Local::now().timestamp_micros()
    }
    /// 微秒 16位
    pub fn timestamp_μs_f64() -> f64 {
        Local::now().timestamp_micros() as f64 / 1000.0 / 1000.0
    }
    /// 纳秒 19位
    pub fn timestamp_ns() -> i64 {
        Local::now().timestamp_nanos_opt().unwrap()
    }

    /// 日期转时间戳
    pub fn date_to_timestamp(date: &str) -> i64 {
        let t = NaiveDate::parse_from_str(date, "%Y-%m-%d").unwrap();
        let tz = FixedOffset::east_opt(Local::now().offset().local_minus_utc()).unwrap();
        t.and_hms_opt(0, 0, 0)
            .unwrap()
            .and_local_timezone(tz)
            .unwrap()
            .timestamp()
    }
    /// 日期时间转rfc2822 Thu, 3 Jul 2014 17:43:58 +0000
    pub fn datetime_to_rfc2822(datetime: &str) -> String {
        let t = NaiveDateTime::parse_from_str(datetime, "%Y-%m-%d %H:%M:%S").unwrap();
        let tz = FixedOffset::east_opt(Local::now().offset().local_minus_utc()).unwrap();
        t.and_local_timezone(tz).unwrap().to_rfc2822()
    }
    pub fn datetime_utc_rfc2822(datetime: &str) -> String {
        let t = NaiveDateTime::parse_from_str(datetime, "%Y-%m-%d %H:%M:%S").unwrap();
        t.and_utc().to_rfc2822()
    }
    pub fn datetime_to_fmt(datetime: &str, fmt: &str) -> String {
        let t = NaiveDateTime::parse_from_str(datetime, "%Y-%m-%d %H:%M:%S").unwrap();
        let tz = FixedOffset::east_opt(Local::now().offset().local_minus_utc()).unwrap();
        t.and_local_timezone(tz).unwrap().format(fmt).to_string()
    }
    pub fn datetime_to_timestamp(datetime: &str, fmt: &str) -> i64 {
        let t = NaiveDateTime::parse_from_str(datetime, fmt).unwrap();
        let tz = FixedOffset::east_opt(Local::now().offset().local_minus_utc()).unwrap();
        t.and_local_timezone(tz).unwrap().timestamp()
    }
    pub fn datetime_timestamp(datetime: &str) -> i64 {
        let t = NaiveDateTime::parse_from_str(datetime, "%Y-%m-%d %H:%M:%S").unwrap();
        let tz = FixedOffset::east_opt(Local::now().offset().local_minus_utc()).unwrap();
        t.and_local_timezone(tz).unwrap().timestamp()
    }
}

impl Field for Timestamp {
    fn sql(&mut self, model: &str) -> String {
        let not_null = if self.require { " not null" } else { "" };
        let max = 10 + self.dec;
        match model {
            "sqlite" => {
                let def = format!("{0:.width$}", self.def, width = self.dec as usize)
                    .parse::<f64>()
                    .unwrap();
                format!("`{}` REAL{} default {}", self.field, not_null, def)
            }
            "pgsql" => {
                let def = format!("{0:.width$}", self.def, width = self.dec as usize);
                let def_value = def.parse::<f64>().unwrap();
                let sql = format!(
                    r#""{}" decimal({},{}) default {}"#,
                    self.field, max, self.dec, def_value
                );
                format!(
                    "{} --{}|{}|{}|{}|{}",
                    sql, self.title, self.mode, self.require, self.dec, def_value
                )
            }
            _ => {
                let def = format!("{0:.width$}", self.def, width = self.dec as usize);
                let def_value = def.parse::<f64>().unwrap();
                let sql = format!(
                    "`{}` decimal({},{}){} default {}",
                    self.field, max, self.dec, not_null, def_value
                );
                format!(
                    "{} comment '{}|{}|{}|{}|{}'",
                    sql, self.title, self.mode, self.require, self.dec, def_value
                )
            }
        }
    }
    fn hide(&mut self) -> &mut Self {
        self.show = false;
        self
    }

    fn describe(&mut self, text: &str) -> &mut Self {
        self.describe = text.to_string();
        self
    }

    fn field(&mut self) -> JsonValue {
        let mut field = object! {};
        field
            .insert("require", JsonValue::from(self.require))
            .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)).unwrap();
        field.insert("dec", JsonValue::from(self.dec)).unwrap();
        field.insert("show", JsonValue::from(self.show)).unwrap();
        field
            .insert("describe", JsonValue::from(self.describe.clone()))
            .unwrap();
        field.insert("example", self.example.clone()).unwrap();
        field
    }

    fn swagger(&mut self) -> JsonValue {
        object! {
            "type": self.mode.clone(),
            "example": self.example.clone(),
        }
    }

    fn example(&mut self, data: JsonValue) -> &mut Self {
        self.example = data.clone();
        self
    }
}