2014-05-16 17:49:27 -04:00
|
|
|
package transform
|
|
|
|
|
2014-05-28 19:01:24 -04:00
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
|
|
|
|
"github.com/spf13/viper"
|
|
|
|
)
|
2014-05-16 17:49:27 -04:00
|
|
|
|
|
|
|
func LiveReloadInject(content []byte) []byte {
|
|
|
|
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
|
|
|
|
}
|