mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-03 13:27:23 +00:00
816a86423b
* WIP extract RPCs into separate crate * fmt * Fix test * Remove unused deps * fix import * WIP: Fix up errors and most tests. Start extracintg some tests/code to rpc crate * MockRpcClient sync or async * MockRpcClient only async but better type inference * WIP MockRpcClient FnMuts and some test updates to use it * Get all but one test working with new MockRpcClient * WIP trying to debug failure * WIP, Tests mostly fixed, need to add back oen more * Get mock RPC tests working * fmt * fmt * Clippy and comment tweak * update CI to explicitly check subxt-rpc features * clippy * small tweaks after pass over * feature flag rename * update some docs * Fix some examples * fmt * Fix features flags to work with web/wasm32 * Fix unused dep warning * explicit targets in wasm CI * Add better crate level docs * fmt * Address review comments * Comment out flaky test for now and make more obvious how similar POlkadot and Substrate configs are * Not a doc comment * Remove unused imports
34 lines
1.1 KiB
Rust
34 lines
1.1 KiB
Rust
// Copyright 2019-2025 Parity Technologies (UK) Ltd.
|
|
// This file is dual-licensed as Apache-2.0 or GPL-3.0.
|
|
// see LICENSE for license details.
|
|
|
|
//! A couple of utility methods that we make use of.
|
|
|
|
use crate::Error;
|
|
use url::Url;
|
|
|
|
/// A URL is considered secure if it uses a secure scheme ("https" or "wss") or is referring to localhost.
|
|
///
|
|
/// Returns an error if the string could not be parsed into a URL.
|
|
pub fn url_is_secure(url: &str) -> Result<bool, Error> {
|
|
let url = Url::parse(url).map_err(|e| Error::Client(Box::new(e)))?;
|
|
|
|
let secure_scheme = url.scheme() == "https" || url.scheme() == "wss";
|
|
let is_localhost = url.host().is_some_and(|e| match e {
|
|
url::Host::Domain(e) => e == "localhost",
|
|
url::Host::Ipv4(e) => e.is_loopback(),
|
|
url::Host::Ipv6(e) => e.is_loopback(),
|
|
});
|
|
|
|
Ok(secure_scheme || is_localhost)
|
|
}
|
|
|
|
/// Validates, that the given Url is secure ("https" or "wss" scheme) or is referring to localhost.
|
|
pub fn validate_url_is_secure(url: &str) -> Result<(), Error> {
|
|
if !url_is_secure(url)? {
|
|
Err(Error::InsecureUrl(url.into()))
|
|
} else {
|
|
Ok(())
|
|
}
|
|
}
|