iwla/plugins/display/top_pages.py

75 lines
2.2 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 *
2014-12-10 21:15:56 +01:00
#
# Display hook
#
# Create TOP pages page
#
# Plugin requirements :
# post_analysis/top_pages
#
# Conf values needed :
# None
#
# Output files :
# OUTPUT_ROOT/year/month/top_pages.html
# OUTPUT_ROOT/year/month/index.html
#
# Statistics creation :
# None
#
# Statistics update :
# None
#
# Statistics deletion :
# None
#
2014-11-26 22:03:19 +01:00
class IWLADisplayTopPages(IPlugin):
def __init__(self, iwla):
super(IWLADisplayTopPages, self).__init__(iwla)
self.API_VERSION = 1
self.requires = ['IWLAPostAnalysisTopPages']
def hook(self):
display = self.iwla.getDisplay()
2014-11-26 22:03:19 +01:00
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 = display.createPage(title, path, self.iwla.getConfValue('css_path', []))
table = display.createBlock(DisplayHTMLBlockTable, 'All Pages', ['URI', 'Entrance'])
2014-11-27 21:40:23 +01:00
table.setColsCSSClass(['', 'iwla_hit'])
2014-12-05 16:03:09 +01:00
total_hits = [0]*2
2014-11-26 22:03:19 +01:00
for (uri, entrance) in top_pages:
table.appendRow([generateHTMLLink(uri), entrance])
2014-12-05 16:03:09 +01:00
total_hits[1] += entrance
2014-11-26 22:03:19 +01:00
page.appendBlock(table)
display.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()
table = display.createBlock(DisplayHTMLBlockTable, title, ['URI', 'Entrance'])
2014-11-27 21:40:23 +01:00
table.setColsCSSClass(['', 'iwla_hit'])
for (uri, entrance) in top_pages[:10]:
table.appendRow([generateHTMLLink(uri), entrance])
2014-12-05 16:03:09 +01:00
total_hits[1] -= entrance
if total_hits[1]:
total_hits[0] = 'Others'
table.appendRow(total_hits)
table.setCellCSSClass(table.getNbRows()-1, 0, 'iwla_others')
index.appendBlock(table)