diff options
| author | Tim Graham <timograham@gmail.com> | 2026-04-19 02:04:22 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-04-19 08:04:22 +0200 |
| commit | 179aa21b6dfeb9a0560a8c2bbfcf056301fc619f (patch) | |
| tree | f8d332194ace6d1e3958eb365310b82a869eb305 /django | |
| parent | aad47fe1bfc789f4b0ad0dc6373c945663e91f93 (diff) | |
Fixed #37024 -- Made SITE_ID system check validation use Site._meta.pk.
Diffstat (limited to 'django')
| -rw-r--r-- | django/contrib/sites/checks.py | 32 |
1 files changed, 24 insertions, 8 deletions
diff --git a/django/contrib/sites/checks.py b/django/contrib/sites/checks.py index 66e8551bed..bf7c9b7dce 100644 --- a/django/contrib/sites/checks.py +++ b/django/contrib/sites/checks.py @@ -1,14 +1,30 @@ -from types import NoneType - from django.conf import settings from django.core.checks import Error +from django.core.exceptions import ValidationError def check_site_id(app_configs, **kwargs): - if hasattr(settings, "SITE_ID") and not isinstance( - settings.SITE_ID, (NoneType, int) - ): - return [ - Error("The SITE_ID setting must be an integer", id="sites.E101"), - ] + # Inner import avoids AppRegistryNotReady + from django.contrib.sites.models import Site + + if hasattr(settings, "SITE_ID"): + try: + site_id = Site._meta.pk.to_python(settings.SITE_ID) + except ValidationError as exc: + return [ + Error( + f"The SITE_ID setting failed to validate: {exc}.", id="sites.E101" + ), + ] + else: + # to_python() might coerce a SITE_ID of the wrong type to the valid + # type, e.g. "1" to 1 for AutoField. + if site_id != settings.SITE_ID: + expected_type = type(site_id).__name__ + return [ + Error( + f"The SITE_ID setting must be of type {expected_type}.", + id="sites.E101", + ), + ] return [] |
