Le repo des sources pour le site web des JM2L
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 

121 строка
5.7 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. config.add_static_view('resources', 'resources', cache_max_age=3600)
  44. # ICal Routes
  45. config.add_route('progr_iCal', '/{year:\d+}/JM2L.ics')
  46. # JSON Routes
  47. config.add_route('users_json', '/json-users')
  48. config.add_route('tiers_json', '/json-tiers')
  49. config.add_route('progr_json', '/{year:\d+}/le-prog-json')
  50. config.add_route('timeline_json', '/{year:\d+}/timeline-json')
  51. # Session setting Routes
  52. config.add_route('year', '/year/{year:\d+}')
  53. config.add_route('vote_logo', '/vote_logo/{num:\d+}')
  54. # HTML Routes - Staff
  55. config.add_route('list_task', '/Staff')
  56. config.add_route('handle_pole', '/Staff/poles{sep:/*}{pole_id:(\d+)?}')
  57. config.add_route('handle_task', '/Staff/tasks{sep:/*}{task_id:(\d+)?}')
  58. config.add_route('action_task', '/Staff/{action:(\w+)}/{task_id:(\d+)}')
  59. config.add_route('action_task_area', '/Staff/pole/{action:(\w+)}/{pole_id:(\d+)}')
  60. config.add_route('list_salles', '/ListSalles')
  61. config.add_route('handle_salle', '/Salles{sep:/*}{salle_id:(\d+)?}')
  62. config.add_route('handle_salle_phy', '/PhySalles{sep:/*}{salle_id:(\d+)?}')
  63. config.add_route('action_salle', '/Salles/{action:(\w+)}/{salle_id:(\d+)}')
  64. # HTML Routes - Public
  65. config.add_route('home', '/{year:(\d+/)?}')
  66. config.add_route('edit_index', '/{year:\d+}/edit')
  67. config.add_route('presse', '/{year:\d+}/dossier-de-presse')
  68. config.add_route('edit_presse', '/{year:\d+}/dossier-de-presse/edit')
  69. config.add_route('programme', '/{year:\d+}/le-programme')
  70. config.add_route('plan', 'nous-rejoindre')
  71. config.add_route('participer', 'participer-l-evenement')
  72. config.add_route('captcha', '/captcha')
  73. ## Events
  74. config.add_route('event', '/event/{year:\d+}/{event_id:([\w-]+)?}')
  75. config.add_route('link_event_user', '/MesJM2L/{year:\d+}/{intervention:[\s\w]+}/link_user')
  76. config.add_route('link_event_tiers', '/MesJM2L/{year:\d+}/{intervention:[\s\w]+}/link_tiers')
  77. config.add_route('edit_event', '/MesJM2L/{year:\d+}/{intervention:[\s\w]+}{sep:/*}{event_id:([\w-]+)?}')
  78. ## Entities
  79. config.add_route('entities', '/entities') #{sep:/*}{Nature:\w+?}')
  80. config.add_route('add_entity', '/entity')
  81. config.add_route('show_entity', '/entity/{tiers_type:(\w+)}/{entity_id:([\w-]+)?}')
  82. config.add_route('edit_entity', '/entity/{tiers_type:(\w+)}/{entity_id:([\w-]+)}/edit')
  83. config.add_route('edit_entity_cat', '/categorie/entity')
  84. ## Users
  85. config.add_route('pict_user', '/user_picture')
  86. config.add_route('show_user', '/user/{user_slug:([\w-]+)?}')
  87. # HTML Routes - Logged
  88. #config.add_route('profil', 'MesJM2L')
  89. config.add_route('jm2l', '/MesJM2L')
  90. config.add_route('sejour', '/MonSejour')
  91. config.add_route('modal', '/{year:\d+}/modal/{modtype:\w+}/{id:(\d+)}')
  92. # Handle exchanges
  93. config.add_route('exchange', '/{year:\d+}/exchange/{modtype:\w+}/{id:(\d+)}/{action:\w+}')
  94. # Handle authentication
  95. config.add_route('register', '/register')
  96. config.add_route('auth', '/sign/{action}')
  97. config.add_route('bymail', '/sign/jm2l/{hash}')
  98. # Handle Multimedia and Uploads
  99. config.add_route('media_view', '/image/{media_table:\w+}/{uid:\d+}/{name:.+}')
  100. config.add_route('media_upload', '/uploader/{media_table:\w+}/{uid:\d+}/proceed{sep:/*}{name:.*}')
  101. config.scan()
  102. return config.make_wsgi_app()