travelaudience / go-iabtcf

A Golang implementation of the IAB Transparency and Consent String (TC String) v2.0

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

go-iabtcf

A Golang implementation of the IAB Transparency and Consent String (TC String) v2.0

The TC String is a technical component of the IAB Europe Transparency & Consent Framework (TCF)

Library provides convenient way to check if:

  • vendor is allowed
  • purposes are allowed
  • special fetures are allowed

Getting Started

Installing

go get -v github.com/travelaudience/go-iabtcf

Example - Normal Parsing

package main

import (
  "fmt"

  "github.com/travelaudience/go-iabtcf"
)

func main() {
  var s, err = iabtcf.ParseCoreString("COwIsAvOwIsAvBIAAAENAPCMAP_AAP_AAAAAFoQBQABAAGAAQAAwACQAAAAA.IFoEUQQgAIQwgIwQABAEAAAAOIAACAIAAAAQAIAgEAACEAAAAAgAQBAAAAAAAGBAAgAAAAAAAFAAECAAAgAAQARAEQAAAAAJAAIAAgAAAYQEAAAQmAgBC3ZAYzUw")
  if err != nil {
    panic(err)
  }
  
  pa := s.EveryPurposeAllowed([]int{1})
  sf := s.EverySpecialFeatureAllowed([]int{1})
  va := s.VendorAllowed(1)
}

Example - Lazy Parsing

package main

import (
  "fmt"

  "github.com/travelaudience/go-iabtcf"
)

func main() {
  var s, err = iabtcf.LazyParseCoreString("COwIsAvOwIsAvBIAAAENAPCMAP_AAP_AAAAAFoQBQABAAGAAQAAwACQAAAAA.IFoEUQQgAIQwgIwQABAEAAAAOIAACAIAAAAQAIAgEAACEAAAAAgAQBAAAAAAAGBAAgAAAAAAAFAAECAAAgAAQARAEQAAAAAJAAIAAgAAAYQEAAAQmAgBC3ZAYzUw")
  if err != nil {
    panic(err)
  }
  
  pa := s.EveryPurposeAllowed([]int{1})
  sf := s.EverySpecialFeatureAllowed([]int{1})
  va := s.VendorAllowed(1)
}

Contributing

Contributions are welcomed! Read the Contributing Guide for more information.

Licensing

This project is licensed under the MIT License - see the LICENSE file for details

About

A Golang implementation of the IAB Transparency and Consent String (TC String) v2.0

License:MIT License


Languages

Language:Go 100.0%