-
Notifications
You must be signed in to change notification settings - Fork 0
/
models.go
99 lines (87 loc) · 2.36 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
package main
import (
"database/sql"
"time"
"github.com/google/uuid"
"github.com/nicwilliams1/rss-aggregator/internals/database"
)
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"`
}
func databaseUserToUser(user database.User) User {
return User{
ID: user.ID,
CreatedAt: user.CreatedAt,
UpdatedAt: user.UpdatedAt,
Name: user.Name,
ApiKey: user.ApiKey,
}
}
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"`
}
func databaseFeedToFeed(feed database.Feed) Feed {
return Feed{
ID: feed.ID,
CreatedAt: feed.CreatedAt,
UpdatedAt: feed.UpdatedAt,
Name: feed.Name,
Url: feed.Url,
UserId: feed.UserId,
LastFetchedAt: nullTimeToTimePtr(feed.LastFetchedAt),
}
}
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"`
}
func databaseFeedFollowToFeedFollow(feedFollow database.FeedFollow) FeedFollow {
return FeedFollow{
ID: feedFollow.ID,
CreatedAt: feedFollow.CreatedAt,
UpdatedAt: feedFollow.UpdatedAt,
UserId: feedFollow.UserId,
FeedId: feedFollow.FeedId,
}
}
type Post struct {
ID uuid.UUID `json:"id"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
Title string `json:"title"`
Description string `json:"description"`
Url string `json:"url"`
PublishedAt time.Time `json:"published_at"`
FeedId uuid.UUID `json:"feed_id"`
}
func databasePostToPost(post database.Post) Post {
return Post{
ID: post.ID,
CreatedAt: post.CreatedAt,
UpdatedAt: post.UpdatedAt,
Title: post.Title,
Description: post.Description,
Url: post.Url,
PublishedAt: post.PublishedAt,
FeedId: post.FeedId,
}
}
func nullTimeToTimePtr(t sql.NullTime) *time.Time {
if t.Valid {
return &t.Time
}
return nil
}