This repository has been archived by the owner on Jul 19, 2024. It is now read-only.
forked from pottava/aws-s3-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
65 lines (56 loc) · 1.62 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
package main
import (
"fmt"
"log"
"net"
"net/http"
"os"
"github.com/go-openapi/swag"
"github.com/pottava/aws-s3-proxy/internal/config"
"github.com/pottava/aws-s3-proxy/internal/controllers"
common "github.com/pottava/aws-s3-proxy/internal/http"
"github.com/pottava/aws-s3-proxy/internal/service"
)
var (
ver = "dev"
commit string
date string
)
func main() {
validateAwsConfigurations()
http.Handle("/", common.WrapHandler(controllers.AwsS3))
http.HandleFunc("/--version", func(w http.ResponseWriter, r *http.Request) {
if len(commit) > 0 && len(date) > 0 {
fmt.Fprintf(w, "%s-%s (built at %s)\n", ver, commit, date)
return
}
fmt.Fprintln(w, ver)
})
// Listen & Serve
addr := net.JoinHostPort(config.Config.Host, config.Config.Port)
log.Printf("[service] listening on %s", addr)
if (len(config.Config.SslCert) > 0) && (len(config.Config.SslKey) > 0) {
log.Fatal(http.ListenAndServeTLS(
addr, config.Config.SslCert, config.Config.SslKey, nil,
))
} else {
log.Fatal(http.ListenAndServe(addr, nil))
}
}
func validateAwsConfigurations() {
if len(os.Getenv("AWS_ACCESS_KEY_ID")) == 0 {
log.Print("Not defined environment variable: AWS_ACCESS_KEY_ID")
}
if len(os.Getenv("AWS_SECRET_ACCESS_KEY")) == 0 {
log.Print("Not defined environment variable: AWS_SECRET_ACCESS_KEY")
}
if len(os.Getenv("AWS_S3_BUCKET")) == 0 {
log.Fatal("Missing required environment variable: AWS_S3_BUCKET")
}
if swag.IsZero(config.Config.AwsRegion) {
config.Config.AwsRegion = "us-east-1"
if region, err := service.GuessBucketRegion(config.Config.S3Bucket); err == nil {
config.Config.AwsRegion = region
}
}
}