mirror of
https://github.com/neon-mmd/websurfx.git
synced 2024-11-24 15:08:22 -05:00
fix: modify cache key with engines used for search
This commit is contained in:
parent
ddb10f6584
commit
bfeb81270c
@ -123,11 +123,24 @@ async fn results(
|
|||||||
config.safe_search,
|
config.safe_search,
|
||||||
);
|
);
|
||||||
|
|
||||||
let cache_key = format!(
|
let mut cache_key = format!(
|
||||||
"http://{}:{}/search?q={}&page={}&safesearch={}",
|
"http://{}:{}/search?q={}&page={}&safesearch={}",
|
||||||
config.binding_ip, config.port, query, page, safe_search_level
|
config.binding_ip, config.port, query, page, safe_search_level
|
||||||
);
|
);
|
||||||
|
|
||||||
|
// Modify the cache key adding each enabled search engine to the string
|
||||||
|
if let Some(cookie_value) = &cookie_value {
|
||||||
|
let mut engines: Vec<String> = cookie_value
|
||||||
|
.engines
|
||||||
|
.iter()
|
||||||
|
.map(|s| String::from(*s))
|
||||||
|
.collect::<Vec<String>>();
|
||||||
|
|
||||||
|
// We sort the list of engine so the cache keys will match between users. The cookie's list of engines is unordered.
|
||||||
|
engines.sort();
|
||||||
|
cache_key = cache_key + &(engines.join(""));
|
||||||
|
}
|
||||||
|
|
||||||
// fetch the cached results json.
|
// fetch the cached results json.
|
||||||
let cached_results = cache.cached_results(&cache_key).await;
|
let cached_results = cache.cached_results(&cache_key).await;
|
||||||
// check if fetched cache results was indeed fetched or it was an error and if so
|
// check if fetched cache results was indeed fetched or it was an error and if so
|
||||||
|
Loading…
Reference in New Issue
Block a user