-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathretrievePost.go
223 lines (188 loc) · 6.25 KB
/
retrievePost.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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
package main
import (
"database/sql"
"encoding/json"
"fmt"
"html/template"
"log"
"net/http"
"path"
"strconv"
)
// Serves the page containing all the posts through the response writer
func handlerToRetrieveAllPostsPage(w http.ResponseWriter, r *http.Request) {
log.Println(r.URL.RequestURI(), r.Method)
// Creating HTML template
template, err := template.ParseFiles("dist/templates/allPosts.tmpl", navBarTemplatePath, footerTemplatePath)
if err != nil {
http.Error(w, http.StatusText(http.StatusInternalServerError)+": Error in template parsing", http.StatusInternalServerError)
log.Println("error: could not generate html template")
return
}
// Add struct values to the template
template.Execute(w, nil)
}
// Extract view ID for a post using Post ID
func getViewIDFromPostID(w http.ResponseWriter, postID int64) (string, error) {
var viewID string
query := `SELECT link_id
FROM Links
WHERE post_id = $1 and access = "View"`
err := db.Get(&viewID, query, postID)
if err == sql.ErrNoRows {
http.Error(w, http.StatusText(http.StatusNotFound), http.StatusNotFound)
fmt.Println("no Entries found")
return "", err
} else if err != nil {
http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
fmt.Println("unsuccessful data lookup")
return "", err
}
return viewID, nil
}
// Serve HTML template of the View Only page to the client
func retrieveReadonlyPostPage(w http.ResponseWriter, entry post) {
// Creating HTML template
template, err := template.ParseFiles("dist/templates/publicPortal.tmpl", navBarTemplatePath, footerTemplatePath)
if err != nil {
http.Error(w, http.StatusText(http.StatusInternalServerError)+": Error in template parsing", http.StatusInternalServerError)
log.Println("error: could not generate html template")
return
}
// Add struct values to the template
template.Execute(w, entry)
}
// Serve HTML template of the Admin Portal to the client
func retrieveAdminPostPage(w http.ResponseWriter, r *http.Request, entry post) {
// Creating HTML template
template, err := template.ParseFiles("dist/templates/adminPortal.tmpl", navBarTemplatePath, footerTemplatePath)
if err != nil {
http.Error(w, http.StatusText(http.StatusInternalServerError)+": Error in template parsing", http.StatusInternalServerError)
log.Println("error: could not generate html template")
return
}
// Retrieving the view id of the post
viewID, err := getViewIDFromPostID(w, entry.PostID)
if err != nil {
return
}
links := postLinks{
EditLink: path.Join(r.Host, "posts", entry.LinkID),
ViewLink: path.Join(r.Host, "posts", viewID),
}
// Combine the post and links structs
combinedStruct := struct {
post
postLinks
}{entry, links}
// Add struct values to the template
template.Execute(w, combinedStruct)
}
// Handler for serving HTML template of the post to the client
func handleIndividualPageServing(w http.ResponseWriter, r *http.Request) {
log.Println(r.URL.RequestURI(), r.Method)
entry, err := getEntryForRequestedLink(w, r)
if err != nil {
return
}
if entry.Access == "View" {
log.Println("View Access")
retrieveReadonlyPostPage(w, entry)
} else { // Edit Access
log.Println("Edit Access")
retrieveAdminPostPage(w, r, entry)
}
}
// Retrieve a individual post based on the links
func handleRetrievePost(w http.ResponseWriter, r *http.Request) {
log.Println(r.URL.RequestURI(), r.Method)
entry, err := getEntryForRequestedLink(w, r)
if err != nil {
return
}
w.Header().Set("Content-Type", "application/json")
if entry.Access == "View" { // View Access
// To avoid JSON encoding
entry.Scope = ""
entry.LinkID = ""
// Encode and Send Response To Client
err = json.NewEncoder(w).Encode(entry)
if err != nil {
http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
log.Println("error: JSON encoding unsuccessful")
return
}
} else { // Edit Access
viewID, err := getViewIDFromPostID(w, entry.PostID)
if err != nil {
return
}
links := postLinks{
EditLink: entry.LinkID,
ViewLink: viewID,
}
entry.LinkID = ""
// Combine the post and links structs for JSON encoding
response := struct {
post
postLinks
}{entry, links}
// Encode and Send Response To Client
err = json.NewEncoder(w).Encode(response)
if err != nil {
http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
log.Print("error: JSON encoding unsuccessful")
}
}
}
// Retrieve the value of the query parameter from the query string and return the value
// and the associated error (if any)
func getQueryValue(w http.ResponseWriter, r *http.Request, queryParameter string) (int, error) {
result, err := strconv.Atoi(r.URL.Query().Get(queryParameter))
if err != nil {
http.Error(w, http.StatusText(http.StatusBadRequest), http.StatusBadRequest)
log.Println("error: invalid", queryParameter)
return 0, err
}
return result, nil
}
// Retrieve all public posts that are not reported
func handleRetrievePosts(w http.ResponseWriter, r *http.Request) {
log.Println(r.URL.RequestURI(), r.Method)
// Retrieve the offset value from the query string
offset, err := getQueryValue(w, r, "offset")
if err != nil {
return
}
// Retrieve the limit value from the query string
limit, err := getQueryValue(w, r, "limit")
if err != nil {
return
}
// Retrieve the public records from the database
entries := []post{}
query := `SELECT title, body, epoch, Links.link_id
FROM Posts p, Links
WHERE Links.post_id = p.post_id and scope = "Public" and access = "View" and
not exists
(SELECT post_id
FROM report
WHERE report.post_id = p.post_id)
ORDER BY epoch DESC
LIMIT $1 OFFSET $2`
err = db.Select(&entries, query, limit, offset)
if err != nil {
http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
log.Println("error: data retrieval unsuccessful")
return
}
w.Header().Set("Content-Type", "application/json")
// Encode and Send Response To Client
err = json.NewEncoder(w).Encode(entries)
if err != nil {
http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
log.Print("error: JSON encoding unsuccessful")
} else {
log.Println("Data Retrieval and Encoding successful")
}
}