2014-11-27 13:47:31 +01:00
|
|
|
import time
|
|
|
|
|
|
|
|
from iwla import IWLA
|
|
|
|
from iplugin import IPlugin
|
|
|
|
from display import *
|
|
|
|
|
|
|
|
class IWLADisplayTopHits(IPlugin):
|
|
|
|
def __init__(self, iwla):
|
|
|
|
super(IWLADisplayTopHits, self).__init__(iwla)
|
|
|
|
self.API_VERSION = 1
|
|
|
|
self.requires = ['IWLAPostAnalysisTopHits']
|
|
|
|
|
|
|
|
def hook(self):
|
|
|
|
top_hits = self.iwla.getMonthStats()['top_hits']
|
|
|
|
top_hits = sorted(top_hits.items(), key=lambda t: t[1], reverse=True)
|
|
|
|
|
2014-11-27 19:38:41 +01:00
|
|
|
# All in a file
|
2014-11-27 14:11:47 +01:00
|
|
|
title = time.strftime('All Hits - %B %Y', self.iwla.getCurTime())
|
|
|
|
filename = 'top_hits.html'
|
2014-11-27 14:29:25 +01:00
|
|
|
path = self.iwla.getCurDisplayPath(filename)
|
2014-11-27 13:47:31 +01:00
|
|
|
|
2014-11-30 19:05:17 +01:00
|
|
|
page = DisplayHTMLPage(title, path, self.iwla.getConfValue('css_path', []))
|
2014-11-27 19:38:41 +01:00
|
|
|
table = DisplayHTMLBlockTable('All Hits', ['URI', 'Entrance'])
|
2014-11-27 21:40:23 +01:00
|
|
|
table.setColsCSSClass(['', 'iwla_hit'])
|
2014-11-27 13:47:31 +01:00
|
|
|
for (uri, entrance) in top_hits:
|
2014-12-04 21:04:41 +01:00
|
|
|
table.appendRow([generateHTMLLink(uri), entrance])
|
2014-11-27 13:47:31 +01:00
|
|
|
page.appendBlock(table)
|
|
|
|
|
2014-11-27 19:38:41 +01:00
|
|
|
self.iwla.getDisplay().addPage(page)
|
|
|
|
|
|
|
|
link = '<a href=\'%s\'>All hits</a>' % (filename)
|
|
|
|
title = '%s - %s' % ('Top Hits', link)
|
2014-11-27 13:47:31 +01:00
|
|
|
|
2014-11-27 19:38:41 +01:00
|
|
|
# Top in index
|
|
|
|
index = self.iwla.getDisplayIndex()
|
|
|
|
|
|
|
|
table = DisplayHTMLBlockTable(title, ['URI', 'Entrance'])
|
2014-11-27 21:40:23 +01:00
|
|
|
table.setColsCSSClass(['', 'iwla_hit'])
|
2014-11-27 19:38:41 +01:00
|
|
|
for (uri, entrance) in top_hits[:10]:
|
2014-12-04 21:04:41 +01:00
|
|
|
table.appendRow([generateHTMLLink(uri), entrance])
|
2014-11-27 19:38:41 +01:00
|
|
|
index.appendBlock(table)
|