2020-07-19 01:39:30 +03:00
|
|
|
package utils
|
|
|
|
|
|
|
|
import (
|
|
|
|
"database/sql/driver"
|
|
|
|
"fmt"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
2021-09-12 10:18:15 +03:00
|
|
|
// NullTime is a custom nullable time for representing datetime.
|
2020-07-19 01:39:30 +03:00
|
|
|
type NullTime struct {
|
|
|
|
Time time.Time
|
|
|
|
Valid bool // Valid is true if Time is not NULL
|
|
|
|
}
|
|
|
|
|
|
|
|
// Scan implements the Scanner interface.
|
|
|
|
func (nt *NullTime) Scan(value interface{}) error {
|
|
|
|
nt.Time, nt.Valid = value.(time.Time)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-11-15 05:39:53 +03:00
|
|
|
// Value implements the driver Value interface.
|
2020-07-19 01:39:30 +03:00
|
|
|
func (nt NullTime) Value() (driver.Value, error) {
|
|
|
|
if !nt.Valid {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
return nt.Time, nil
|
|
|
|
}
|
|
|
|
|
2021-09-12 10:18:15 +03:00
|
|
|
// MarshalJSON implements the JSON marshal function.
|
2020-07-19 01:39:30 +03:00
|
|
|
func (nt NullTime) MarshalJSON() ([]byte, error) {
|
|
|
|
if !nt.Valid {
|
|
|
|
return []byte("null"), nil
|
|
|
|
}
|
|
|
|
val := fmt.Sprintf("\"%s\"", nt.Time.Format(time.RFC3339))
|
|
|
|
return []byte(val), nil
|
|
|
|
}
|
2020-11-15 05:39:53 +03:00
|
|
|
|
2021-09-12 10:18:15 +03:00
|
|
|
// UnmarshalJSON implements the JSON unmarshal function.
|
2020-11-15 05:39:53 +03:00
|
|
|
func (nt NullTime) UnmarshalJSON(data []byte) error {
|
|
|
|
dateString := string(data)
|
|
|
|
if dateString == "null" {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
dateStringWithoutQuotes := dateString[1 : len(dateString)-1]
|
|
|
|
parsedDateTime, err := time.Parse(time.RFC3339, dateStringWithoutQuotes)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-09-12 10:18:15 +03:00
|
|
|
nt.Time = parsedDateTime // nolint
|
2020-11-15 05:39:53 +03:00
|
|
|
return nil
|
|
|
|
}
|