Includes: - Odoo 19 framework (odoo/) - 27 custom EnCoach addons (new_project/custom_addons/) - encoach_core, encoach_api, encoach_lms_api, encoach_adaptive_api - encoach_exam, encoach_taxonomy, encoach_adaptive, encoach_assignment - encoach_ai, encoach_ai_grading, encoach_ai_generation, encoach_ai_media - encoach_courseware, encoach_communication, encoach_subscription - encoach_notification, encoach_approval, encoach_branding - encoach_classroom, encoach_registration, encoach_stats - encoach_faq, encoach_ticket, encoach_training, encoach_resources - encoach_adaptive_ai, encoach_sis - 21 OpenEduCat Enterprise modules (new_project/enterprise-19/) - 14 OpenEduCat Community modules (new_project/openeducat_erp-19.0/) - Configuration: odoo.conf, requirements.txt, scripts - 200+ REST API endpoints with JWT authentication - SRS and test documentation Made-with: Cursor
38 lines
1.3 KiB
Python
38 lines
1.3 KiB
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
import re
|
|
|
|
from odoo import api, models
|
|
from odoo.http import request
|
|
|
|
SURVEY_URL_PREFIX_REGEX = re.compile(r"""
|
|
^
|
|
( # Optional locale part of the URL
|
|
/[a-z]{2,3} # Language (only 2- or 3-letter ISO 639 code)
|
|
# e.g. fr, kab
|
|
(_([A-Z]{2}|[0-9]{3}))? # [Optional] Region (2-letter ISO 3166-1 code or 3-digit UN M.49 code)
|
|
# e.g. fr_BE, es_419
|
|
(@[a-zA-Z]+)? # [Optional] Script (ISO 15924 code)
|
|
# e.g. sr@Cyrl
|
|
)?
|
|
/survey/
|
|
""", re.VERBOSE)
|
|
|
|
|
|
class IrHttp(models.AbstractModel):
|
|
_inherit = 'ir.http'
|
|
|
|
@api.model
|
|
def get_nearest_lang(self, lang_code):
|
|
if request and self._is_survey_frontend(request.httprequest.path):
|
|
return super(IrHttp, self.with_context(web_force_installed_langs=True)).get_nearest_lang(lang_code)
|
|
return super().get_nearest_lang(lang_code)
|
|
|
|
@classmethod
|
|
def _get_translation_frontend_modules_name(cls):
|
|
mods = super()._get_translation_frontend_modules_name()
|
|
return mods + ['survey']
|
|
|
|
@api.model
|
|
def _is_survey_frontend(self, path):
|
|
return bool(SURVEY_URL_PREFIX_REGEX.match(path))
|