aboutsummaryrefslogtreecommitdiff
path: root/gn2/wqflask
AgeCommit message (Collapse)Author
2024-08-07Merge pull request #855 from jnduli/gn2_profiles_pagesMuriithi Frederick Muriuki
Gn2 Fix profiles pages dashboard
2024-08-07chore: remove passing bearer token to end userJohn Nduli
2024-08-07fix: remove bearer token from html and javascriptJohn Nduli
2024-08-06fix: use bearer token to query auth serverJohn Nduli
2024-08-06fix: pass in proper list of priviledge_idsJohn Nduli
2024-08-05Fix typo.Frederick Muriuki Muriithi
2024-08-05minor code formatting.Frederick Muriuki Muriithi
2024-08-05Update JWKs endpoint documentation.Frederick Muriuki Muriithi
2024-08-05Fix URLFrederick Muriuki Muriithi
2024-08-05Override 'client_secret_post' auth with a JSON equivalentFrederick Muriuki Muriithi
In order to use JSON consistently across the board, we make even the authentication method use JSON rather than FORMDATA.
2024-08-05Move check for target_trait mb/chr into the if statement for ProbeSet/Geno ↵zsloan
datasets Previously it would throw an error for Publish datasets, since they don't have a location
2024-08-02Consistently use JSON for all endpoints.Frederick Muriuki Muriithi
2024-08-01Remove obsolete configurations.Frederick Muriuki Muriithi
2024-08-01bug: add missing `count_per_page` variable.Frederick Muriuki Muriithi
2024-08-01Use auto-created and auto-rotated JSON Web KeysFrederick Muriuki Muriithi
Use auto-created JWKs for better security.
2024-08-01Use JWKs from auth server public endpointFrederick Muriuki Muriithi
* Fetch keys from auth server * Validate token is signed with one of the keys from server * Ensure refreshing of token is still synchronised
2024-08-01Add module to help with rotation of JSON Web Keys.Frederick Muriuki Muriithi
2024-08-01Fix correlation bug caused by a result trait not having a locationzsloan
2024-08-01Fix misnamed variable that caused correlation location filter to not workzsloan
2024-07-31Fix collections import by allowing GET method for collections/add endpointzsloan
2024-07-31Improve loggingFrederick Muriuki Muriithi
Add more logging information to help with tracking and fixing bugs.
2024-07-31Synchronise token refreshesFrederick Muriuki Muriithi
The application can be run in a multi-threaded server, leading to a situation where the multiple threads attempt to get a new JWT using the exact same refresh token. This synchronises the various threads ensuring only a single thread is able to retrieve the new JWT that all the rest of the threads then use.
2024-07-30Fix GN3 URIs for case attribute editingzsloan
Also improve error logging somewhat (but still need to properly display the error in a template)
2024-07-29Include trait and dataset name in hmac passed to search results page for ↵zsloan
non-xapian results Previously it only had the hmac, which caused adding to a collection to not work for such searches
2024-07-27Include CaseAttribute.InbredSetId in the query that fetches case attributeszsloan
Previously issues could occur if a difference InbredSet had the same CaseAtribute Id
2024-07-26Use JSON rather than X-Form-URL-encoded data with auth server.Frederick Muriuki Muriithi
2024-07-22Provide PoC public-jwks endpoint.Frederick Muriuki Muriithi
2024-07-20Stop using the escape function for descriptions on the search result pagezsloan
Apparently escape is deprecated, and it's also introducing some issues. We may encounter other descriptions with problems as a result of this, but they should be fixed in a different way.
2024-07-20Also address the issue with trait IDs being detected as substrings for ↵zsloan
searches including the group codes, like BXD_27538
2024-07-20Change text for Block filtering options to Filter to more accurately reflect ↵zsloan
their current use
2024-07-20This prevents phenotype trait IDs (numeric search terms that are 5 digits in ↵zsloan
length) from being searched as a partial term (since some phenotype IDs were showing up in PubMed_IDs and corrupting search results)
2024-07-17Fix premature session expirationFrederick Muriuki Muriithi
With the change to JWTs the time-to-live for each token is severely curtailed to help with security in case of a token theft. We, therefore, can no longer rely on the TTL for session expiration, rather, we will rely of the token-refresh mechanism to expire a token after a long while.
2024-07-17Remove redundant import.Frederick Muriuki Muriithi
2024-07-17Remove token and user detail handling from @app.before_requestFrederick Muriuki Muriithi
The token and user details information is handled in the `gn2.wqflask.oauth2.session`. Other parts of the system should make use of that. It also helps avoid some weird "action-at-a-distance" interactions - this forces the code to request what it needs when it needs it and not rely on some global variables.
2024-07-17Reorganise code to do ALL configs at the top and then loggingFrederick Muriuki Muriithi
In order to ensure that logging works as expected, make sure it is set up after all settings are in place.
2024-07-12Add two new links to tutorials pagezsloan
2024-07-12Add Peak Chr and Peak Mb columns to ProbeSet export in the GN2 REST APIzsloan
2024-07-05fix: show no_data instead of Loading when there is no results from searchJohn Nduli
2024-07-05fix: correct javascript if statementJohn Nduli
2024-07-05fix: datatables error when search returns empty resultJohn Nduli
2024-07-05fix: cleaner handling for gsearch errorsJohn Nduli
2024-07-03Add link to GeneCup to tool buttonszsloan
This also includes a function for converting a list of traits/datasets to symbols, which was added to trait.py
2024-07-01Link to global search syntax document as markdown on githubzsloan
2024-06-27Put SQL search code into function, and default to that function if the ↵zsloan
Xapian search returns no results or throws an error (so search will still work if GN3 is down)
2024-06-27Automatically decide whether to use Xapian or SQL (uses Xapian if possible) ↵zsloan
+ remove separate search button Change logic so that SQL is used for non-term Publish searches, since searches for phenotype trait IDs currently don't work in Xapian
2024-06-27Increase MAX_SEARCH_RESULTS to 50000zsloan
2024-06-27Fix LRS/LOD Xapian searches when there are 5 terms (where position range is ↵zsloan
included)
2024-06-27Fix some issues with handling Xapian search outputzsloan
- Description trimming is now handled in the python code - HMAC generation function is changed to be the same as the one used by global search - Search terms that currently don't support Xapian searches are now 'routed' to the SQL search
2024-06-27Set default value for Mean and Additive Effectzsloan
2024-06-27Add default value for location and symbolzsloan
Adding these in the DataTables column definitions is convenient because it means they don't need to be dealt with in the Python code