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