-
Notifications
You must be signed in to change notification settings - Fork 0
/
models.go
108 lines (96 loc) · 2.45 KB
/
models.go
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
package main
import (
"time"
"github.com/bsach64/blogAggregator/internal/database"
"github.com/google/uuid"
)
type Feed struct {
ID uuid.UUID `json:"id"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
Name string `json:"name"`
Url string `json:"url"`
UserID uuid.UUID `json:"user_id"`
LastFetchedAt *time.Time `json:"last_fetched_at"`
}
type User struct {
ID uuid.UUID `json:"id"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
Name string `json:"name"`
ApiKey string `json:"api_key"`
}
type FeedFollow struct {
ID uuid.UUID `json:"id"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
UserID uuid.UUID `json:"user_id"`
FeedID uuid.UUID `json:"feed_id"`
}
type Post struct {
ID uuid.UUID `json:"id"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
Title string `json:"title"`
Url string `json:"url"`
Description *string `json:"description"`
PublishedAt *time.Time `json:"published_at"`
FeedID uuid.UUID `json:"feed_id"`
}
func userFromDatabaseUser(user database.User) User {
return User{
ID: user.ID,
CreatedAt: user.CreatedAt,
UpdatedAt: user.UpdatedAt,
Name: user.Name,
ApiKey: user.ApiKey,
}
}
func feedFromDatabaseFeed(feed database.Feed) Feed {
f := Feed{
ID: feed.ID,
CreatedAt: feed.CreatedAt,
UpdatedAt: feed.UpdatedAt,
Name: feed.Name,
UserID: feed.UserID,
Url: feed.Url,
}
var t *time.Time
if feed.LastFetchedAt.Valid {
t = &feed.LastFetchedAt.Time
} else {
t = nil
}
f.LastFetchedAt = t
return f
}
func feedfollowFromDatabaseFeedFollow(feedfollow database.FeedFollow) FeedFollow {
return FeedFollow{
ID: feedfollow.ID,
CreatedAt: feedfollow.CreatedAt,
UpdatedAt: feedfollow.UpdatedAt,
UserID: feedfollow.UserID,
FeedID: feedfollow.FeedID,
}
}
func postFromDatabasePost(post database.Post) Post {
p := Post{
ID: post.ID,
CreatedAt: post.CreatedAt,
UpdatedAt: post.UpdatedAt,
Title: post.Title,
Url: post.Url,
FeedID: post.FeedID,
}
var t *time.Time
var descrip *string
if post.Description.Valid {
descrip = &post.Description.String
}
if post.PublishedAt.Valid {
t = &post.PublishedAt.Time
}
p.Description = descrip
p.PublishedAt = t
return p
}