You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.0 KiB
29 lines
1.0 KiB
# -*- coding: utf-8 -*-
|
|
# © 2015 Therp BV <http://therp.nl>
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
import StringIO
|
|
import base64
|
|
from odoo import http
|
|
from odoo.tools.misc import file_open
|
|
|
|
|
|
class WebFavicon(http.Controller):
|
|
|
|
@http.route('/web_favicon/favicon', type='http', auth="none")
|
|
def icon(self):
|
|
request = http.request
|
|
if 'uid' in request.env.context:
|
|
user = request.env['res.users'].browse(request.env.context['uid'])
|
|
company = user.sudo(user.id).company_id
|
|
else:
|
|
company = request.env['res.company'].search([], limit=1)
|
|
favicon = company.favicon_backend
|
|
favicon_mimetype = company.favicon_backend_mimetype
|
|
if not favicon:
|
|
favicon = file_open('web/static/src/img/favicon.ico')
|
|
favicon_mimetype = 'image/x-icon'
|
|
else:
|
|
favicon = StringIO.StringIO(base64.b64decode(favicon))
|
|
return request.make_response(
|
|
favicon.read(), [('Content-Type', favicon_mimetype)])
|