aboutsummaryrefslogtreecommitdiff
path: root/wqflask/utility/elasticsearch_tools.py
AgeCommit message (Expand)Author
2018-03-20Refactor startup config for gunicorn and werkzeugPjotr Prins
2018-02-15Fixing authentication stuff so it uses parameters properly. Also no PYTHONPAT......it is now in the Guix build. Pjotr Prins
2018-02-13Update module to make it more testable...* Update functions to make them more testable. * Update code using updated functions. Muriithi Frederick Muriuki
2018-02-09Check elasticsearch at point of use...* Instead of checking for the state of elasticsearch at startup, check the state at the moment the user requests a feature that depends on elasticsearch. This reduces the chances that the user is dropped onto an exception page when elasticsearch server goes down. Muriithi Frederick Muriuki
2018-02-09Add check for elasticsearch...* Add some extra checks to ensure that elasticsearch is running before presenting the UI to the user. Muriithi Frederick Muriuki
2018-02-05Refactor common items to more generic methods....* Refactor code that can be used in more than one place to a more generic method/function that's called by other methods Muriithi Frederick Muriuki
2018-01-30Fail safely if elasticsearch is down or unconfigured...* If elasticsearch server is down, or the configuration variables are not provided at startup or in a configuration file, then do not allow the system to simply crash, but instead, inform the user that they cannot use the services that depend on elasticsearch to be running. Muriithi Frederick Muriuki
2018-01-19Delay after save for indexing...* Elasticsearch need a short delay after adding document for it to index the document for subsequent access. Muriithi Frederick Muriuki
2018-01-19Add save_user() function...* On successful login via OAuth2, save the details of the user in elasticsearch store, to avoid hitting the external provider for the basic details. Muriithi Frederick Muriuki
2018-01-12Add elasticsearch_tools module...* Collect variables and functions for using the elasticsearch system in a separate module. Muriithi Frederick Muriuki