forked from LiveRamp/iabconsent
-
Notifications
You must be signed in to change notification settings - Fork 1
/
mspa_parsed_consent.go
187 lines (172 loc) · 7.42 KB
/
mspa_parsed_consent.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
package iabconsent
// MspaParsedConsent represents data extract from a Multi-State Privacy Agreement (mspa) consent string.
// Format can be found here: https://github.com/InteractiveAdvertisingBureau/Global-Privacy-Platform/blob/main/Sections/US-National/IAB%20Privacy%E2%80%99s%20National%20Privacy%20Technical%20Specification.md#core-segment
type MspaParsedConsent struct {
// The version of this section specification used to encode the string.
Version int
// Notice of the Sharing of the Consumer’s Personal Data with Third Parties.
// 0 Not Applicable. The Business does not share Personal Data with Third Parties.
// 1 Yes, notice was provided
// 2 No, notice was not provided
SharingNotice MspaNotice
// Notice of the Opportunity to Opt Out of the Sale of the Consumer’s Personal Data.
// 0 Not Applicable. The Business does not Sell Personal Data.
// 1 Yes, notice was provided
// 2 No, notice was not provided
SaleOptOutNotice MspaNotice
// Notice of the Opportunity to Opt Out of the Sharing of the Consumer’s Personal Data.
// 0 Not Applicable.The Business does not Share Personal Data.
// 1 Yes, notice was provided
// 2 No, notice was not provided
SharingOptOutNotice MspaNotice
// Notice of the Opportunity to Opt Out of Processing of the Consumer’s Personal Data for Targeted Advertising.
// 0 Not Applicable.The Business does not Process Personal Data for Targeted Advertising.
// 1 Yes, notice was provided
// 2 No, notice was not provided
TargetedAdvertisingOptOutNotice MspaNotice
// Notice of the Opportunity to Opt Out of the Processing of the Consumer’s Sensitive Data.
// 0 Not Applicable. The Business does not Process Sensitive Data.
// 1 Yes, notice was provided
// 2 No, notice was not provided
SensitiveDataProcessingOptOutNotice MspaNotice
// Notice of the Opportunity to Limit Use or Disclosure of the Consumer’s Sensitive Data.
// 0 Not Applicable. The Business does not use or disclose Sensitive Data.
// 1 Yes, notice was provided
// 2 No, notice was not provided
SensitiveDataLimitUseNotice MspaNotice
// Opt-Out of the Sale of the Consumer’s Personal Data.
// 0 Not Applicable. SaleOptOutNotice value was not applicable or no notice was provided
// 1 Opted Out
// 2 Did Not Opt Out
SaleOptOut MspaOptout
// Opt-Out of the Sharing of the Consumer’s Personal Data.
// 0 Not Applicable. SharingOptOutNotice value was not applicable or no notice was provided.
// 1 Opted Out
// 2 Did Not Opt Out
SharingOptOut MspaOptout
// Opt-Out of Processing the Consumer’s Personal Data for Targeted Advertising.
// 0 Not Applicable. TargetedAdvertisingOptOutNotice value was not applicable or no notice was provided
// 1 Opted Out
// 2 Did Not Opt Out
TargetedAdvertisingOptOut MspaOptout
// Two bits for each Data Activity:
// 0 Not Applicable. The Business does not Process the specific category of Sensitive Data.
// 1 No Consent
// 2 Consent
SensitiveDataProcessingConsents map[int]MspaConsent
// Two bits for each Data Activity:
// 0 Not Applicable. SensitiveDataLimitUseNotice value was not applicable or no notice was provided.
// 1 Opted Out
// 2 Did Not Opt Out
SensitiveDataProcessingOptOuts map[int]MspaOptout
// Two bits for each Data Activity:
// 0 Not Applicable. The Business does not have actual knowledge that it Processes Personal Data or Sensitive Data of a Consumer who is a known child.
// 1 No Consent
// 2 Consent
// Fields:
// (1) Consent to Process the Consumer’s Personal Data or Sensitive Data for Consumers from Age 13 to 16.
// (2) Consent to Process the Consumer’s Personal Data or Sensitive Data for Consumers Younger Than 13 Years of Age.
KnownChildSensitiveDataConsents map[int]MspaConsent
// Consent to Collection, Use, Retention, Sale, and/or Sharing of the Consumer’s Personal Data that Is Unrelated to or Incompatible with the Purpose(s) for which the Consumer’s Personal Data Was Collected or Processed.
// 0 Not Applicable. The Business does not use, retain, Sell, or Share the Consumer’s Personal Data for advertising purposes that are unrelated to or incompatible with the purpose(s) for which the Consumer’s Personal Data was collected or processed.
// 1 No Consent
// 2 Consent
PersonalDataConsents MspaConsent
// Publisher or Advertiser, as applicable, is a signatory to the IAB Multistate Service Provider Agreement (MSPA), as may be amended from time to time, and declares that the transaction is a “Covered Transaction” as defined in the MSPA.
// 1 Yes
// 2 No
MspaCoveredTransaction MspaNaYesNo
// Publisher or Advertiser, as applicable, has enabled “Opt-Out Option Mode” for the “Covered Transaction,” as such terms are defined in the MSPA.
// 0 Not Applicable.
// 1 Yes
// 2 No
MspaOptOutOptionMode MspaNaYesNo
// Publisher or Advertiser, as applicable, has enabled “Service Provider Mode” for the “Covered Transaction,” as such terms are defined in the MSPA.
// 0 Not Applicable
// 1 Yes
// 2 No
MspaServiceProviderMode MspaNaYesNo
// Subsections added below:
// Global Privacy Control (GPC) is signaled and set.
Gpc bool
}
type MspaNotice int
const (
NoticeNotApplicable MspaNotice = iota
NoticeProvided
NoticeNotProvided
InvalidNoticeValue
)
type MspaOptout int
const (
OptOutNotApplicable MspaOptout = iota
OptedOut
NotOptedOut
InvalidOptOutValue
)
type MspaConsent int
const (
ConsentNotApplicable MspaConsent = iota
NoConsent
Consent
InvalidConsentValue
)
// MspaNaYesNo represents common values for MSPA values representing
// answers, Not Applicable, Yes, No (in that order).
type MspaNaYesNo int
const (
MspaNotApplicable MspaNaYesNo = iota
MspaYes
MspaNo
InvalidMspaValue
)
// ReadMspaNotice reads integers into standard MSPA Notice values of
// 0: Not applicable, 1: Yes, notice was provided, 2: No, notice was not provided.
func (r *ConsentReader) ReadMspaNotice() (MspaNotice, error) {
var mn, err = r.ReadInt(2)
return MspaNotice(mn), err
}
// ReadMspaOptOut reads integers into standard MSPA OptOut values of
// 0: Not Applicable, 1: Opted out, 2: Did not opt out
func (r *ConsentReader) ReadMspaOptOut() (MspaOptout, error) {
var mo, err = r.ReadInt(2)
return MspaOptout(mo), err
}
// ReadMspaConsent reads integers into standard Consent values of
// 0: Not Applicable, 1: Not Consent, 2: Consent
func (r *ConsentReader) ReadMspaConsent() (MspaConsent, error) {
var mc, err = r.ReadInt(2)
return MspaConsent(mc), err
}
// ReadMspaBitfieldConsent reads n-bitfield values, and converts the values into
// MSPA Consent values.
func (r *ConsentReader) ReadMspaBitfieldConsent(l uint) (map[int]MspaConsent, error) {
var bc, err = r.ReadNBitField(2, l)
var consentBitfield = make(map[int]MspaConsent, len(bc))
if err != nil {
return nil, err
}
for i, b := range bc {
consentBitfield[i] = MspaConsent(b)
}
return consentBitfield, err
}
// ReadMspaBitfieldOptOut reads n-bitfield values, and converts the values into
// MSPA OptOut values.
func (r *ConsentReader) ReadMspaBitfieldOptOut(l uint) (map[int]MspaOptout, error) {
var bc, err = r.ReadNBitField(2, l)
var consentBitfield = make(map[int]MspaOptout, len(bc))
if err != nil {
return nil, err
}
for i, b := range bc {
consentBitfield[i] = MspaOptout(b)
}
return consentBitfield, err
}
// ReadMspaNaYesNo is a helper function to handle the responses to standard MSPA
// values that are in the same format of 0: Not Applicable, 1: Yes, 2: No.
func (r *ConsentReader) ReadMspaNaYesNo() (MspaNaYesNo, error) {
var nyn, err = r.ReadInt(2)
return MspaNaYesNo(nyn), err
}