utils.py 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. from bs4 import BeautifulSoup
  2. from django.core.validators import URLValidator
  3. from django.core.exceptions import ValidationError
  4. from django.utils.html import mark_safe
  5. from coderedcms.settings import cr_settings
  6. def get_protected_media_link(request, path, render_link=False):
  7. if render_link:
  8. return mark_safe("<a href='{0}{1}'>{0}{1}</a>".format(request.build_absolute_uri('/')[:-1], path))
  9. return "{0}{1}".format(request.build_absolute_uri('/')[:-1], path)
  10. def uri_validator(possible_uri):
  11. validate = URLValidator()
  12. try:
  13. validate(possible_uri)
  14. return True
  15. except ValidationError:
  16. return False
  17. def attempt_protected_media_value_conversion(request, value):
  18. new_value = value
  19. try:
  20. if value.startswith(cr_settings['PROTECTED_MEDIA_URL']):
  21. new_value = get_protected_media_link(request, value)
  22. except AttributeError:
  23. pass
  24. return new_value
  25. def fix_ical_datetime_format(dt_str):
  26. """
  27. ICAL generation gives timezones in the format of 2018-06-30T14:00:00-04:00.
  28. The Timezone offset -04:00 has a character not recognized by the timezone offset
  29. code (%z). The being the colon in -04:00. We need it to instead be -0400
  30. """
  31. if dt_str and ":" == dt_str[-3:-2]:
  32. dt_str = dt_str[:-3] + dt_str[-2:]
  33. return dt_str
  34. return dt_str
  35. def convert_to_amp(value):
  36. """
  37. Function that converts non-amp compliant html to valid amp html.
  38. value must be a string
  39. """
  40. soup = BeautifulSoup(value)
  41. #Replace img tags with amp-img
  42. try:
  43. img_tags = soup.find('img')
  44. img_tags.name = 'amp-img'
  45. except AttributeError:
  46. pass
  47. return soup.prettify()