1
0
Fork 0
justguestbook/guestbook/entry.go

30 lines
719 B
Go
Raw Normal View History

2022-10-19 03:25:43 +04:00
package guestbook
import (
"errors"
"time"
)
type Entry struct {
2023-02-05 16:28:55 +04:00
ID int64 `json:"entry_id"`
Created time.Time `json:"created"`
Name string `json:"name"`
Website string `json:"website,omitempty"`
HideWebsite bool `json:"hide_website,omitempty"`
2023-05-06 22:16:40 +04:00
Message string `json:"message"`
2023-02-05 16:28:55 +04:00
Reply *Reply `json:"reply,omitempty"`
2022-10-19 03:25:43 +04:00
}
func NewEntry(name, message, website string, hideWebsite bool) (*Entry, error) {
2022-10-19 03:25:43 +04:00
if name == "" || message == "" {
return nil, errors.New("name and message field are required")
}
return &Entry{
2023-02-05 16:28:55 +04:00
Created: time.Now().UTC(),
2022-10-19 03:25:43 +04:00
Name: name,
Website: website,
HideWebsite: hideWebsite,
Message: message}, nil
}