blob: 77f92c08b8afbf2cf6056621cd44afb3cf92d794 [file]
// Copyright 2016 The LUCI Authors. All rights reserved.
// Use of this source code is governed under the Apache License, Version 2.0
// that can be found in the LICENSE file.
package analytics
// analytics.go is contains public functions for getting
// the Google Analytics ID and javascript snippets out from the admin settings.
import (
"fmt"
"html/template"
"golang.org/x/net/context"
"github.com/luci/luci-go/common/logging"
)
// ID returns the Google Analytics ID if it's set, and "" otherwise.
func ID(c context.Context) string {
return fetchCachedSettings(c).AnalyticsID
}
// Snippet returns the html snippet for Google Analytics, including the
// <script> tag and ID, if ID is set.
func Snippet(c context.Context) template.HTML {
id := ID(c)
if id == "" {
return ""
}
if !rAllowed.MatchString(id) {
logging.Errorf(c, "Analytics ID %s does not match UA-\\d+-\\d+", id)
return ""
}
return template.HTML(fmt.Sprintf(`
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', '%s', 'auto');
ga('send', 'pageview');
</script>
`, id))
}