Skip to content

Commit 8e79787

Browse files
Florian HartwigLuis Vieira
Florian Hartwig
and
Luis Vieira
authored
Implement support for Consent strings v2 (#2)
Co-authored-by: Luis Vieira <[email protected]>
1 parent 94f482f commit 8e79787

11 files changed

+1263
-423
lines changed

README.md

+34-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ A minimalistic Go library to encode and decode [IAB consent][iab] strings.
66

77
[iab]: https://github.com/InteractiveAdvertisingBureau/GDPR-Transparency-and-Consent-Framework/blob/68f5e0012a7bdb00867ce9fee57fb67cfe9153e3/Consent%20string%20and%20vendor%20list%20formats%20v1.1%20Final.md
88

9-
### Usage example
9+
### Usage examples
10+
11+
#### Version 1
1012

1113
```go
1214
package main
@@ -48,3 +50,34 @@ func main() {
4850
fmt.Println(c2.String())
4951
}
5052
```
53+
54+
#### Version 2
55+
56+
```go
57+
// Decode a consent v2 string
58+
cv2, err := consent.ParseV2("COtybn4PA_zT4KjACBENAPCIAEBAAECAAIAAAAAAAAAA")
59+
60+
if err != nil {
61+
fmt.Println(err)
62+
os.Exit(1)
63+
}
64+
fmt.Printf("Last modified: %s, vendors allowed: %v\n",
65+
cv2.LastUpdated, cv2.VendorConsent)
66+
```
67+
68+
#### Consent string of unknown version
69+
70+
```go
71+
// decode a consent string without knowing the version beforehand
72+
cvx, err := consent.Parse("BOQ7WlgOQ7WlgABACDENABwAAABJOACgACAAQABA")
73+
if err != nil {
74+
fmt.Println(err)
75+
os.Exit(1)
76+
}
77+
switch c3 := cvx.(type) {
78+
case *consent.ConsentV1:
79+
fmt.Printf("V1. PurposesAllowed: %v\n", c3.PurposesAllowed)
80+
case *consent.ConsentV2:
81+
fmt.Printf("V2. PurposesConsent: %v\n", c3.PurposesConsent)
82+
}
83+
```

bits.go

+13
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,14 @@ func (b *bitWriter) AppendBools(bools []bool) {
2929
}
3030
}
3131

32+
func (b *bitWriter) AppendBit(x bool) {
33+
var v byte
34+
if x {
35+
v = 1
36+
}
37+
b.AppendByte(v, 1)
38+
}
39+
3240
func (b *bitWriter) AppendBits(bits bitWriter) {
3341
for i := range bits.data {
3442
b.AppendByte(bits.data[i], 8)
@@ -106,3 +114,8 @@ func (b *bitReader) ReadInt(size uint) (int64, bool) {
106114
}
107115
return out, true
108116
}
117+
118+
func (b *bitReader) ReadBit() (bool, bool) {
119+
v, ok := b.ReadByte(1)
120+
return v > 0, ok
121+
}

0 commit comments

Comments
 (0)