cc.py 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. # Support for the Creative Commons licensing extensions
  2. # Copyright 2010-2023 Kurt McKee <contactme@kurtmckee.org>
  3. # Copyright 2002-2008 Mark Pilgrim
  4. # All rights reserved.
  5. #
  6. # This file is a part of feedparser.
  7. #
  8. # Redistribution and use in source and binary forms, with or without
  9. # modification, are permitted provided that the following conditions are met:
  10. #
  11. # * Redistributions of source code must retain the above copyright notice,
  12. # this list of conditions and the following disclaimer.
  13. # * Redistributions in binary form must reproduce the above copyright notice,
  14. # this list of conditions and the following disclaimer in the documentation
  15. # and/or other materials provided with the distribution.
  16. #
  17. # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 'AS IS'
  18. # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  19. # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  20. # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  21. # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  22. # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  23. # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  24. # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  25. # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  26. # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  27. # POSSIBILITY OF SUCH DAMAGE.
  28. from ..util import FeedParserDict
  29. class Namespace(object):
  30. supported_namespaces = {
  31. # RDF-based namespace
  32. 'http://creativecommons.org/ns#license': 'cc',
  33. # Old RDF-based namespace
  34. 'http://web.resource.org/cc/': 'cc',
  35. # RSS-based namespace
  36. 'http://cyber.law.harvard.edu/rss/creativeCommonsRssModule.html': 'creativecommons',
  37. # Old RSS-based namespace
  38. 'http://backend.userland.com/creativeCommonsRssModule': 'creativecommons',
  39. }
  40. def _start_cc_license(self, attrs_d):
  41. context = self._get_context()
  42. value = self._get_attribute(attrs_d, 'rdf:resource')
  43. attrs_d = FeedParserDict()
  44. attrs_d['rel'] = 'license'
  45. if value:
  46. attrs_d['href'] = value
  47. context.setdefault('links', []).append(attrs_d)
  48. def _start_creativecommons_license(self, attrs_d):
  49. self.push('license', 1)
  50. _start_creativeCommons_license = _start_creativecommons_license
  51. def _end_creativecommons_license(self):
  52. value = self.pop('license')
  53. context = self._get_context()
  54. attrs_d = FeedParserDict()
  55. attrs_d['rel'] = 'license'
  56. if value:
  57. attrs_d['href'] = value
  58. context.setdefault('links', []).append(attrs_d)
  59. del context['license']
  60. _end_creativeCommons_license = _end_creativecommons_license