Add Google Analytics snippet to multiple .html files recursively with a Groovy Script

Scenario: You have a static HTML website. With many .html files. You want to add the Google Analytics tracking snippet to every file. It is easy to create a Groovy script do it. Let me show you.

Create a build.gradle file which uses the Groovy Gradle plugin and the Gradle Application Plugin.

apply plugin: 'groovy'
apply plugin: 'application'

mainClassName = "demo.Main"

repositories {
    mavenCentral()
}

dependencies {
    compile 'org.codehaus.groovy:groovy-all:2.4.13'
}
$ mkdir -p src/main/groovy/demo
$ touch src/main/groovy/demo/Main.groovy

Create a file src/main/groovy/demo/Main.groovy

package demo
import static groovy.io.FileType.FILES

class Main {
    public static void main(def args) {
        final String path ='/Users/sdelamo/website'
        if ( !new File(path).exists() ) {
            println "${path} does not exist"
	    return
	}
        final String code = 'UA-XXXXX-2'
        final String codePreffix = 'UA-'
        final String analyticsSnippet = """<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=${code}"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', '${code}');
</script>""".toString()

        final String fileSuffix = '.html'
        addGoogleAnalyticsSnippet(path, fileSuffix, codePreffix, analyticsSnippet)
    }

    private
    static addGoogleAnalyticsSnippet(String path, String fileSuffix, String codePreffix, String analyticsSnippet) {
        new File(path).eachFileRecurse(FILES) {
            if (it.name.endsWith(fileSuffix)) {
                if (!(it.text.contains(codePreffix))) {
                    println "adding analytics snippet to ${it.name}"
                    String text = it.text
                    it.text = text.replaceAll('<head>', "<head>\n${analyticsSnippet}".toString())
                } else {
                    println "${it.name} already contains Google analytics snippet."
                }
            }
        }
    }

}

Add gradlew wrapper

$ gradle wrapper

Run your script; Gradle run task is provided by the Gradle Application plugin

$ ./gradlew run

Tags: #groovy
Jan 2018, 29.

 

My next events:
🗓 Apr 04 16:30 JDevSummitIL Getting Started with the Micronaut Framework