-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodels.go
164 lines (147 loc) · 4.04 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
package main
import (
"database/sql"
"github.com/google/uuid"
"github.com/manzil-infinity180/golang-webrss/internal/database"
"time"
)
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"`
}
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,
}
}
func databaseFeedsToFeeds(feeds []database.Feed) []Feed {
result := make([]Feed, len(feeds))
for i, feed := range feeds {
result[i] = databaseFeedToFeed(feed)
}
return result
}
type FeedFollows 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) FeedFollows {
return FeedFollows{
ID: feedFollow.ID,
CreatedAt: feedFollow.CreatedAt,
UpdatedAt: feedFollow.UpdatedAt,
UserID: feedFollow.UserID,
FeedID: feedFollow.FeedID,
}
}
func databaseFeedsFollowsToFeedsFollows(feedsFollows []database.FeedFollow) []FeedFollows {
result := make([]FeedFollows, len(feedsFollows))
for i, feedsFollow := range feedsFollows {
result[i] = databaseFeedFollowToFeedFollow(feedsFollow)
}
return result
}
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 databasePostToPost(post database.Post) Post {
return Post{
ID: post.ID,
CreatedAt: post.CreatedAt,
UpdatedAt: post.UpdatedAt,
Title: post.Title,
Url: post.Url,
Description: nullStringToStringPtr(post.Description),
PublishedAt: nullTimeToTimePtr(post.PublishedAt),
FeedID: post.FeedID,
}
}
func nullStringToStringPtr(s sql.NullString) *string {
if s.Valid {
return &s.String
}
return nil
}
func nullTimeToTimePtr(t sql.NullTime) *time.Time {
if t.Valid {
return &t.Time
}
return nil
}
func databasePostsToPosts(posts []database.Post) []Post {
result := make([]Post, len(posts))
for i, post := range posts {
result[i] = databasePostToPost(post)
}
return result
}
type Job struct {
ID uuid.UUID `json:"id"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
Title string `json:"title"`
Company string `json:"company"`
Url string `json:"url"`
Image string `json:"image"`
Description *string `json:"description"`
Tag *string `json:"tag"`
Location string `json:"location"`
PublishedAt *time.Time `json:"published_at"`
}
func databaseJobToJob(post database.Job) Job {
return Job{
ID: post.ID,
CreatedAt: post.CreatedAt,
UpdatedAt: post.UpdatedAt,
Title: post.Title,
Company: post.Company,
Image: post.Image,
Location: post.Location,
Url: post.Url,
Description: nullStringToStringPtr(post.Description),
Tag: nullStringToStringPtr(post.Tag),
PublishedAt: nullTimeToTimePtr(post.PublishedAt),
}
}
func databaseJobsToJobs(jobs []database.Job) []Job {
result := make([]Job, len(jobs))
for i, job := range jobs {
result[i] = databaseJobToJob(job)
}
return result
}