]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blame - webapp/handlers_iuse.py
fireinfo: Shorten an other AMD APU processor
[people/shoehn/ipfire.org.git] / webapp / handlers_iuse.py
CommitLineData
c37ec602
MT
1#!/usr/bin/python
2
abc3bb31 3import logging
e8478c5e
MT
4import os
5import random
c37ec602
MT
6import tornado.web
7
8from handlers_base import *
9import backend
10
11class IUseImage(BaseHandler):
30bb04e2 12 def write_error(self, status_code, **kwargs):
e8478c5e
MT
13 """
14 Select a random image from the errors directory
15 and return the content.
16 """
17 self.set_header("Content-Type", "image/png")
18
19 template_path = self.application.settings.get("template_path", "")
20 template_path = os.path.join(template_path, "i-use", "errors")
21
22 images = os.listdir(template_path)
23 if images:
24 image = random.choice(images)
25 image = os.path.join(template_path, image)
26
30bb04e2 27 imgdata = None
e8478c5e 28 with open(image, "rb") as f:
30bb04e2
MT
29 imgdata = f.read()
30
31 self.finish(imgdata)
e8478c5e 32
c37ec602 33 def get(self, profile_id, image_id):
abc3bb31 34 image = None
6ec867f2
MT
35
36 when = self.get_argument_date("when", None)
37
b3250465
MT
38 # Try to get the image from memcache. If we have a cache miss we
39 # build a new one.
abc3bb31 40 mem_id = "iuse-%s-%s-%s" % (profile_id, image_id, self.locale.code)
6ec867f2
MT
41 if when:
42 mem_id += "-%s" % when.isoformat()
abc3bb31
MT
43
44 cache = self.get_argument("cache", "true")
45 if cache == "true":
46 image = self.memcached.get(mem_id)
47
48 if image:
49 logging.debug("Got image from cache for profile: %s" % profile_id)
50 else:
51 logging.info("Rendering new image for profile: %s" % profile_id)
c37ec602 52
b3250465
MT
53 image_cls = self.iuse.get_imagetype(image_id)
54 if not image_cls:
55 raise tornado.web.HTTPError(404, "Image class is unknown: %s" % image_id)
c37ec602 56
6ec867f2 57 profile = self.fireinfo.get_profile(profile_id, when=when)
b3250465
MT
58 if not profile:
59 raise tornado.web.HTTPError(404, "Profile '%s' was not found." % profile_id)
60
61 # Render the image
9068dba1 62 image = image_cls(self.backend, self, profile).to_string()
c37ec602 63
66862195
MT
64 # Save the image to the memcache for 60 minutes
65 self.memcached.set(mem_id, image, 3600)
c37ec602 66
192f0bdf 67 self.set_header("Content-Type", "image/png")
b3250465 68 self.write(image)
c37ec602 69