5
5
"compress/gzip"
6
6
"encoding/hex"
7
7
"fmt"
8
+ "html"
8
9
"io"
9
10
"net/http"
10
11
"path"
@@ -112,7 +113,7 @@ func (s LongestToShortest) Less(i, j int) bool {
112
113
//
113
114
// subcontextMap is a map of keys (subcontexts, no leading or trailing slashes) to the asset path (no
114
115
// leading slash) to serve for that subcontext if a resource that does not exist is requested
115
- func HTML5ModeHandler (contextRoot string , subcontextMap map [string ]string , h http.Handler , getAsset AssetFunc ) (http.Handler , error ) {
116
+ func HTML5ModeHandler (contextRoot string , subcontextMap map [string ]string , extensionScripts [] string , extensionStylesheets [] string , h http.Handler , getAsset AssetFunc ) (http.Handler , error ) {
116
117
subcontextData := map [string ][]byte {}
117
118
subcontexts := []string {}
118
119
@@ -127,6 +128,13 @@ func HTML5ModeHandler(contextRoot string, subcontextMap map[string]string, h htt
127
128
base += "/"
128
129
}
129
130
b = bytes .Replace (b , []byte (`<base href="/">` ), []byte (fmt .Sprintf (`<base href="%s">` , base )), 1 )
131
+
132
+ // Inject extension scripts and stylesheets, but only for the console itself, which has an empty subcontext
133
+ if len (subcontext ) == 0 {
134
+ b = addExtensionScripts (b , extensionScripts )
135
+ b = addExtensionStylesheets (b , extensionStylesheets )
136
+ }
137
+
130
138
subcontextData [subcontext ] = b
131
139
subcontexts = append (subcontexts , subcontext )
132
140
}
@@ -153,6 +161,30 @@ func HTML5ModeHandler(contextRoot string, subcontextMap map[string]string, h htt
153
161
}), nil
154
162
}
155
163
164
+ // Add the extension scripts as the last scripts, just before the body closing tag.
165
+ func addExtensionScripts (content []byte , extensionScripts []string ) []byte {
166
+ var scriptTags bytes.Buffer
167
+ for _ , scriptURL := range extensionScripts {
168
+ scriptTags .WriteString (fmt .Sprintf ("<script src=\" %s\" ></script>\n " , html .EscapeString (scriptURL )))
169
+ }
170
+
171
+ replaceBefore := []byte ("</body>" )
172
+ scriptTags .Write (replaceBefore )
173
+ return bytes .Replace (content , replaceBefore , scriptTags .Bytes (), 1 )
174
+ }
175
+
176
+ // Add the extension stylesheets as the last stylesheets, just before the head closing tag.
177
+ func addExtensionStylesheets (content []byte , extensionStylesheets []string ) []byte {
178
+ var styleTags bytes.Buffer
179
+ for _ , stylesheetURL := range extensionStylesheets {
180
+ styleTags .WriteString (fmt .Sprintf ("<link rel=\" stylesheet\" href=\" %s\" >\n " , html .EscapeString (stylesheetURL )))
181
+ }
182
+
183
+ replaceBefore := []byte ("</head>" )
184
+ styleTags .Write (replaceBefore )
185
+ return bytes .Replace (content , replaceBefore , styleTags .Bytes (), 1 )
186
+ }
187
+
156
188
var versionTemplate = template .Must (template .New ("webConsoleVersion" ).Parse (`
157
189
window.OPENSHIFT_VERSION = {
158
190
openshift: "{{ .OpenShiftVersion | js}}",
0 commit comments