mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-16 17:34:00 +00:00
27 lines
571 B
Rust
27 lines
571 B
Rust
use lemmy_utils::LemmyError;
|
|
use url::Url;
|
|
|
|
#[derive(Debug)]
|
|
struct DomainError;
|
|
|
|
impl std::fmt::Display for DomainError {
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
write!(f, "Domain mismatch")
|
|
}
|
|
}
|
|
|
|
impl std::error::Error for DomainError {}
|
|
|
|
pub fn verify_domains_match(a: &Url, b: &Url) -> Result<(), LemmyError> {
|
|
if a.domain() != b.domain() {
|
|
return Err(DomainError.into());
|
|
}
|
|
Ok(())
|
|
}
|
|
|
|
pub fn verify_urls_match(a: &Url, b: &Url) -> Result<(), LemmyError> {
|
|
if a != b {
|
|
return Err(DomainError.into());
|
|
}
|
|
Ok(())
|
|
}
|