forked from fsouza/fake-gcs-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
106 lines (95 loc) · 2.95 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
// Copyright 2019 Francisco Souza. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package main
import (
"flag"
"fmt"
"io/ioutil"
"log"
"mime"
"os"
"os/signal"
"path/filepath"
"syscall"
"github.com/fsouza/fake-gcs-server/fakestorage"
"github.com/fsouza/fake-gcs-server/internal/checksum"
"github.com/fsouza/fake-gcs-server/internal/config"
"github.com/sirupsen/logrus"
)
func main() {
cfg, err := config.Load(os.Args[1:])
if err == flag.ErrHelp {
return
}
if err != nil {
log.Fatal(err)
}
logger := logrus.New()
var emptyBuckets []string
opts := cfg.ToFakeGcsOptions()
if cfg.Seed != "" {
opts.InitialObjects, emptyBuckets = generateObjectsFromFiles(logger, cfg.Seed)
}
server, err := fakestorage.NewServerWithOptions(opts)
if err != nil {
logger.WithError(err).Fatal("couldn't start the server")
}
logger.Infof("server started at %s", server.URL())
for _, bucketName := range emptyBuckets {
server.CreateBucketWithOpts(fakestorage.CreateBucketOpts{Name: bucketName})
}
ch := make(chan os.Signal, 1)
signal.Notify(ch, os.Interrupt, syscall.SIGTERM)
<-ch
}
func generateObjectsFromFiles(logger *logrus.Logger, folder string) ([]fakestorage.Object, []string) {
var objects []fakestorage.Object
var emptyBuckets []string
if files, err := ioutil.ReadDir(folder); err == nil {
for _, f := range files {
if !f.IsDir() {
continue
}
bucketName := f.Name()
localBucketPath := filepath.Join(folder, bucketName)
bucketObjects, err := objectsFromBucket(localBucketPath, bucketName)
if err != nil {
logger.WithError(err).Warnf("couldn't read files from %q, skipping (make sure it's a directory)", localBucketPath)
continue
}
if len(bucketObjects) < 1 {
emptyBuckets = append(emptyBuckets, bucketName)
}
objects = append(objects, bucketObjects...)
}
}
if len(objects) == 0 && len(emptyBuckets) == 0 {
logger.Infof("couldn't load any objects or buckets from %q, starting empty", folder)
}
return objects, emptyBuckets
}
func objectsFromBucket(localBucketPath, bucketName string) ([]fakestorage.Object, error) {
var objects []fakestorage.Object
err := filepath.Walk(localBucketPath, func(path string, info os.FileInfo, _ error) error {
if info.Mode().IsRegular() {
// Rel() should never return error since path always descend from localBucketPath
relPath, _ := filepath.Rel(localBucketPath, path)
objectKey := filepath.ToSlash(relPath)
fileContent, err := ioutil.ReadFile(path)
if err != nil {
return fmt.Errorf("could not read file %q: %w", path, err)
}
objects = append(objects, fakestorage.Object{
BucketName: bucketName,
Name: objectKey,
ContentType: mime.TypeByExtension(filepath.Ext(path)),
Content: fileContent,
Crc32c: checksum.EncodedCrc32cChecksum(fileContent),
Md5Hash: checksum.EncodedMd5Hash(fileContent),
})
}
return nil
})
return objects, err
}