-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmain.go
More file actions
72 lines (57 loc) · 1.39 KB
/
main.go
File metadata and controls
72 lines (57 loc) · 1.39 KB
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
package main
import (
"fmt"
"io"
"log"
"net/http"
"os"
"github.com/logrusorgru/aurora/v4"
)
type appConfig struct {
Port string
ImagePath string
}
var config appConfig
func init() {
config.Port = os.Getenv("PORT")
if config.Port == "" {
config.Port = "3000"
}
config.ImagePath = os.Getenv("IMAGE_PATH")
if config.ImagePath == "" {
config.ImagePath = "tmp-image"
}
}
func uploadFile(w http.ResponseWriter, r *http.Request) {
file, _, err := r.FormFile("image")
if err != nil {
log.Fatalf("Error Retrieving the File %v", err)
}
defer file.Close()
fileBytes, err := io.ReadAll(file)
if err != nil {
log.Fatalf("Error reading file %v", err)
}
os.WriteFile(config.ImagePath, fileBytes, os.FileMode(0600))
log.Println(aurora.Cyan("Successfully Uploaded File"))
fmt.Fprintf(w, "Successfully Uploaded File\n")
}
func image(w http.ResponseWriter, r *http.Request) {
http.ServeFile(w, r, config.ImagePath)
}
func livenessProbe(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "ok")
}
func readinessProbe(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "ok")
}
func main() {
http.HandleFunc("/upload", uploadFile)
http.HandleFunc("/image", image)
http.HandleFunc("/healthz/liveness", livenessProbe)
http.HandleFunc("/healthz/readiness", readinessProbe)
err := http.ListenAndServe(fmt.Sprintf(":%s", config.Port), nil)
if err != nil {
log.Fatal(err)
}
}