#36775: Raise ImproperlyConfigured when Feed.link is missing instead of failing
with AttributeError
-------------------------------------+-------------------------------------
     Reporter:  yureiblack           |                     Type:  Bug
       Status:  new                  |                Component:
                                     |  contrib.syndication
      Version:  dev                  |                 Severity:  Normal
     Keywords:                       |             Triage Stage:
                                     |  Unreviewed
    Has patch:  1                    |      Needs documentation:  0
  Needs tests:  0                    |  Patch needs improvement:  0
Easy pickings:  0                    |                    UI/UX:  0
-------------------------------------+-------------------------------------
 Currently, the `Feed.get_feed()` method retrieves the feed's `link` using:

     link = self._get_dynamic_attr("link", obj)

 If a Feed subclass does not define a `link` attribute, `link` becomes
 `None`.
 This results in an unhelpful exception when Django later calls:

     link = add_domain(current_site.domain, link, request.is_secure())

 Since `add_domain()` calls `url.startswith()`, a missing `link`
 causes:

     AttributeError: 'NoneType' object has no attribute 'startswith'

 This error does not clearly indicate the actual problem.

 According to Django documentation, every `Feed` class must define
 `link`. Therefore, it should raise a more appropriate and explicit
 exception.

 The attached PR adds the following check:

     if link is None:
         raise ImproperlyConfigured(
             "Feed class must define a 'link' attribute."
         )

 This results in a clearer error message and avoids unexpected crashes.

 PR: https://github.com/django/django/pull/20371
-- 
Ticket URL: <https://code.djangoproject.com/ticket/36775>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion visit 
https://groups.google.com/d/msgid/django-updates/0107019aeadbfaa2-13036385-4a49-4a1f-a62d-4727435b83e5-000000%40eu-central-1.amazonses.com.

Reply via email to