iwla/plugins/display/top_hits.py

83 lines
2.7 KiB
Python
Raw Normal View History

2014-11-27 13:47:31 +01:00
import time
2014-12-17 19:00:42 +01:00
import gettext as g
2014-11-27 13:47:31 +01:00
from iwla import IWLA
from iplugin import IPlugin
from display import *
2014-12-10 21:15:56 +01:00
#
# Display hook
#
# Create TOP hits page
#
# Plugin requirements :
# post_analysis/top_hits
#
# Conf values needed :
# max_hits_displayed*
# create_all_hits_page*
2014-12-10 21:15:56 +01:00
#
# Output files :
# OUTPUT_ROOT/year/month/top_hits.html
# OUTPUT_ROOT/year/month/index.html
#
# Statistics creation :
# None
#
# Statistics update :
# None
#
# Statistics deletion :
# None
#
2014-11-27 13:47:31 +01:00
class IWLADisplayTopHits(IPlugin):
def __init__(self, iwla):
super(IWLADisplayTopHits, self).__init__(iwla)
self.API_VERSION = 1
self.requires = ['IWLAPostAnalysisTopHits']
self.max_hits = self.iwla.getConfValue('max_hits_displayed', 0)
self.create_all_hits = self.iwla.getConfValue('create_all_hits_page', True)
2014-11-27 13:47:31 +01:00
def hook(self):
display = self.iwla.getDisplay()
2014-11-27 13:47:31 +01:00
top_hits = self.iwla.getMonthStats()['top_hits']
top_hits = sorted(top_hits.items(), key=lambda t: t[1], reverse=True)
# All in a file
if self.create_all_hits:
2014-12-17 19:00:42 +01:00
title = time.strftime(g.gettext('All Hits') + ' - %B %Y', self.iwla.getCurTime())
filename = 'top_hits.html'
path = self.iwla.getCurDisplayPath(filename)
2014-11-27 13:47:31 +01:00
page = display.createPage(title, path, self.iwla.getConfValue('css_path', []))
2014-12-17 19:00:42 +01:00
table = display.createBlock(DisplayHTMLBlockTable, g.gettext('All Hits'), [g.gettext('URI'), g.gettext('Entrance')])
table.setColsCSSClass(['', 'iwla_hit'])
total_hits = [0]*2
new_list = self.max_hits and top_hits[:self.max_hits] or top_hits
for (uri, entrance) in new_list:
table.appendRow([generateHTMLLink(uri), entrance])
total_hits[1] += entrance
page.appendBlock(table)
2014-11-27 13:47:31 +01:00
display.addPage(page)
title = 'Top Hits'
if self.create_all_hits:
2014-12-17 19:00:42 +01:00
link = '<a href=\'%s\'>%s</a>' % (filename, g.gettext('All Hits'))
title = '%s - %s' % (title, link)
2014-11-27 13:47:31 +01:00
# Top in index
index = self.iwla.getDisplayIndex()
2014-12-17 19:00:42 +01:00
table = display.createBlock(DisplayHTMLBlockTable, title, [g.gettext('URI'), g.gettext('Entrance')])
2014-11-27 21:40:23 +01:00
table.setColsCSSClass(['', 'iwla_hit'])
for (uri, entrance) in top_hits[:10]:
table.appendRow([generateHTMLLink(uri), entrance])
2014-12-05 16:03:09 +01:00
total_hits[1] -= entrance
if total_hits[1]:
2014-12-17 19:00:42 +01:00
total_hits[0] = g.gettext('Others')
2014-12-05 16:03:09 +01:00
table.appendRow(total_hits)
table.setCellCSSClass(table.getNbRows()-1, 0, 'iwla_others')
index.appendBlock(table)