-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
129 lines (104 loc) · 2.42 KB
/
main.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
package main
import (
"bytes"
"fmt"
"github.com/joho/godotenv"
"go_news_app/news"
"html/template"
"log"
"math"
"net/http"
"net/url"
"os"
"strconv"
"time"
)
var tpl *template.Template
var newsapi *news.Client
func init(){
tpl = template.Must(template.ParseFiles("index.html"))
}
type Search struct {
Query string
NextPage int
TotalPages int
Results *news.Results
}
func (s *Search) IsLastPage() bool{
return s.NextPage >= s.TotalPages
}
func (s *Search) CurrentPage() int {
if s.NextPage == 1 {
return s.NextPage
}
return s.NextPage - 1
}
func (s *Search) PreviousPage() int {
return s.CurrentPage() - 1
}
func Index(w http.ResponseWriter, req *http.Request){
buf := &bytes.Buffer{}
err := tpl.Execute(buf, nil)
if err != nil{
http.Error(w, err.Error(), http.StatusInternalServerError)
}
buf.WriteTo(w)
}
func SearchHandler(newsapi *news.Client) http.HandlerFunc {
return func (w http.ResponseWriter, req * http.Request){
u, err := url.Parse(req.URL.String())
if err != nil {
log.Fatalln(err.Error(), http.StatusInternalServerError)
return
}
params := u.Query()
searchQuery := params.Get("q")
page := params.Get("page")
if page == "" {
page = "1"
}
results, err := newsapi.FetchEverything(searchQuery, page)
if err != nil{
http.Error(w, err.Error(), http.StatusInternalServerError)
}
nextPage, err := strconv.Atoi(page)
if err != nil{
http.Error(w, err.Error(), http.StatusInternalServerError)
}
search := &Search{
Query: searchQuery,
NextPage: nextPage,
TotalPages: int(math.Ceil(float64(results.TotalResults) / float64(newsapi.PageSize))),
Results: results,
}
if ok := !search.IsLastPage(); ok{
search.NextPage++
}
buf := &bytes.Buffer{}
err = tpl.Execute(buf, search)
if err != nil{
http.Error(w, err.Error(), http.StatusInternalServerError)
}
buf.WriteTo(w)
}
}
func main(){
err := godotenv.Load()
if err != nil{
fmt.Println("It is already in heroku config var")
}
port := os.Getenv("PORT")
fs := http.FileServer(http.Dir("./assets/"))
apiKey := os.Getenv("NEWS_API_KEY")
if apiKey == ""{
fmt.Println("It is already in heroku config var")
}
myClient := &http.Client{
Timeout: 10 * time.Second,
}
newsapi= news.NewClient(myClient, apiKey, 20)
http.Handle("/assets/", http.StripPrefix("/assets", fs))
http.HandleFunc("/", Index)
http.HandleFunc("/search", SearchHandler(newsapi))
panic(http.ListenAndServe(":"+port, nil))
}