s3manager-web/minio.go

41 lines
819 B
Go
Raw Normal View History

2017-04-03 14:08:01 +02:00
package main
2017-02-22 11:18:20 +01:00
import (
2017-03-17 23:51:17 +01:00
"log"
2017-02-22 11:18:20 +01:00
"os"
2017-03-17 23:57:58 +01:00
"github.com/minio/minio-go"
2017-02-22 11:18:20 +01:00
)
2017-04-03 23:52:41 +02:00
// newMinioClient creates a new Minio client
func newMinioClient() *minio.Client {
2017-02-22 11:18:20 +01:00
var err error
2017-03-09 21:20:40 +01:00
var client *minio.Client
2017-02-22 11:18:20 +01:00
s3Endpoint := os.Getenv("S3_ENDPOINT")
2017-04-03 23:52:41 +02:00
if s3Endpoint == "" {
2017-02-22 11:18:20 +01:00
s3Endpoint = "s3.amazonaws.com"
}
s3AccessKeyID := os.Getenv("S3_ACCESS_KEY_ID")
2017-04-03 23:52:41 +02:00
if s3AccessKeyID == "" {
2017-03-17 23:51:17 +01:00
log.Fatal("Please set S3_ACCESS_KEY_ID")
2017-02-22 11:18:20 +01:00
}
s3SecretAccessKey := os.Getenv("S3_SECRET_ACCESS_KEY")
2017-04-03 23:52:41 +02:00
if s3SecretAccessKey == "" {
2017-03-17 23:51:17 +01:00
log.Fatal("Please set S3_SECRET_ACCESS_KEY")
2017-02-22 11:18:20 +01:00
}
if os.Getenv("V2_SIGNING") == "true" {
2017-03-09 21:20:40 +01:00
client, err = minio.NewV2(s3Endpoint, s3AccessKeyID, s3SecretAccessKey, true)
2017-02-22 11:18:20 +01:00
} else {
2017-03-09 21:20:40 +01:00
client, err = minio.New(s3Endpoint, s3AccessKeyID, s3SecretAccessKey, true)
2017-02-22 11:18:20 +01:00
}
if err != nil {
2017-03-17 23:51:17 +01:00
log.Fatal(err)
2017-02-22 11:18:20 +01:00
}
2017-03-09 21:20:40 +01:00
return client
2017-02-22 11:18:20 +01:00
}