mirror of
https://github.com/neon-mmd/websurfx.git
synced 2024-11-22 05:58:21 -05:00
🧹 chore: make github actions happy (#205)
This commit is contained in:
parent
1a222217c4
commit
c60fdb8366
@ -34,7 +34,7 @@ pub struct Config {
|
|||||||
pub threads: u8,
|
pub threads: u8,
|
||||||
/// It stores configuration options for the ratelimiting middleware.
|
/// It stores configuration options for the ratelimiting middleware.
|
||||||
pub rate_limiter: RateLimiter,
|
pub rate_limiter: RateLimiter,
|
||||||
/// It stores the level of safe search to be used for restricting content in the
|
/// It stores the level of safe search to be used for restricting content in the
|
||||||
/// search results.
|
/// search results.
|
||||||
pub safe_search: u8,
|
pub safe_search: u8,
|
||||||
}
|
}
|
||||||
|
@ -33,6 +33,8 @@ struct SearchParams {
|
|||||||
/// It stores the search parameter `page` (or pageno in simple words)
|
/// It stores the search parameter `page` (or pageno in simple words)
|
||||||
/// of the search url.
|
/// of the search url.
|
||||||
page: Option<u32>,
|
page: Option<u32>,
|
||||||
|
/// It stores the search parameter `safesearch` (or safe search level in simple words) of the
|
||||||
|
/// search url.
|
||||||
safesearch: Option<u8>,
|
safesearch: Option<u8>,
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -275,6 +277,8 @@ async fn results(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// A helper function which checks whether the search query contains any keywords which should be
|
||||||
|
/// disallowed/allowed based on the regex based rules present in the blocklist and allowlist files.
|
||||||
fn is_match_from_filter_list(
|
fn is_match_from_filter_list(
|
||||||
file_path: &str,
|
file_path: &str,
|
||||||
query: &str,
|
query: &str,
|
||||||
|
Loading…
Reference in New Issue
Block a user