-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
248 lines (196 loc) · 5.3 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
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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
package main
import (
"context"
"encoding/csv"
"fmt"
"io"
"net/http"
"os"
"os/signal"
"strconv"
"syscall"
"time"
"database/sql"
_ "github.com/lib/pq"
)
const (
// DefaultPort default port for http server
DefaultPort = 9113
)
var db *sql.DB
// This function will make a connection to the database only once.
func init() {
var err error
connStr := "postgres://codebaseuser:12345678@localhost:5432/mydb?sslmode=disable"
db, err = sql.Open("postgres", connStr)
if err != nil {
panic(err)
}
if err = db.Ping(); err != nil {
panic(err)
}
// this will be printed in the terminal, confirming the connection to the database
fmt.Println("The database is connected")
}
func waitNotify(kill chan os.Signal, done chan bool, db *sql.DB) {
select {
case <-kill:
fmt.Println("signal kill....")
err := db.Close()
if err != nil {
fmt.Println(err)
}
done <- true
}
}
// https://rafallorenz.com/go/go-http-stream-download/
func main() {
// f, err := os.Create("users.csv")
// if err != nil {
// fmt.Println(err)
// os.Exit(1)
// }
// defer func() { f.Close() }()
// err = generateDummyCSV(f, 1)
// if err != nil {
// fmt.Println(err)
// os.Exit(1)
// }
http.HandleFunc("/", loggerMiddleware(indexHandler()))
http.HandleFunc("/download-csv", loggerMiddleware(downloadCSVHandler()))
kill := make(chan os.Signal, 1)
done := make(chan bool, 1)
// notify when user interrupt the process
signal.Notify(kill, syscall.SIGINT, syscall.SIGTERM)
go waitNotify(kill, done, db)
go func() {
fmt.Printf("webapp running on port :%d\n", DefaultPort)
err := http.ListenAndServe(fmt.Sprintf(":%d", DefaultPort), nil)
if err != nil {
fmt.Println(err)
os.Exit(1)
}
}()
<-done
}
func downloadCSVHandler() http.HandlerFunc {
return func(res http.ResponseWriter, req *http.Request) {
res.Header().Set("Content-Disposition", "attachment; filename=db_dump.csv")
res.Header().Set("Content-Type", "text/csv")
res.Header().Set("Last-Modified", time.Now().UTC().Format(http.TimeFormat))
ctx := req.Context()
done := make(chan error)
go func() {
err := generateCSVFromDB(ctx, res, db)
if err != nil {
done <- err
}
done <- nil
}()
err := <-done
if err != nil {
fmt.Println(err)
}
}
}
func downloadHandler() http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
resp, err := http.Get("https://4kwallpapers.com/images/wallpapers/the-super-mario-3840x5577-10880.jpg")
if err != nil {
http.Error(w, "could not write response", http.StatusInternalServerError)
return
}
defer resp.Body.Close()
w.Header().Set("Content-Disposition", fmt.Sprintf("attachment; filename=%s", "file.jpeg"))
w.Header().Set("Content-Type", "image/jpeg")
w.Header().Set("Last-Modified", time.Now().UTC().Format(http.TimeFormat))
_, err = io.Copy(w, resp.Body)
if err != nil {
http.Error(w, "could not read body", http.StatusInternalServerError)
return
}
}
}
func indexHandler() http.HandlerFunc {
return func(res http.ResponseWriter, req *http.Request) {
if err := db.Ping(); err != nil {
fmt.Println(err)
}
jsonResponse(res, 200, []byte(`{"success": true, "message": "server up and running"}`))
}
}
// HTTP utility
func jsonResponse(res http.ResponseWriter, httpCode int, payload []byte) {
res.Header().Add("Content-Type", "application/json")
res.WriteHeader(httpCode)
res.Write(payload)
}
func loggerMiddleware(next http.Handler) http.HandlerFunc {
return func(res http.ResponseWriter, req *http.Request) {
start := time.Now()
fmt.Printf("path: %s | method: %s | remote_address: %s | user_agent: %s | duration: %v\n",
req.URL.EscapedPath(), req.Method, req.RemoteAddr, req.UserAgent(), time.Since(start))
next.ServeHTTP(res, req)
}
}
func generateDummyCSV(ctx context.Context, out io.Writer, delaySeconds int) error {
w := csv.NewWriter(out)
for i := 0; i < 50000000; i++ {
record := []string{"5", "alox", "red"}
select {
// handle cancel download from user
case <-ctx.Done():
fmt.Println("request cancelled")
return ctx.Err()
// add default case, to avoid block from this select block
default:
}
// time.Sleep(time.Duration(delaySeconds) * time.Second)
if err := w.Write(record); err != nil {
return err
}
// Flush writes any buffered data to the underlying io.Writer
w.Flush()
if err := w.Error(); err != nil {
fmt.Println(err)
}
}
return nil
}
func generateCSVFromDB(ctx context.Context, out io.Writer, db *sql.DB) error {
w := csv.NewWriter(out)
rows, err := db.Query(`SELECT * FROM public."accounts" LIMIT 2000000`)
if err != nil {
return err
}
defer func() { rows.Close() }()
for rows.Next() {
var id int
var name string
var email string
var createdAt time.Time
err = rows.Scan(&id, &name, &email, &createdAt)
if err != nil {
return err
}
record := []string{strconv.Itoa(id), name, email, createdAt.String()}
select {
// handle cancel download from user
case <-ctx.Done():
fmt.Println("request cancelled")
return ctx.Err()
// add default case, to avoid block from this select block
default:
}
// time.Sleep(time.Duration(delaySeconds) * time.Second)
if err := w.Write(record); err != nil {
return err
}
// Flush writes any buffered data to the underlying io.Writer
w.Flush()
if err := w.Error(); err != nil {
return err
}
}
return nil
}