mirror of
https://gitlab.computer.surgery/matrix/grapevine.git
synced 2025-12-17 07:41:23 +01:00
enable string_slice lint
Also swaps out vendored HTML-escaping code for a dependency that I imagine has decent testing considering all of its reverse depedencies.
This commit is contained in:
parent
9abe4799db
commit
844b32f097
7 changed files with 35 additions and 73 deletions
16
Cargo.lock
generated
16
Cargo.lock
generated
|
|
@ -800,6 +800,7 @@ dependencies = [
|
||||||
"figment",
|
"figment",
|
||||||
"futures-util",
|
"futures-util",
|
||||||
"hmac",
|
"hmac",
|
||||||
|
"html-escape",
|
||||||
"http",
|
"http",
|
||||||
"hyper",
|
"hyper",
|
||||||
"image",
|
"image",
|
||||||
|
|
@ -937,6 +938,15 @@ dependencies = [
|
||||||
"winapi",
|
"winapi",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "html-escape"
|
||||||
|
version = "0.2.13"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "6d1ad449764d627e22bfd7cd5e8868264fc9236e07c752972b4080cd351cb476"
|
||||||
|
dependencies = [
|
||||||
|
"utf8-width",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "http"
|
name = "http"
|
||||||
version = "0.2.12"
|
version = "0.2.12"
|
||||||
|
|
@ -3045,6 +3055,12 @@ dependencies = [
|
||||||
"percent-encoding",
|
"percent-encoding",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "utf8-width"
|
||||||
|
version = "0.1.7"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "86bd8d4e895da8537e5315b8254664e6b769c4ff3db18321b297a1e7004392e3"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "uuid"
|
name = "uuid"
|
||||||
version = "1.7.0"
|
version = "1.7.0"
|
||||||
|
|
|
||||||
|
|
@ -52,6 +52,7 @@ semicolon_inside_block = "warn"
|
||||||
str_to_string = "warn"
|
str_to_string = "warn"
|
||||||
string_add = "warn"
|
string_add = "warn"
|
||||||
string_lit_chars_any = "warn"
|
string_lit_chars_any = "warn"
|
||||||
|
string_slice = "warn"
|
||||||
string_to_string = "warn"
|
string_to_string = "warn"
|
||||||
suspicious_xor_used_as_pow = "warn"
|
suspicious_xor_used_as_pow = "warn"
|
||||||
tests_outside_test_module = "warn"
|
tests_outside_test_module = "warn"
|
||||||
|
|
@ -87,6 +88,7 @@ clap = { version = "4.3.0", default-features = false, features = ["std", "derive
|
||||||
figment = { version = "0.10.8", features = ["env", "toml"] }
|
figment = { version = "0.10.8", features = ["env", "toml"] }
|
||||||
futures-util = { version = "0.3.28", default-features = false }
|
futures-util = { version = "0.3.28", default-features = false }
|
||||||
hmac = "0.12.1"
|
hmac = "0.12.1"
|
||||||
|
html-escape = "0.2.13"
|
||||||
http = "0.2.9"
|
http = "0.2.9"
|
||||||
hyper = "0.14.26"
|
hyper = "0.14.26"
|
||||||
image = { version = "0.24.6", default-features = false, features = ["jpeg", "png", "gif"] }
|
image = { version = "0.24.6", default-features = false, features = ["jpeg", "png", "gif"] }
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
use crate::{services, utils::HtmlEscape, Error, Result, Ruma};
|
use crate::{services, Error, Result, Ruma};
|
||||||
use ruma::{
|
use ruma::{
|
||||||
api::client::{error::ErrorKind, room::report_content},
|
api::client::{error::ErrorKind, room::report_content},
|
||||||
events::room::message,
|
events::room::message,
|
||||||
|
|
@ -61,7 +61,7 @@ pub(crate) async fn report_event_route(
|
||||||
pdu.room_id,
|
pdu.room_id,
|
||||||
pdu.sender,
|
pdu.sender,
|
||||||
body.score,
|
body.score,
|
||||||
HtmlEscape(body.reason.as_deref().unwrap_or(""))
|
html_escape::encode_safe(body.reason.as_deref().unwrap_or(""))
|
||||||
),
|
),
|
||||||
));
|
));
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -107,7 +107,7 @@ impl FedDest {
|
||||||
fn port(&self) -> Option<u16> {
|
fn port(&self) -> Option<u16> {
|
||||||
match &self {
|
match &self {
|
||||||
Self::Literal(addr) => Some(addr.port()),
|
Self::Literal(addr) => Some(addr.port()),
|
||||||
Self::Named(_, port) => port[1..].parse().ok(),
|
Self::Named(_, port) => port.strip_prefix(':').and_then(|x| x.parse().ok()),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -124,13 +124,10 @@ impl std::str::FromStr for WildCardedDomain {
|
||||||
type Err = std::convert::Infallible;
|
type Err = std::convert::Infallible;
|
||||||
fn from_str(s: &str) -> Result<Self, Self::Err> {
|
fn from_str(s: &str) -> Result<Self, Self::Err> {
|
||||||
// maybe do some domain validation?
|
// maybe do some domain validation?
|
||||||
Ok(if s.starts_with("*.") {
|
Ok(s.strip_prefix("*.")
|
||||||
WildCardedDomain::WildCarded(s[1..].to_owned())
|
.map(|x| WildCardedDomain::WildCarded(x.to_owned()))
|
||||||
} else if s == "*" {
|
.or_else(|| (s == "*").then(|| WildCardedDomain::WildCarded(String::new())))
|
||||||
WildCardedDomain::WildCarded("".to_owned())
|
.unwrap_or_else(|| WildCardedDomain::Exact(s.to_owned())))
|
||||||
} else {
|
|
||||||
WildCardedDomain::Exact(s.to_owned())
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
impl<'de> Deserialize<'de> for WildCardedDomain {
|
impl<'de> Deserialize<'de> for WildCardedDomain {
|
||||||
|
|
|
||||||
|
|
@ -33,9 +33,7 @@ use tracing::warn;
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
api::client_server::{leave_all_rooms, AUTO_GEN_PASSWORD_LENGTH},
|
api::client_server::{leave_all_rooms, AUTO_GEN_PASSWORD_LENGTH},
|
||||||
services,
|
services, utils, Error, PduEvent, Result,
|
||||||
utils::{self, HtmlEscape},
|
|
||||||
Error, PduEvent, Result,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
use super::pdu::PduBuilder;
|
use super::pdu::PduBuilder;
|
||||||
|
|
@ -516,7 +514,7 @@ impl Service {
|
||||||
} else {
|
} else {
|
||||||
"PDU was accepted"
|
"PDU was accepted"
|
||||||
},
|
},
|
||||||
HtmlEscape(&json_text)
|
html_escape::encode_safe(&json_text)
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
@ -897,29 +895,15 @@ impl Service {
|
||||||
// Look for a `[commandbody]()` tag. If it exists, use all lines below it that
|
// Look for a `[commandbody]()` tag. If it exists, use all lines below it that
|
||||||
// start with a `#` in the USAGE section.
|
// start with a `#` in the USAGE section.
|
||||||
let mut text_lines: Vec<&str> = text.lines().collect();
|
let mut text_lines: Vec<&str> = text.lines().collect();
|
||||||
let mut command_body = String::new();
|
let command_body = text_lines
|
||||||
|
|
||||||
if let Some(line_index) = text_lines
|
|
||||||
.iter()
|
.iter()
|
||||||
.position(|line| *line == "[commandbody]()")
|
.skip_while(|x| x != &&"[commandbody]()")
|
||||||
{
|
.skip(1)
|
||||||
text_lines.remove(line_index);
|
.map_while(|&x| x.strip_prefix('#'))
|
||||||
|
.map(|x| x.strip_prefix(' ').unwrap_or(x))
|
||||||
while text_lines
|
.collect::<String>();
|
||||||
.get(line_index)
|
|
||||||
.map(|line| line.starts_with('#'))
|
|
||||||
.unwrap_or(false)
|
|
||||||
{
|
|
||||||
command_body += if text_lines[line_index].starts_with("# ") {
|
|
||||||
&text_lines[line_index][2..]
|
|
||||||
} else {
|
|
||||||
&text_lines[line_index][1..]
|
|
||||||
};
|
|
||||||
command_body += "[nobr]\n";
|
|
||||||
text_lines.remove(line_index);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
text_lines.retain(|x| x != &"[commandbody]()");
|
||||||
let text = text_lines.join("\n");
|
let text = text_lines.join("\n");
|
||||||
|
|
||||||
// Improve the usage section
|
// Improve the usage section
|
||||||
|
|
|
||||||
39
src/utils.rs
39
src/utils.rs
|
|
@ -6,7 +6,7 @@ use rand::prelude::*;
|
||||||
use ring::digest;
|
use ring::digest;
|
||||||
use ruma::{canonical_json::try_from_json_map, CanonicalJsonError, CanonicalJsonObject};
|
use ruma::{canonical_json::try_from_json_map, CanonicalJsonError, CanonicalJsonObject};
|
||||||
use std::{
|
use std::{
|
||||||
cmp, fmt,
|
cmp,
|
||||||
str::FromStr,
|
str::FromStr,
|
||||||
time::{SystemTime, UNIX_EPOCH},
|
time::{SystemTime, UNIX_EPOCH},
|
||||||
};
|
};
|
||||||
|
|
@ -149,40 +149,3 @@ pub(crate) fn deserialize_from_str<
|
||||||
}
|
}
|
||||||
deserializer.deserialize_str(Visitor(std::marker::PhantomData))
|
deserializer.deserialize_str(Visitor(std::marker::PhantomData))
|
||||||
}
|
}
|
||||||
|
|
||||||
// Copied from librustdoc:
|
|
||||||
// https://github.com/rust-lang/rust/blob/cbaeec14f90b59a91a6b0f17fc046c66fa811892/src/librustdoc/html/escape.rs
|
|
||||||
|
|
||||||
/// Wrapper struct which will emit the HTML-escaped version of the contained
|
|
||||||
/// string when passed to a format string.
|
|
||||||
pub(crate) struct HtmlEscape<'a>(pub(crate) &'a str);
|
|
||||||
|
|
||||||
impl fmt::Display for HtmlEscape<'_> {
|
|
||||||
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
||||||
// Because the internet is always right, turns out there's not that many
|
|
||||||
// characters to escape: http://stackoverflow.com/questions/7381974
|
|
||||||
let HtmlEscape(s) = *self;
|
|
||||||
let pile_o_bits = s;
|
|
||||||
let mut last = 0;
|
|
||||||
for (i, ch) in s.char_indices() {
|
|
||||||
let s = match ch {
|
|
||||||
'>' => ">",
|
|
||||||
'<' => "<",
|
|
||||||
'&' => "&",
|
|
||||||
'\'' => "'",
|
|
||||||
'"' => """,
|
|
||||||
_ => continue,
|
|
||||||
};
|
|
||||||
fmt.write_str(&pile_o_bits[last..i])?;
|
|
||||||
fmt.write_str(s)?;
|
|
||||||
// NOTE: we only expect single byte characters here - which is fine as long as we
|
|
||||||
// only match single byte characters
|
|
||||||
last = i + 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
if last < s.len() {
|
|
||||||
fmt.write_str(&pile_o_bits[last..])?;
|
|
||||||
}
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue