2014-12-18 19:54:31 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
|
|
|
# Copyright Grégory Soutadé 2015
|
|
|
|
|
|
|
|
# This file is part of iwla
|
|
|
|
|
|
|
|
# iwla is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# iwla is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with iwla. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
|
2014-11-27 12:35:41 +01:00
|
|
|
from iwla import IWLA
|
|
|
|
from iplugin import IPlugin
|
|
|
|
from display import *
|
|
|
|
|
2014-12-19 11:34:25 +01:00
|
|
|
"""
|
|
|
|
Display hook
|
|
|
|
|
|
|
|
Create TOP downloads page
|
|
|
|
|
|
|
|
Plugin requirements :
|
|
|
|
post_analysis/top_downloads
|
|
|
|
|
|
|
|
Conf values needed :
|
|
|
|
max_downloads_displayed*
|
|
|
|
create_all_downloads_page*
|
|
|
|
|
|
|
|
Output files :
|
|
|
|
OUTPUT_ROOT/year/month/top_downloads.html
|
|
|
|
OUTPUT_ROOT/year/month/index.html
|
|
|
|
|
|
|
|
Statistics creation :
|
|
|
|
None
|
|
|
|
|
|
|
|
Statistics update :
|
|
|
|
None
|
|
|
|
|
|
|
|
Statistics deletion :
|
|
|
|
None
|
|
|
|
"""
|
2014-12-10 21:15:56 +01:00
|
|
|
|
2014-11-27 12:35:41 +01:00
|
|
|
class IWLADisplayTopDownloads(IPlugin):
|
|
|
|
def __init__(self, iwla):
|
|
|
|
super(IWLADisplayTopDownloads, self).__init__(iwla)
|
|
|
|
self.API_VERSION = 1
|
|
|
|
self.requires = ['IWLAPostAnalysisTopDownloads']
|
2014-12-11 21:13:24 +01:00
|
|
|
self.max_downloads = self.iwla.getConfValue('max_downloads_displayed', 0)
|
|
|
|
self.create_all_downloads = self.iwla.getConfValue('create_all_downloads_page', True)
|
2014-11-27 12:35:41 +01:00
|
|
|
|
|
|
|
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-12-11 21:13:24 +01:00
|
|
|
if self.create_all_downloads:
|
|
|
|
filename = 'top_downloads.html'
|
|
|
|
path = self.iwla.getCurDisplayPath(filename)
|
2014-12-17 20:31:59 +01:00
|
|
|
title = createCurTitle(self.iwla, u'All Downloads')
|
2014-11-27 12:35:41 +01:00
|
|
|
|
2014-12-11 21:13:24 +01:00
|
|
|
page = display.createPage(title, path, self.iwla.getConfValue('css_path', []))
|
2014-12-17 20:31:59 +01:00
|
|
|
table = display.createBlock(DisplayHTMLBlockTable, self.iwla._(u'All Downloads'), [self.iwla._(u'URI'), self.iwla._(u'Hit')])
|
2014-12-11 21:13:24 +01:00
|
|
|
table.setColsCSSClass(['', 'iwla_hit'])
|
2014-12-05 16:03:09 +01:00
|
|
|
|
2014-12-11 21:13:24 +01:00
|
|
|
total_entrance = [0]*2
|
|
|
|
new_list = self.max_downloads and top_downloads[:self.max_downloads] or top_downloads
|
|
|
|
for (uri, entrance) in new_list:
|
|
|
|
table.appendRow([generateHTMLLink(uri), entrance])
|
|
|
|
total_entrance[1] += entrance
|
2014-12-17 21:27:31 +01:00
|
|
|
if self.max_downloads:
|
|
|
|
others = 0
|
|
|
|
for (uri, entrance) in top_downloads[self.max_downloads:]:
|
|
|
|
others += entrance
|
|
|
|
table.appendRow([self.iwla._(u'Others'), others])
|
|
|
|
table.setCellCSSClass(table.getNbRows()-1, 0, 'iwla_others')
|
2014-12-11 21:13:24 +01:00
|
|
|
page.appendBlock(table)
|
2014-11-27 12:35:41 +01:00
|
|
|
|
2014-12-11 21:13:24 +01:00
|
|
|
display.addPage(page)
|
2014-11-27 19:38:41 +01:00
|
|
|
|
2014-12-17 20:31:59 +01:00
|
|
|
title = self.iwla._(u'Top Downloads')
|
2014-12-11 21:13:24 +01:00
|
|
|
if self.create_all_downloads:
|
2014-12-17 20:31:59 +01:00
|
|
|
link = '<a href=\'%s\'>%s</a>' % (filename, self.iwla._(u'All Downloads'))
|
2014-12-11 21:13:24 +01:00
|
|
|
title = '%s - %s' % (title, 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-17 20:31:59 +01:00
|
|
|
table = display.createBlock(DisplayHTMLBlockTable, title, [self.iwla._(u'URI'), self.iwla._(u'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]:
|
2014-12-17 20:31:59 +01:00
|
|
|
total_entrance[0] = self.iwla._(u'Others')
|
2014-12-05 16:03:09 +01:00
|
|
|
table.appendRow(total_entrance)
|
|
|
|
table.setCellCSSClass(table.getNbRows()-1, 0, 'iwla_others')
|
2014-11-27 19:38:41 +01:00
|
|
|
index.appendBlock(table)
|