Le repo des sources pour le site web des JM2L
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

111 lines
5.0 KiB

  1. from pyramid.authentication import AuthTktAuthenticationPolicy
  2. from pyramid.authorization import ACLAuthorizationPolicy
  3. from pyramid.config import Configurator
  4. from pyramid.renderers import JSON, JSONP
  5. from pyramid.session import SignedCookieSessionFactory
  6. from sqlalchemy import engine_from_config
  7. from pyramid.renderers import render_to_response
  8. from .models import DBSession, get_user, get_sponsors, get_exposants
  9. from .security import EntryFactory, groupfinder
  10. from pyramid_mailer import mailer_factory_from_settings
  11. import locale
  12. def main(global_config, **settings):
  13. """ This function returns a Pyramid WSGI application.
  14. """
  15. locale.setlocale(locale.LC_ALL, "fr_FR.UTF-8")
  16. engine = engine_from_config(settings, 'sqlalchemy.')
  17. DBSession.configure(bind=engine)
  18. # Extract secrets from configuration file if any
  19. CookiesPasswd = settings.get('secret_Cookies', 'itsthefirstseekreet')
  20. AuthTktPasswd = settings.get('secret_AuthTkt', 'itsthesecondseekreet')
  21. my_session_factory = SignedCookieSessionFactory(CookiesPasswd)
  22. authentication_policy = AuthTktAuthenticationPolicy(AuthTktPasswd,
  23. callback=groupfinder, hashalg='sha512', debug=True)
  24. authorization_policy = ACLAuthorizationPolicy()
  25. config = Configurator(settings=settings,
  26. root_factory='.security.RootFactory',
  27. authentication_policy=authentication_policy,
  28. authorization_policy=authorization_policy
  29. )
  30. config.registry['mailer'] = mailer_factory_from_settings(settings)
  31. config.add_renderer('json', JSON(indent=4))
  32. config.add_renderer('jsonp', JSONP(param_name='callback'))
  33. config.set_session_factory(my_session_factory)
  34. config.add_request_method(get_user, 'user', reify=True)
  35. config.add_request_method(get_sponsors, 'sponsors', reify=False)
  36. config.add_request_method(get_exposants, 'exposants', reify=False)
  37. config.add_static_view('static', 'static', cache_max_age=3600)
  38. config.add_static_view('img', 'static/img', cache_max_age=3600)
  39. config.add_static_view('css', 'static/css', cache_max_age=3600)
  40. config.add_static_view('js', 'static/js', cache_max_age=3600)
  41. config.add_static_view('vendor', 'static/vendor', cache_max_age=3600)
  42. config.add_static_view('upload', 'upload', cache_max_age=3600)
  43. # ICal Routes
  44. config.add_route('progr_iCal', '/{year:\d+}/JM2L.ics')
  45. # JSON Routes
  46. config.add_route('users_json', '/json-users')
  47. config.add_route('tiers_json', '/json-tiers')
  48. config.add_route('progr_json', '/{year:\d+}/le-prog-json')
  49. config.add_route('timeline_json', '/{year:\d+}/timeline-json')
  50. # Session setting Routes
  51. config.add_route('year', '/year/{year:\d+}')
  52. # HTML Routes - Staff
  53. config.add_route('list_task', '/Staff')
  54. config.add_route('handle_pole', '/Staff/poles{sep:/*}{pole_id:(\d+)?}')
  55. config.add_route('handle_task', '/Staff/tasks{sep:/*}{task_id:(\d+)?}')
  56. config.add_route('action_task', '/Staff/{action:(\w+)}/{task_id:(\d+)}')
  57. # HTML Routes - Public
  58. config.add_route('home', '/')
  59. config.add_route('presse', '/{year:\d+}/dossier-de-presse')
  60. config.add_route('edit_presse', '/{year:\d+}/dossier-de-presse/edit')
  61. config.add_route('programme', '/{year:\d+}/le-programme')
  62. config.add_route('plan', 'nous-rejoindre')
  63. config.add_route('participer', 'participer-l-evenement')
  64. config.add_route('captcha', '/captcha')
  65. ## Events
  66. config.add_route('event', '/event/{year:\d+}/{event_id:([\w-]+)?}')
  67. config.add_route('link_event', '/MesJM2L/{year:\d+}/{intervention:\w+}/link')
  68. config.add_route('edit_event', '/MesJM2L/{year:\d+}/{intervention:\w+}{sep:/*}{event_id:([\w-]+)?}')
  69. ## Entities
  70. config.add_route('entities', '/entities') #{sep:/*}{Nature:\w+?}')
  71. config.add_route('add_entity', '/entity')
  72. config.add_route('show_entity', '/entity/{tiers_type:(\w+)}/{entity_id:([\w-]+)?}')
  73. config.add_route('edit_entity', '/entity/{tiers_type:(\w+)}/{entity_id:([\w-]+)}/edit')
  74. config.add_route('edit_entity_cat', '/categorie/entity')
  75. ## Users
  76. config.add_route('pict_user', '/user_picture')
  77. config.add_route('show_user', '/user/{user_slug:([\w-]+)?}')
  78. # HTML Routes - Logged
  79. #config.add_route('profil', 'MesJM2L')
  80. config.add_route('jm2l', '/MesJM2L')
  81. config.add_route('modal', '/{year:\d+}/modal/{modtype:\w+}/{id:(\d+)}')
  82. # Handle exchanges
  83. config.add_route('exchange', '/{year:\d+}/exchange/{modtype:\w+}/{id:(\d+)}/{action:\w+}')
  84. # Handle authentication
  85. config.add_route('register', '/register')
  86. config.add_route('auth', '/sign/{action}')
  87. config.add_route('bymail', '/sign/jm2l/{hash}')
  88. # Handle Multimedia and Uploads
  89. config.add_route('media_view', '/image/{media_table:\w+}/{uid:\d+}/{name:.+}')
  90. config.add_route('media_upload', '/uploader/{media_table:\w+}/{uid:\d+}/proceed{sep:/*}{name:.*}')
  91. config.scan()
  92. return config.make_wsgi_app()