43 lines
1.4 KiB
Python
43 lines
1.4 KiB
Python
|
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)
|
||
|
|
||
|
index = self.iwla.getDisplayIndex()
|
||
|
|
||
|
table = DisplayHTMLBlockTable('Top Hits', ['URI', 'Entrance'])
|
||
|
for (uri, entrance) in top_hits[:10]:
|
||
|
table.appendRow([uri, entrance])
|
||
|
index.appendBlock(table)
|
||
|
|
||
|
cur_time = self.iwla.getCurTime()
|
||
|
title = time.strftime('All Hits - %B %Y', cur_time)
|
||
|
|
||
|
filename = 'top_hits_%d.html' % (cur_time.tm_mon)
|
||
|
path = '%d/%s' % (cur_time.tm_year, filename)
|
||
|
|
||
|
page = DisplayHTMLPage(title, path)
|
||
|
table = DisplayHTMLBlockTable('Top Hits', ['URI', 'Entrance'])
|
||
|
for (uri, entrance) in top_hits:
|
||
|
table.appendRow([uri, entrance])
|
||
|
page.appendBlock(table)
|
||
|
|
||
|
display = self.iwla.getDisplay()
|
||
|
display.addPage(page)
|
||
|
|
||
|
block = DisplayHTMLRawBlock()
|
||
|
block.setRawHTML('<a href=\'%s\'>All hits</a>' % (filename))
|
||
|
index.appendBlock(block)
|