Coder Social home page Coder Social logo

matomo-report-api's Introduction

Go Matomo Reporting API

Go

Simple implementation of Matomo Reporting API

There are still a lot to work on...

Matomo Reporting API Documentation

Install

go get github.com/jinjie/matomo-report-api

Usage

package main

import (
	"fmt"
	"time"

	"github.com/jinjie/matomo-report-api/report"
)

func main() {
	c := report.NewClient(
		"https://demo.matomo.cloud/",
		"anonymous",
		1,
	)

	// Get the number of visits yesterday
	req := report.NewRequest().
		SetPeriod(report.PERIOD_DAY).
		SetDate("yesterday")

	yesterday := &report.ActionsGetMetric{}
	err := c.Get(req, yesterday)
	if err != nil {
		panic(err)
	}

	// Print the result
	fmt.Println("Number of visits yesterday:")
	fmt.Printf("%#v\n", yesterday)

	// Get the number of visits for the last 30 days
	req = report.NewRequest().
		SetPeriod(report.PERIOD_DAY).
		SetDate("last30")

	last30 := make(map[string]*report.ActionsGetMetric)
	err = c.Get(req, &last30)

	if err != nil {
		panic(err)
	}

	// Print the result
	fmt.Println("Number of visits last 30 days:")
	for i, v := range last30 {
		fmt.Printf("%s: %#v\n", i, v)
	}

	// Get the number of visits between 2 dates
	from := time.Date(2023, 3, 1, 0, 0, 0, 0, time.Local)
	to := time.Date(2023, 4, 15, 0, 0, 0, 0, time.Local)
	req = report.NewRequest().
		SetPeriod(report.PERIOD_DAY).
		SetDate(
			report.DateRange(
				from,
				to,
			),
		)

	dateRange := make(map[string]*report.ActionsGetMetric)
	err = c.Get(req, &dateRange)

	if err != nil {
		panic(err)
	}

	// Print the result
	fmt.Printf(
		"Number of visits between %s and %s:\n",
		from.Format("2006-01-02"),
		to.Format("2006-01-02"),
	)

	for i, v := range dateRange {
		fmt.Printf("%s: %#v\n", i, v)
	}
}

matomo-report-api's People

Contributors

jinjie avatar

Watchers

 avatar

Forkers

boonleng87

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.