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.

__init__.py 755B

123456789101112131415161718192021222324
  1. from .utils import connect, get_connection_args
  2. __loader__ = "main.py"
  3. __confspec__ = "confspec.py"
  4. __author__ = "Lodel2 dev team"
  5. __fullname__ = "MongoDB plugin"
  6. ## @brief Activates the plugin
  7. #
  8. # @note It is possible there to add some specific actions (like checks, etc ...) for the plugin
  9. #
  10. # @return bool|str : True if all the checks are OK, an error message if not
  11. def _activate():
  12. default_connection_args = get_connection_args()
  13. connection_check = connect(
  14. default_connection_args['host'],
  15. default_connection_args['port'],
  16. default_connection_args['db_name'],
  17. default_connection_args['username'],
  18. default_connection_args['password'])
  19. if not connection_check:
  20. return False
  21. return True