iwla/plugins/display/top_pages.py

42 lines
1.4 KiB
Python
Raw Normal View History

2014-11-26 22:03:19 +01:00
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)
# All in a page
2014-11-27 14:11:47 +01:00
title = time.strftime('All Pages - %B %Y', self.iwla.getCurTime())
filename = 'top_pages.html'
path = self.iwla.getCurDisplayPath(filename)
2014-11-26 22:03:19 +01:00
page = DisplayHTMLPage(title, path)
2014-11-27 21:40:23 +01:00
table = DisplayHTMLBlockTable('All Pages', ['URI', 'Entrance'])
table.setColsCSSClass(['', 'iwla_hit'])
2014-11-26 22:03:19 +01:00
for (uri, entrance) in top_pages:
table.appendRow([uri, entrance])
page.appendBlock(table)
self.iwla.getDisplay().addPage(page)
link = '<a href=\'%s\'>All pages</a>' % (filename)
title = '%s - %s' % ('Top Pages', link)
2014-11-26 22:03:19 +01:00
# Top in index
index = self.iwla.getDisplayIndex()
2014-11-27 21:40:23 +01:00
table = DisplayHTMLBlockTable(title, ['URI', 'Entrance'])
table.setColsCSSClass(['', 'iwla_hit'])
for (uri, entrance) in top_pages[:10]:
table.appendRow([uri, entrance])
index.appendBlock(table)