2011-04-04 12:50:18 +02:00
|
|
|
import logging
|
|
|
|
import urllib
|
|
|
|
import os
|
2011-04-05 16:28:27 +02:00
|
|
|
from paste.deploy.converters import asbool
|
2011-04-04 12:50:18 +02:00
|
|
|
from genshi.filters import Transformer
|
|
|
|
from genshi import HTML
|
2011-04-05 11:38:25 +02:00
|
|
|
from genshi.core import START, TEXT, END
|
|
|
|
from genshi.filters.transform import INSIDE, EXIT
|
2011-11-29 18:39:49 +01:00
|
|
|
from pylons import config, request
|
2011-04-04 12:50:18 +02:00
|
|
|
from ckan.plugins import implements, SingletonPlugin
|
|
|
|
from ckan.plugins import IGenshiStreamFilter, IConfigurable, IRoutes
|
|
|
|
from ckan.plugins import IConfigurer
|
|
|
|
from gasnippet import gacode
|
2011-04-04 18:44:39 +02:00
|
|
|
from commands import DEFAULT_RESOURCE_URL_TAG
|
|
|
|
import dbutil
|
|
|
|
|
|
|
|
log = logging.getLogger('ckanext.googleanalytics')
|
2011-04-04 12:50:18 +02:00
|
|
|
|
|
|
|
|
|
|
|
class GoogleAnalyticsException(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class GoogleAnalyticsPlugin(SingletonPlugin):
|
|
|
|
implements(IConfigurable, inherit=True)
|
|
|
|
implements(IGenshiStreamFilter, inherit=True)
|
|
|
|
implements(IRoutes, inherit=True)
|
|
|
|
implements(IConfigurer, inherit=True)
|
|
|
|
|
|
|
|
def configure(self, config):
|
|
|
|
self.config = config
|
|
|
|
if (not 'googleanalytics.id' in config):
|
|
|
|
msg = "Missing googleanalytics.id in config"
|
|
|
|
raise GoogleAnalyticsException(msg)
|
|
|
|
|
|
|
|
def filter(self, stream):
|
|
|
|
log.info("Inserting GA code into template")
|
|
|
|
ga_id = self.config['googleanalytics.id']
|
2011-04-06 13:01:21 +02:00
|
|
|
ga_domain = self.config.get('googleanalytics.domain', 'auto')
|
|
|
|
code = HTML(gacode % (ga_id, ga_domain))
|
2011-04-04 12:50:18 +02:00
|
|
|
stream = stream | Transformer('head').append(code)
|
2011-04-04 18:44:39 +02:00
|
|
|
resource_url = config.get('googleanalytics.resource_prefix',
|
|
|
|
DEFAULT_RESOURCE_URL_TAG)
|
2011-04-05 16:28:27 +02:00
|
|
|
show_downloads = asbool(config.get('googleanalytics.show_downloads',
|
2011-04-06 13:53:59 +02:00
|
|
|
True))
|
2011-04-04 12:50:18 +02:00
|
|
|
|
2011-11-29 18:39:49 +01:00
|
|
|
routes = request.environ.get('pylons.routes_dict')
|
|
|
|
if (routes.get('controller') == 'package' and
|
|
|
|
routes.get('action') == 'read'):
|
|
|
|
|
|
|
|
# add download tracking link
|
|
|
|
def js_attr(name, event):
|
|
|
|
attrs = event[1][1]
|
|
|
|
href = attrs.get('href').encode('utf-8')
|
|
|
|
link = '%s%s' % (resource_url, urllib.quote(href))
|
|
|
|
js = "javascript: _gaq.push(['_trackPageview', '%s']);" % link
|
|
|
|
return js
|
|
|
|
|
|
|
|
# add some stats
|
|
|
|
def download_adder(stream):
|
|
|
|
download_html = ''' <span class="downloads-count">
|
|
|
|
(downloaded %s times)</span>'''
|
|
|
|
count = None
|
|
|
|
for mark, (kind, data, pos) in stream:
|
|
|
|
if mark and kind == START:
|
|
|
|
href = data[1].get('href')
|
|
|
|
if href:
|
|
|
|
count = dbutil.get_resource_visits_for_url(href)
|
|
|
|
if count and mark is EXIT:
|
|
|
|
# emit count
|
|
|
|
yield INSIDE, (TEXT, HTML(download_html % count), pos)
|
|
|
|
yield mark, (kind, data, pos)
|
|
|
|
|
|
|
|
# and some styling
|
|
|
|
download_style = '''
|
|
|
|
<style type="text/css">
|
|
|
|
span.downloads-count {
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
'''
|
|
|
|
|
|
|
|
# perform the stream transform
|
|
|
|
stream = stream | Transformer('//div[@class="resource-url"]//a')\
|
|
|
|
.attr('onclick', js_attr)
|
|
|
|
|
|
|
|
if show_downloads:
|
|
|
|
stream = stream | Transformer('//div[@class="resource-url"]//a')\
|
|
|
|
.apply(download_adder)
|
|
|
|
stream = stream | Transformer('//link[@rel="stylesheet"]')\
|
|
|
|
.append(HTML(download_style))
|
|
|
|
|
2011-04-04 12:50:18 +02:00
|
|
|
return stream
|
|
|
|
|
|
|
|
def after_map(self, map):
|
2011-11-29 18:56:47 +01:00
|
|
|
map.redirect("/analytics/package/top", "/analytics/dataset/top")
|
|
|
|
map.connect('analytics', '/analytics/dataset/top',
|
2011-04-04 12:50:18 +02:00
|
|
|
controller='ckanext.googleanalytics.controller:GAController',
|
|
|
|
action='view')
|
|
|
|
return map
|
|
|
|
|
|
|
|
def update_config(self, config):
|
|
|
|
here = os.path.dirname(__file__)
|
|
|
|
rootdir = os.path.dirname(os.path.dirname(here))
|
|
|
|
template_dir = os.path.join(rootdir, 'ckanext',
|
2011-11-29 18:39:49 +01:00
|
|
|
'googleanalytics', 'templates')
|
|
|
|
config['extra_template_paths'] = ','.join(
|
|
|
|
[template_dir, config.get('extra_template_paths', '')]
|
|
|
|
)
|