No Description
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.

session.py 575B

12345678910111213141516171819
  1. # -*- coding: utf-8 -*-
  2. from lodel.plugin import LodelHook
  3. ## @brief checks if a session is valid or not, given its id
  4. # @param session_id str
  5. # @return bool
  6. @LodelHook('lodel2.check_session')
  7. def check_session(session_id):
  8. return True
  9. ## @brief gets the session data corresponding to a session id
  10. # @param session_id str
  11. # @return dict|None : returns a dict containing the session data if a session is active/valid, None if not
  12. def get_session(session_id):
  13. is_valid = LodelHook.call_hook('lodel2.check_session')
  14. session_data = dict()
  15. return session_data