forked from sendgrid/sendgrid-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathganalytics.py
176 lines (142 loc) · 4.94 KB
/
ganalytics.py
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
class Ganalytics(object):
"""Allows you to enable tracking provided by Google Analytics."""
def __init__(self,
enable=None,
utm_source=None,
utm_medium=None,
utm_term=None,
utm_content=None,
utm_campaign=None):
"""Create a GAnalytics to enable, customize Google Analytics tracking.
:param enable: If this setting is enabled.
:type enable: boolean, optional
:param utm_source: Name of the referrer source.
:type utm_source: string, optional
:param utm_medium: Name of the marketing medium (e.g. "Email").
:type utm_medium: string, optional
:param utm_term: Used to identify paid keywords.
:type utm_term: string, optional
:param utm_content: Used to differentiate your campaign from ads.
:type utm_content: string, optional
:param utm_campaign: The name of the campaign.
:type utm_campaign: string, optional
"""
self._enable = None
self._utm_source = None
self._utm_medium = None
self._utm_term = None
self._utm_content = None
self._utm_campaign = None
self.__set_field("enable", enable)
self.__set_field("utm_source", utm_source)
self.__set_field("utm_medium", utm_medium)
self.__set_field("utm_term", utm_term)
self.__set_field("utm_content", utm_content)
self.__set_field("utm_campaign", utm_campaign)
def __set_field(self, field, value):
""" Sets a field to the provided value if value is not None
:param field: Name of the field
:type field: string
:param value: Value to be set, ignored if None
:type value: Any
"""
if value is not None:
setattr(self, field, value)
@property
def enable(self):
"""Indicates if this setting is enabled.
:rtype: boolean
"""
return self._enable
@enable.setter
def enable(self, value):
"""Indicates if this setting is enabled.
:param value: Indicates if this setting is enabled.
:type value: boolean
"""
self._enable = value
@property
def utm_source(self):
"""Name of the referrer source.
e.g. Google, SomeDomain.com, or Marketing Email
:rtype: string
"""
return self._utm_source
@utm_source.setter
def utm_source(self, value):
"""Name of the referrer source.
e.g. Google, SomeDomain.com, or Marketing Email
:param value: Name of the referrer source.
e.g. Google, SomeDomain.com, or Marketing Email
:type value: string
"""
self._utm_source = value
@property
def utm_medium(self):
"""Name of the marketing medium (e.g. Email).
:rtype: string
"""
return self._utm_medium
@utm_medium.setter
def utm_medium(self, value):
"""Name of the marketing medium (e.g. Email).
:param value: Name of the marketing medium (e.g. Email).
:type value: string
"""
self._utm_medium = value
@property
def utm_term(self):
"""Used to identify any paid keywords.
:rtype: string
"""
return self._utm_term
@utm_term.setter
def utm_term(self, value):
"""Used to identify any paid keywords.
:param value: Used to identify any paid keywords.
:type value: string
"""
self._utm_term = value
@property
def utm_content(self):
"""Used to differentiate your campaign from advertisements.
:rtype: string
"""
return self._utm_content
@utm_content.setter
def utm_content(self, value):
"""Used to differentiate your campaign from advertisements.
:param value: Used to differentiate your campaign from advertisements.
:type value: string
"""
self._utm_content = value
@property
def utm_campaign(self):
"""The name of the campaign.
:rtype: string
"""
return self._utm_campaign
@utm_campaign.setter
def utm_campaign(self, value):
"""The name of the campaign.
:param value: The name of the campaign.
:type value: string
"""
self._utm_campaign = value
def get(self):
"""
Get a JSON-ready representation of this Ganalytics.
:returns: This Ganalytics, ready for use in a request body.
:rtype: dict
"""
keys = ["enable", "utm_source", "utm_medium", "utm_term",
"utm_content", "utm_campaign"]
ganalytics = {}
for key in keys:
value = getattr(self, key, None)
if value is not None:
if isinstance(value, bool) or isinstance(value, str):
ganalytics[key] = value
else:
ganalytics[key] = value.get()
return ganalytics