Source code for shuup.xtheme.middleware

# -*- coding: utf-8 -*-
# This file is part of Shuup.
#
# Copyright (c) 2012-2021, Shuup Commerce Inc. All rights reserved.
#
# This source code is licensed under the OSL-3.0 license found in the
# LICENSE file in the root directory of this source tree.
import logging
from django.utils.translation import ugettext_lazy as _

from shuup.core.shop_provider import get_shop
from shuup.utils.django_compat import MiddlewareMixin
from shuup.xtheme import get_current_theme

log = logging.getLogger(__name__)


[docs]class XthemeMiddleware(MiddlewareMixin): """ Handle Shuup specific tasks for each request and response. This middleware requires the ShuupMiddleware or some other that can set the current shop in the request """
[docs] def process_request(self, request): shop = getattr(request, "shop", get_shop(request)) theme = get_current_theme(shop) if theme: request.theme = theme theme.set_current() else: log.error((_("Shop '{}' has no active theme")).format(shop))