Skip to content

Commit 2a7bc4c

Browse files
yashtewariorestisfl
authored andcommitted
[Security Policies] Support DataYaml updates for the bundle
elastic/csp-security-policies#89 ---NOTE--- This is an imported commit, it was initially committed to the csp-security-policies repo which was then merged into cloudbeat. See: #1405
1 parent 1259209 commit 2a7bc4c

File tree

3 files changed

+31
-22
lines changed

3 files changed

+31
-22
lines changed

bundle/server.go

+26-17
Original file line numberDiff line numberDiff line change
@@ -7,26 +7,14 @@ import (
77
"path/filepath"
88
)
99

10-
const BundlesFolder = "tmpBundles"
11-
const BundlePathPrefix = "/bundles/"
12-
13-
type Server struct {
14-
mux *http.ServeMux
15-
}
16-
17-
func NewServer() *Server {
18-
mux := http.NewServeMux()
19-
staticFileServer := http.FileServer(http.Dir(BundlesFolder))
20-
mux.Handle(BundlePathPrefix, http.StripPrefix(BundlePathPrefix, staticFileServer))
21-
22-
return &Server{
23-
mux: mux,
24-
}
25-
}
10+
const (
11+
BundlesFolder = "tmpBundles"
12+
BundlePathPrefix = "/bundles/"
13+
)
2614

2715
// HostBundle writes the given bundle to the disk in order to serve it later
2816
// Consequent calls to HostBundle with the same name will override the file
29-
func (s *Server) HostBundle(name string, files map[string]string) error {
17+
func HostBundle(name string, files map[string]string) error {
3018
if _, err := os.Stat(BundlesFolder); os.IsNotExist(err) {
3119
err := os.Mkdir(BundlesFolder, os.ModePerm)
3220
if err != nil {
@@ -51,6 +39,27 @@ func (s *Server) HostBundle(name string, files map[string]string) error {
5139
return nil
5240
}
5341

42+
func HostBundleWithDataYaml(name string, files map[string]string, dataYaml string) error {
43+
files["data.yaml"] = dataYaml
44+
45+
err := HostBundle(name, files)
46+
return err
47+
}
48+
49+
type Server struct {
50+
mux *http.ServeMux
51+
}
52+
53+
func NewServer() *Server {
54+
mux := http.NewServeMux()
55+
staticFileServer := http.FileServer(http.Dir(BundlesFolder))
56+
mux.Handle(BundlePathPrefix, http.StripPrefix(BundlePathPrefix, staticFileServer))
57+
58+
return &Server{
59+
mux: mux,
60+
}
61+
}
62+
5463
func (s *Server) ServeHTTP(w http.ResponseWriter, r *http.Request) {
5564
s.mux.ServeHTTP(w, r)
5665
}

bundle/server_test.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@ func TestServer(t *testing.T) {
1313
assert := assert.New(t)
1414

1515
handler := NewServer()
16-
err := handler.HostBundle("empty", map[string]string{})
16+
err := HostBundle("empty", map[string]string{})
1717
assert.NoError(err)
1818

19-
err = handler.HostBundle("otherBundle", map[string]string{"a.txt": "some text"})
19+
err = HostBundle("otherBundle", map[string]string{"a.txt": "some text"})
2020
assert.NoError(err)
2121

22-
err = handler.HostBundle("overridenBundle", map[string]string{})
22+
err = HostBundle("overridenBundle", map[string]string{})
2323
assert.NoError(err)
2424

25-
err = handler.HostBundle("overridenBundle", map[string]string{})
25+
err = HostBundle("overridenBundle", map[string]string{})
2626
assert.NoError(err)
2727

2828
server := httptest.NewServer(handler)

server/host.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ func HostCISKubernetes(path string) (http.Handler, error) {
1313
}
1414

1515
server := bundle.NewServer()
16-
err = server.HostBundle(path, policies)
16+
err = bundle.HostBundle(path, policies)
1717
if err != nil {
1818
return nil, err
1919
}

0 commit comments

Comments
 (0)