iwla/plugins/display/top_downloads.py

42 lines
1.5 KiB
Python
Raw Normal View History

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