iwla/display.py

322 lines
10 KiB
Python
Raw Normal View History

2014-11-27 14:11:47 +01:00
import os
import codecs
2014-11-21 10:41:29 +01:00
class DisplayHTMLRaw(object):
2014-11-21 16:56:58 +01:00
def __init__(self, html=u''):
self.html = html
def setRawHTML(self, html):
self.html = html
2014-11-21 16:56:58 +01:00
def _buildHTML(self):
pass
def _build(self, f, html):
if html: f.write(html)
2014-11-21 16:56:58 +01:00
def build(self, f):
self._buildHTML()
self._build(f, self.html)
2014-11-21 16:56:58 +01:00
class DisplayHTMLBlock(DisplayHTMLRaw):
2014-11-25 16:59:29 +01:00
def __init__(self, title=''):
super(DisplayHTMLBlock, self).__init__(html='')
self.title = title
self.cssclass = u'iwla_block'
self.title_cssclass = u'iwla_block_title'
self.value_cssclass = u'iwla_block_value'
2014-11-25 16:59:29 +01:00
def getTitle(self):
return self.title
def setTitle(self, value):
self.title = unicode(value)
def setCSSClass(self, cssclass):
self.cssclass = unicode(cssclass)
def setTitleCSSClass(self, cssclass):
self.title_cssclass = unicode(cssclass)
def setValueCSSClass(self, cssclass):
self.value_cssclass = unicode(cssclass)
2014-11-25 16:59:29 +01:00
def _buildHTML(self):
html = u'<div class="%s">' % (self.cssclass)
if self.title:
html += u'<div class="%s">%s</div>' % (self.title_cssclass, self.title)
html += u'<div class="%s">%s</div>' % (self.value_cssclass, self.html)
html += u'</div>'
self.html = html
2014-11-25 16:59:29 +01:00
2014-11-21 16:56:58 +01:00
class DisplayHTMLBlockTable(DisplayHTMLBlock):
def __init__(self, title, cols):
super(DisplayHTMLBlockTable, self).__init__(title=title)
self.cols = listToStr(cols)
2014-11-21 16:56:58 +01:00
self.rows = []
self.cols_cssclasses = [u''] * len(cols)
self.rows_cssclasses = []
self.table_css = u'iwla_table'
2014-11-21 16:56:58 +01:00
def appendRow(self, row):
self.rows.append(listToStr(row))
self.rows_cssclasses.append([u''] * len(row))
2014-11-27 21:40:23 +01:00
def getCellValue(self, row, col):
if row < 0 or col < 0 or\
row >= len(self.rows) or col >= len(self.cols):
2014-11-27 21:40:23 +01:00
raise ValueError('Invalid indices %d,%d' % (row, col))
return self.rows[row][col]
2014-11-27 21:40:23 +01:00
def setCellValue(self, row, col, value):
if row < 0 or col < 0 or\
row >= len(self.rows) or col >= len(self.cols):
2014-11-27 21:40:23 +01:00
raise ValueError('Invalid indices %d,%d' % (row, col))
self.rows[row][col] = unicode(value)
2014-11-21 16:56:58 +01:00
2014-11-27 21:40:23 +01:00
def setCellCSSClass(self, row, col, value):
if row < 0 or col < 0 or\
row >= len(self.rows) or col >= len(self.cols):
2014-11-27 21:40:23 +01:00
raise ValueError('Invalid indices %d,%d' % (row, col))
self.rows_cssclasses[row][col] = unicode(value)
2014-11-27 21:40:23 +01:00
def getCellCSSClass(self, row, col):
if row < 0 or col < 0 or\
row >= len(self.rows) or col >= len(self.cols):
raise ValueError('Invalid indices %d,%d' % (row, col))
return self.rows_cssclasses[row][col]
def getColCSSClass(self, col):
if col < 0 or col >= len(self.cols):
raise ValueError('Invalid indice %d' % (col))
return self.cols_cssclasses[col]
def setRowCSSClass(self, row, value):
if row < 0 or row >= len(self.rows):
2014-11-27 21:40:23 +01:00
raise ValueError('Invalid indice %d' % (row))
self.rows_cssclasses[row] = [unicode(value)] * len(self.rows_cssclasses[row])
2014-11-27 21:40:23 +01:00
def setColCSSClass(self, col, value):
if col < 0 or col >= len(self.cols):
raise ValueError('Invalid indice %d' % (col))
self.cols_cssclasses[col] = unicode(value)
2014-11-27 21:40:23 +01:00
def setColsCSSClass(self, values):
if len(values) != len(self.cols):
raise ValueError('Invalid values size')
self.cols_cssclasses = [unicode(values)] * len(self.cols)
2014-11-27 21:40:23 +01:00
def _buildHTML(self):
style = u''
if self.table_css: style = u' class="%s"' % (self.table_css)
html = u'<table%s>' % (style)
if self.cols:
html += u'<tr>'
for i in range (0, len(self.cols)):
title = self.cols[i]
style = self.getColCSSClass(i)
if style: style = u' class="%s"' % (style)
html += u'<th%s>%s</th>' % (style, title)
html += u'</tr>'
for i in range(0, len(self.rows)):
row = self.rows[i]
html += u'<tr>'
for j in range(0, len(row)):
v = row[j]
style = self.getCellCSSClass(i, j)
if style: style = u' class="%s"' % (style)
html += u'<td%s>%s</td>' % (style, v)
html += u'</tr>'
html += u'</table>'
self.html += html
super(DisplayHTMLBlockTable, self)._buildHTML()
class DisplayHTMLBlockTableWithGraph(DisplayHTMLBlockTable):
2014-12-04 19:15:15 +01:00
def __init__(self, title, cols, short_titles=None, nb_valid_rows=0, graph_cols=None):
super(DisplayHTMLBlockTableWithGraph, self).__init__(title=title, cols=cols)
2014-12-03 21:58:55 +01:00
self.short_titles = short_titles or []
self.short_titles = listToStr(self.short_titles)
self.nb_valid_rows = nb_valid_rows
# TOFIX
self.icon_path = u'resources/icon'
# self.icon_path = self.iwla.getConfValue('icon_path', '/')
self.raw_rows = []
2014-12-02 21:16:27 +01:00
self.maxes = [0] * len(cols)
self.table_graph_css = u'iwla_graph_table'
self.td_img_css = u'iwla_td_img'
2014-12-04 19:15:15 +01:00
self.graph_cols = graph_cols or []
def appendRow(self, row):
self.raw_rows.append(row)
super(DisplayHTMLBlockTableWithGraph, self).appendRow(row)
def appendShortTitle(self, short_title):
self.short_titles.append(unicode(short_title))
def setShortTitle(self, short_titles):
self.short_titles = listToStr(short_titles)
def setNbValidRows(self, nb_valid_rows):
self.nb_valid_rows = nb_valid_rows
2014-11-21 16:56:58 +01:00
def _computeMax(self):
for i in range(0, self.nb_valid_rows):
row = self.raw_rows[i]
for j in range(1, len(row)):
if row[j] > self.maxes[j]:
self.maxes[j] = row[j]
def _getIconFromStyle(self, style):
if style.startswith(u'iwla_page'): icon = u'vp.png'
elif style.startswith(u'iwla_hit'): icon = u'vh.png'
elif style.startswith(u'iwla_bandwidth'): icon = u'vk.png'
elif style.startswith(u'iwla_visitor'): icon = u'vu.png'
elif style.startswith(u'iwla_visit'): icon = u'vv.png'
else: return ''
return u'%s/%s' % (self.icon_path, icon)
def _buildHTML(self):
self._computeMax()
style = u''
if self.table_graph_css: style = u' class="%s"' % (self.table_graph_css)
html = u'<table%s>' % (style)
html += u'<tr>'
for i in range(0, self.nb_valid_rows):
row = self.rows[i]
css = u''
if self.td_img_css: css=u' class="%s"' % (self.td_img_css)
html += u'<td%s>' % (css)
2014-12-04 19:15:15 +01:00
for j in self.graph_cols:
style = self.getColCSSClass(j)
icon = self._getIconFromStyle(style)
if not icon: continue
if style: style = u' class="%s"' % (style)
alt = u'%s: %s' % (row[j], self.cols[j])
if self.maxes[j]:
2014-12-02 21:53:20 +01:00
height = int((self.raw_rows[i][j] * 100) / self.maxes[j]) or 1
else:
2014-12-02 21:53:20 +01:00
height = 1
html += u'<img%s src="%s" height="%d" width="6" alt="%s" title="%s" />' % (style, icon, height, alt, alt)
html += u'</td>'
html += u'</tr>'
html += u'<tr>'
for i in range(0, len(self.short_titles)):
2014-12-02 21:16:27 +01:00
style = self.getCellCSSClass(i, 0)
if style: style = u' class="%s"' % (style)
html += u'<td%s>%s</td>' % (style, self.short_titles[i])
html += u'</tr>'
html += u'</table>'
self.html += html
super(DisplayHTMLBlockTableWithGraph, self)._buildHTML()
2014-11-21 16:56:58 +01:00
class DisplayHTMLPage(object):
2014-11-30 19:05:17 +01:00
def __init__(self, title, filename, css_path):
self.title = unicode(title)
2014-11-21 16:56:58 +01:00
self.filename = filename
self.blocks = []
self.css_path = listToStr(css_path)
2014-11-21 16:56:58 +01:00
def getFilename(self):
return self.filename;
def getBlock(self, title):
for b in self.blocks:
if title == b.getTitle():
return b
return None
2014-11-21 16:56:58 +01:00
def appendBlock(self, block):
self.blocks.append(block)
def build(self, root):
2014-11-27 14:11:47 +01:00
filename = root + self.filename
base = os.path.dirname(filename)
if not os.path.exists(base):
os.makedirs(base)
f = codecs.open(filename, 'w', 'utf-8')
f.write(u'<!DOCTYPE html>')
f.write(u'<html>')
f.write(u'<head>')
f.write(u'<meta http-equiv="Content-type" content="text/html; charset=UTF-8" />')
2014-11-30 19:05:17 +01:00
for css in self.css_path:
f.write(u'<link rel="stylesheet" href="%s"/>' % (css))
if self.title:
f.write(u'<title>%s</title>' % (self.title))
f.write(u'</head>')
2014-11-21 16:56:58 +01:00
for block in self.blocks:
block.build(f)
f.write(u'</body></html>')
2014-11-21 16:56:58 +01:00
f.close()
class DisplayHTMLBuild(object):
2014-11-30 19:05:17 +01:00
def __init__(self, iwla):
2014-11-21 16:56:58 +01:00
self.pages = []
2014-11-30 19:05:17 +01:00
self.iwla = iwla
2014-11-21 16:56:58 +01:00
def getPage(self, filename):
for page in self.pages:
if page.getFilename() == filename:
return page
return None
def addPage(self, page):
self.pages.append(page)
def build(self, root):
2014-11-30 19:05:17 +01:00
display_root = self.iwla.getConfValue('DISPLAY_ROOT', '')
for res_path in self.iwla.getResourcesPath():
target = os.path.abspath(res_path)
link_name = os.path.join(display_root, res_path)
if not os.path.exists(link_name):
os.symlink(target, link_name)
2014-11-21 16:56:58 +01:00
for page in self.pages:
page.build(root)
def bytesToStr(bytes):
suffixes = [u'', u' kB', u' MB', u' GB', u' TB']
for i in range(0, len(suffixes)):
if bytes < 1024: break
bytes /= 1024.0
if i:
return u'%.02f%s' % (bytes, suffixes[i])
else:
return u'%d%s' % (bytes, suffixes[i])
def _toStr(v):
if type(v) != unicode: return unicode(v)
else: return v
def listToStr(l): return map(lambda(v) : _toStr(v), l)
def generateHTMLLink(url, name=None, max_length=100, prefix=u'http'):
url = unicode(url)
if not name: name = unicode(url)
if not url.startswith(prefix): url = u'%s://%s' % (prefix, url)
return u'<a href="%s">%s</a>' % (url, name[:max_length])