-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodels.go
76 lines (65 loc) · 1.58 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
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"`
}
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,
}
}