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):
|
2014-12-08 14:13:26 +01:00
|
|
|
display = self.iwla.getDisplay()
|
2014-11-27 12:35:41 +01:00
|
|
|
top_downloads = self.iwla.getMonthStats()['top_downloads']
|
|
|
|
top_downloads = sorted(top_downloads.items(), key=lambda t: t[1], reverse=True)
|
|
|
|
|
2014-11-27 19:38:41 +01:00
|
|
|
# All in a file
|
2014-11-27 14:11:47 +01:00
|
|
|
filename = 'top_downloads.html'
|
2014-11-27 14:29:25 +01:00
|
|
|
path = self.iwla.getCurDisplayPath(filename)
|
2014-11-27 19:38:41 +01:00
|
|
|
title = time.strftime('All Downloads - %B %Y', self.iwla.getCurTime())
|
2014-11-27 12:35:41 +01:00
|
|
|
|
2014-12-08 14:13:26 +01:00
|
|
|
page = display.createPage(title, path, self.iwla.getConfValue('css_path', []))
|
|
|
|
table = display.createBlock(DisplayHTMLBlockTable, 'All Downloads', ['URI', 'Hit'])
|
2014-11-27 21:40:23 +01:00
|
|
|
table.setColsCSSClass(['', 'iwla_hit'])
|
2014-12-05 16:03:09 +01:00
|
|
|
|
|
|
|
total_entrance = [0]*2
|
2014-11-27 12:35:41 +01:00
|
|
|
for (uri, entrance) in top_downloads:
|
2014-12-04 21:04:41 +01:00
|
|
|
table.appendRow([generateHTMLLink(uri), entrance])
|
2014-12-05 16:03:09 +01:00
|
|
|
total_entrance[1] += entrance
|
2014-11-27 12:35:41 +01:00
|
|
|
page.appendBlock(table)
|
|
|
|
|
2014-12-08 14:13:26 +01:00
|
|
|
display.addPage(page)
|
2014-11-27 19:38:41 +01:00
|
|
|
|
|
|
|
link = '<a href=\'%s\'>All Downloads</a>' % (filename)
|
|
|
|
title = '%s - %s' % ('Top Downloads', link)
|
2014-11-27 12:35:41 +01:00
|
|
|
|
2014-11-27 19:38:41 +01:00
|
|
|
# Top in index
|
|
|
|
index = self.iwla.getDisplayIndex()
|
|
|
|
|
2014-12-08 14:13:26 +01:00
|
|
|
table = display.createBlock(DisplayHTMLBlockTable, title, ['URI', 'Hits'])
|
2014-11-27 21:40:23 +01:00
|
|
|
table.setColsCSSClass(['', 'iwla_hit'])
|
2014-11-27 19:38:41 +01:00
|
|
|
for (uri, entrance) in top_downloads[:10]:
|
2014-12-04 21:04:41 +01:00
|
|
|
table.appendRow([generateHTMLLink(uri), entrance])
|
2014-12-05 16:03:09 +01:00
|
|
|
total_entrance[1] -= entrance
|
|
|
|
if total_entrance[1]:
|
|
|
|
total_entrance[0] = 'Others'
|
|
|
|
table.appendRow(total_entrance)
|
|
|
|
table.setCellCSSClass(table.getNbRows()-1, 0, 'iwla_others')
|
2014-11-27 19:38:41 +01:00
|
|
|
index.appendBlock(table)
|