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,17 @@ 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
+ if len (extensionScripts ) > 0 {
135
+ b = addExtensionScripts (b , extensionScripts )
136
+ }
137
+ if len (extensionStylesheets ) > 0 {
138
+ b = addExtensionStylesheets (b , extensionStylesheets )
139
+ }
140
+ }
141
+
130
142
subcontextData [subcontext ] = b
131
143
subcontexts = append (subcontexts , subcontext )
132
144
}
@@ -153,6 +165,30 @@ func HTML5ModeHandler(contextRoot string, subcontextMap map[string]string, h htt
153
165
}), nil
154
166
}
155
167
168
+ // Add the extension scripts as the last scripts, just before the body closing tag.
169
+ func addExtensionScripts (content []byte , extensionScripts []string ) []byte {
170
+ var scriptTags bytes.Buffer
171
+ for _ , scriptURL := range extensionScripts {
172
+ scriptTags .WriteString (fmt .Sprintf ("<script src=\" %s\" ></script>\n " , html .EscapeString (scriptURL )))
173
+ }
174
+
175
+ replaceBefore := []byte ("</body>" )
176
+ scriptTags .Write (replaceBefore )
177
+ return bytes .Replace (content , replaceBefore , scriptTags .Bytes (), 1 )
178
+ }
179
+
180
+ // Add the extension stylesheets as the last stylesheets, just before the head closing tag.
181
+ func addExtensionStylesheets (content []byte , extensionStylesheets []string ) []byte {
182
+ var styleTags bytes.Buffer
183
+ for _ , stylesheetURL := range extensionStylesheets {
184
+ styleTags .WriteString (fmt .Sprintf ("<link rel=\" stylesheet\" href=\" %s\" >\n " , html .EscapeString (stylesheetURL )))
185
+ }
186
+
187
+ replaceBefore := []byte ("</head>" )
188
+ styleTags .Write (replaceBefore )
189
+ return bytes .Replace (content , replaceBefore , styleTags .Bytes (), 1 )
190
+ }
191
+
156
192
var versionTemplate = template .Must (template .New ("webConsoleVersion" ).Parse (`
157
193
window.OPENSHIFT_VERSION = {
158
194
openshift: "{{ .OpenShiftVersion | js}}",
0 commit comments