import time from iwla import IWLA from iplugin import IPlugin from display import * class IWLADisplayTopPages(IPlugin): def __init__(self, iwla): super(IWLADisplayTopPages, self).__init__(iwla) self.API_VERSION = 1 self.requires = ['IWLAPostAnalysisTopPages'] def hook(self): top_pages = self.iwla.getMonthStats()['top_pages'] top_pages = sorted(top_pages.items(), key=lambda t: t[1], reverse=True) index = self.iwla.getDisplayIndex() table = DisplayHTMLBlockTable('Top Pages', ['URI', 'Entrance']) for (uri, entrance) in top_pages[:10]: table.appendRow([uri, entrance]) index.appendBlock(table) title = time.strftime('All Pages - %B %Y', self.iwla.getCurTime()) filename = 'top_pages.html' path = '%s/%s' % (self.iwla.getCurDisplayRoot(), filename) page = DisplayHTMLPage(title, path) table = DisplayHTMLBlockTable('Top Pages', ['URI', 'Entrance']) for (uri, entrance) in top_pages: table.appendRow([uri, entrance]) page.appendBlock(table) display = self.iwla.getDisplay() display.addPage(page) block = DisplayHTMLRawBlock() block.setRawHTML('All pages' % (filename)) index.appendBlock(block)