Merge pull request #34 from ViderumGlobal/master
Fix error that causes downloading stats from GA to fail
This commit is contained in:
commit
1ca9431336
|
@ -94,6 +94,7 @@ Installation
|
|||
googleanalytics.domain = auto
|
||||
googleanalytics.track_events = false
|
||||
googleanalytics.fields = {}
|
||||
googleanalytics.enable_user_id = false
|
||||
|
||||
``resource_prefix`` is an arbitrary identifier so that we can query
|
||||
for downloads in Google Analytics. It can theoretically be any
|
||||
|
@ -116,6 +117,10 @@ Installation
|
|||
|
||||
``fields`` allows you to specify various options when creating the tracker. See `Google's documentation <https://developers.google.com/analytics/devguides/collection/analyticsjs/field-reference>`.
|
||||
|
||||
If ``enable_user_id`` is set to ``true``, then logged in users will be tracked into the Google Analytics' dashboard.
|
||||
This way metrics can be tracked for every logged in user. You can read more
|
||||
about this feature and its benefits `here <https://support.google.com/analytics/answer/3123662>`_.
|
||||
|
||||
Domain Linking
|
||||
--------------
|
||||
|
||||
|
|
|
@ -51,14 +51,14 @@ def get_profile_id(service):
|
|||
if acc.get('name') == accountName:
|
||||
accountId = acc.get('id')
|
||||
|
||||
# TODO: check, whether next line is doing something useful.
|
||||
webproperties = service.management().webproperties().list(
|
||||
accountId=accountId).execute()
|
||||
# TODO: check, whether next line is doing something useful.
|
||||
webproperties = service.management().webproperties().list(
|
||||
accountId=accountId).execute()
|
||||
|
||||
profiles = service.management().profiles().list(
|
||||
accountId=accountId, webPropertyId=webPropertyId).execute()
|
||||
profiles = service.management().profiles().list(
|
||||
accountId=accountId, webPropertyId=webPropertyId).execute()
|
||||
|
||||
if profiles.get('items'):
|
||||
return profiles.get('items')[0].get('id')
|
||||
if profiles.get('items'):
|
||||
return profiles.get('items')[0].get('id')
|
||||
|
||||
return None
|
||||
|
|
|
@ -134,6 +134,8 @@ class GoogleAnalyticsPlugin(p.SingletonPlugin):
|
|||
config.get('googleanalytics.show_downloads', True))
|
||||
self.track_events = converters.asbool(
|
||||
config.get('googleanalytics.track_events', False))
|
||||
self.enable_user_id = converters.asbool(
|
||||
config.get('googleanalytics.enable_user_id', False))
|
||||
|
||||
if not converters.asbool(config.get('ckan.legacy_templates', 'false')):
|
||||
p.toolkit.add_resource('fanstatic_library', 'ckanext-googleanalytics')
|
||||
|
@ -240,6 +242,10 @@ class GoogleAnalyticsPlugin(p.SingletonPlugin):
|
|||
templates in this extension, see ITemplateHelpers.
|
||||
|
||||
'''
|
||||
|
||||
if self.enable_user_id and c.user:
|
||||
self.googleanalytics_fields['userId'] = str(c.userobj.id)
|
||||
|
||||
data = {
|
||||
'googleanalytics_id': self.googleanalytics_id,
|
||||
'googleanalytics_domain': self.googleanalytics_domain,
|
||||
|
|
Loading…
Reference in New Issue