-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmockDB.go
119 lines (95 loc) · 3.3 KB
/
mockDB.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
package main
import (
"encoding/json"
"github.com/gorilla/mux"
"io"
"net/http"
"os"
)
type setupPackage struct {
FileName string `json:"fileName"`
Version string `json:"version"`
}
type allSetupPackages []setupPackage
var setupPackages = allSetupPackages{
{
FileName: "nodejs_12-14-0_ubuntu_1.zip",
Version: "1",
},
}
type supportedApplication struct {
Name string `json:"name"`
Version string `json:"version"`
OperatingSystem string `json:"operatingSystem"`
SetupPackageFileName string `json:"setupPackageFileName"`
}
type allSupportedApplications []supportedApplication
var supportedApplications = allSupportedApplications{
{
Name: "nodejs",
Version: "12.14.0",
OperatingSystem: "ubuntu",
SetupPackageFileName: "nodejs_12-14-0_ubuntu_v1.zip",
},
}
func findSupportedApplication(packageName, packageVersion, packageOperatingSystem string) (supportedApplication, bool, string) {
for _, singleSupportedApplication := range supportedApplications {
if singleSupportedApplication.Name == packageName &&
singleSupportedApplication.Version == packageVersion &&
singleSupportedApplication.OperatingSystem == packageOperatingSystem {
return singleSupportedApplication, true, "found application"
}
}
return supportedApplication{}, false, "no application found"
}
func findSetupPackage(packageFileName string) (setupPackage, bool, string) {
for _, singleSetupPackage := range setupPackages {
if singleSetupPackage.FileName == packageFileName {
return singleSetupPackage, true, "found setup package"
}
}
return setupPackage{}, false, "no setup package found"
}
func getSetupPackageFile(fileName string) (*os.File, string, string, bool, string) {
fileExists, _ := checkFileExistsLocally(ENV.SetupPackageBasePath, fileName)
if !fileExists {
ok := getFileFromS3(ENV.SetupPackageBasePath, fileName)
if !ok {
panic("unable to get file from S3")
}
}
OpenFile, err := os.Open(ENV.SetupPackageBasePath + "/" + fileName)
if err != nil {
return nil, "", "", false, "setup package file does not exist"
}
FileContentType, FileSize := getFileInfo(OpenFile)
return OpenFile, FileContentType, FileSize, true, "found setup package file"
}
func getSetupPackage(w http.ResponseWriter, r *http.Request) {
packageName := mux.Vars(r)["name"]
packageVersion := mux.Vars(r)["version"]
packageOperatingSystem := mux.Vars(r)["operatingSystem"]
foundSupportedApplication, ok, msg := findSupportedApplication(packageName, packageVersion, packageOperatingSystem)
if !ok {
_ = json.NewEncoder(w).Encode(notFoundHttpResponse{msg})
return
}
foundSetupPackage, ok, msg := findSetupPackage(foundSupportedApplication.SetupPackageFileName)
if !ok {
_ = json.NewEncoder(w).Encode(notFoundHttpResponse{msg})
return
}
OpenFile, FileContentType, FileSize, ok, msg := getSetupPackageFile(foundSetupPackage.FileName)
if !ok {
_ = json.NewEncoder(w).Encode(notFoundHttpResponse{msg})
return
}
// Send the headers
w.Header().Set("Content-Disposition", "attachment; filename="+foundSetupPackage.FileName)
w.Header().Set("Content-Type", FileContentType)
w.Header().Set("Content-Length", FileSize)
// Send the file
// 512 bytes read from the file already, so reset the offset back to 0
_, _ = OpenFile.Seek(0, 0)
_, _ = io.Copy(w, OpenFile)
}