2014-05-16 17:49:27 -04:00
|
|
|
package transform
|
|
|
|
|
2014-05-28 19:01:24 -04:00
|
|
|
import (
|
|
|
|
"bytes"
|
2015-02-18 15:51:32 -05:00
|
|
|
jww "github.com/spf13/jwalterweatherman"
|
2014-05-28 19:01:24 -04:00
|
|
|
"github.com/spf13/viper"
|
|
|
|
)
|
2014-05-16 17:49:27 -04:00
|
|
|
|
|
|
|
func LiveReloadInject(content []byte) []byte {
|
2015-02-18 15:51:32 -05:00
|
|
|
defer func() {
|
|
|
|
if r := recover(); r != nil {
|
|
|
|
jww.ERROR.Println("Recovered in LiveReloadInject", r)
|
|
|
|
}
|
|
|
|
}()
|
2014-05-16 17:49:27 -04:00
|
|
|
match := []byte("</body>")
|
2014-05-28 19:01:24 -04:00
|
|
|
port := viper.GetString("port")
|
2014-05-16 17:49:27 -04:00
|
|
|
replace := []byte(`<script>document.write('<script src="http://'
|
|
|
|
+ (location.host || 'localhost').split(':')[0]
|
2014-05-28 19:01:24 -04:00
|
|
|
+ ':` + port + `/livereload.js?mindelay=10"></'
|
2014-05-16 17:49:27 -04:00
|
|
|
+ 'script>')</script></body>`)
|
|
|
|
newcontent := bytes.Replace(content, match, replace, -1)
|
|
|
|
|
|
|
|
if len(newcontent) == len(content) {
|
|
|
|
match := []byte("</BODY>")
|
|
|
|
newcontent = bytes.Replace(content, match, replace, -1)
|
|
|
|
}
|
|
|
|
|
|
|
|
return newcontent
|
|
|
|
}
|