__init__.py 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. # GNU MediaGoblin -- federated, autonomous media hosting
  2. # Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS.
  3. #
  4. # This program is free software: you can redistribute it and/or modify
  5. # it under the terms of the GNU Affero General Public License as published by
  6. # the Free Software Foundation, either version 3 of the License, or
  7. # (at your option) any later version.
  8. #
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. # GNU Affero General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU Affero General Public License
  15. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. import logging
  17. import os
  18. import jinja2
  19. from mediagoblin.tools import pluginapi
  20. from mediagoblin.tools.response import render_to_response
  21. PLUGIN_DIR = os.path.dirname(__file__)
  22. _log = logging.getLogger(__name__)
  23. @jinja2.contextfunction
  24. def print_context(c):
  25. s = []
  26. for key, val in c.items():
  27. s.append('%s: %s' % (key, repr(val)))
  28. return '\n'.join(s)
  29. def flatpage_handler_builder(template):
  30. """Flatpage view generator
  31. Given a template, generates the controller function for handling that
  32. route.
  33. """
  34. def _flatpage_handler_builder(request):
  35. return render_to_response(
  36. request, 'flatpagesfile/%s' % template,
  37. {'request': request})
  38. return _flatpage_handler_builder
  39. def setup_plugin():
  40. config = pluginapi.get_config('mediagoblin.plugins.flatpagesfile')
  41. _log.info('Setting up flatpagesfile....')
  42. # Register the template path.
  43. pluginapi.register_template_path(os.path.join(PLUGIN_DIR, 'templates'))
  44. pages = config.items()
  45. routes = []
  46. for name, (url, template) in pages:
  47. name = 'flatpagesfile.%s' % name.strip()
  48. controller = flatpage_handler_builder(template)
  49. routes.append(
  50. (name, url, controller))
  51. pluginapi.register_routes(routes)
  52. _log.info('Done setting up flatpagesfile!')
  53. hooks = {
  54. 'setup': setup_plugin
  55. }