83 lines
2.7 KiB
Python
83 lines
2.7 KiB
Python
import time
|
|
import gettext as g
|
|
|
|
from iwla import IWLA
|
|
from iplugin import IPlugin
|
|
from display import *
|
|
|
|
#
|
|
# Display hook
|
|
#
|
|
# Create TOP hits page
|
|
#
|
|
# Plugin requirements :
|
|
# post_analysis/top_hits
|
|
#
|
|
# Conf values needed :
|
|
# max_hits_displayed*
|
|
# create_all_hits_page*
|
|
#
|
|
# Output files :
|
|
# OUTPUT_ROOT/year/month/top_hits.html
|
|
# OUTPUT_ROOT/year/month/index.html
|
|
#
|
|
# Statistics creation :
|
|
# None
|
|
#
|
|
# Statistics update :
|
|
# None
|
|
#
|
|
# Statistics deletion :
|
|
# None
|
|
#
|
|
|
|
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)
|
|
|
|
def hook(self):
|
|
display = self.iwla.getDisplay()
|
|
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:
|
|
title = time.strftime(g.gettext('All Hits') + ' - %B %Y', self.iwla.getCurTime())
|
|
filename = 'top_hits.html'
|
|
path = self.iwla.getCurDisplayPath(filename)
|
|
|
|
page = display.createPage(title, path, self.iwla.getConfValue('css_path', []))
|
|
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)
|
|
|
|
display.addPage(page)
|
|
|
|
title = 'Top Hits'
|
|
if self.create_all_hits:
|
|
link = '<a href=\'%s\'>%s</a>' % (filename, g.gettext('All Hits'))
|
|
title = '%s - %s' % (title, link)
|
|
|
|
# Top in index
|
|
index = self.iwla.getDisplayIndex()
|
|
|
|
table = display.createBlock(DisplayHTMLBlockTable, title, [g.gettext('URI'), g.gettext('Entrance')])
|
|
table.setColsCSSClass(['', 'iwla_hit'])
|
|
for (uri, entrance) in top_hits[:10]:
|
|
table.appendRow([generateHTMLLink(uri), entrance])
|
|
total_hits[1] -= entrance
|
|
if total_hits[1]:
|
|
total_hits[0] = g.gettext('Others')
|
|
table.appendRow(total_hits)
|
|
table.setCellCSSClass(table.getNbRows()-1, 0, 'iwla_others')
|
|
index.appendBlock(table)
|