fix needless pass by value

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk 2024-06-28 23:23:59 +00:00
parent 875d9e8b07
commit 57acc4f655
15 changed files with 40 additions and 42 deletions

View file

@ -15,7 +15,7 @@ pub(super) async fn delete(
if let Some(mxc) = mxc { if let Some(mxc) = mxc {
debug!("Got MXC URL: {mxc}"); debug!("Got MXC URL: {mxc}");
services().media.delete(mxc.to_string()).await?; services().media.delete(mxc.as_ref()).await?;
return Ok(RoomMessageEventContent::text_plain( return Ok(RoomMessageEventContent::text_plain(
"Deleted the MXC from our database and on our filesystem.", "Deleted the MXC from our database and on our filesystem.",
@ -123,7 +123,7 @@ pub(super) async fn delete(
} }
for mxc_url in mxc_urls { for mxc_url in mxc_urls {
services().media.delete(mxc_url).await?; services().media.delete(&mxc_url).await?;
mxc_deletion_count = mxc_deletion_count.saturating_add(1); mxc_deletion_count = mxc_deletion_count.saturating_add(1);
} }
@ -154,7 +154,7 @@ pub(super) async fn delete_list(body: Vec<&str>) -> Result<RoomMessageEventConte
for mxc in mxc_list { for mxc in mxc_list {
debug!("Deleting MXC {mxc} in bulk"); debug!("Deleting MXC {mxc} in bulk");
services().media.delete(mxc.to_owned()).await?; services().media.delete(mxc).await?;
mxc_deletion_count = mxc_deletion_count mxc_deletion_count = mxc_deletion_count
.checked_add(1) .checked_add(1)
.expect("mxc_deletion_count should not get this high"); .expect("mxc_deletion_count should not get this high");

View file

@ -133,7 +133,7 @@ pub(crate) async fn create_content_route(
.media .media
.create( .create(
Some(sender_user.clone()), Some(sender_user.clone()),
mxc.clone(), &mxc,
body.filename body.filename
.as_ref() .as_ref()
.map(|filename| { .map(|filename| {
@ -186,7 +186,7 @@ pub(crate) async fn get_content_route(body: Ruma<get_content::v3::Request>) -> R
content_type, content_type,
file, file,
content_disposition, content_disposition,
}) = services().media.get(mxc.clone()).await? }) = services().media.get(&mxc).await?
{ {
let content_disposition = Some(make_content_disposition(&content_type, content_disposition, None)); let content_disposition = Some(make_content_disposition(&content_type, content_disposition, None));
@ -264,7 +264,7 @@ pub(crate) async fn get_content_as_filename_route(
content_type, content_type,
file, file,
content_disposition, content_disposition,
}) = services().media.get(mxc.clone()).await? }) = services().media.get(&mxc).await?
{ {
let content_disposition = Some(make_content_disposition( let content_disposition = Some(make_content_disposition(
&content_type, &content_type,
@ -352,7 +352,7 @@ pub(crate) async fn get_content_thumbnail_route(
}) = services() }) = services()
.media .media
.get_thumbnail( .get_thumbnail(
mxc.clone(), &mxc,
body.width body.width
.try_into() .try_into()
.map_err(|_| Error::BadRequest(ErrorKind::InvalidParam, "Width is invalid."))?, .map_err(|_| Error::BadRequest(ErrorKind::InvalidParam, "Width is invalid."))?,
@ -405,7 +405,7 @@ pub(crate) async fn get_content_thumbnail_route(
.media .media
.upload_thumbnail( .upload_thumbnail(
None, None,
mxc, &mxc,
None, None,
get_thumbnail_response.content_type.as_deref(), get_thumbnail_response.content_type.as_deref(),
body.width.try_into().expect("all UInts are valid u32s"), body.width.try_into().expect("all UInts are valid u32s"),
@ -494,7 +494,7 @@ async fn get_remote_content(
.media .media
.create( .create(
None, None,
mxc.to_owned(), mxc,
content_disposition.as_deref(), content_disposition.as_deref(),
content_response.content_type.as_deref(), content_response.content_type.as_deref(),
&content_response.file, &content_response.file,
@ -520,7 +520,7 @@ async fn download_image(client: &reqwest::Client, url: &str) -> Result<UrlPrevie
services() services()
.media .media
.create(None, mxc.clone(), None, None, &image) .create(None, &mxc, None, None, &image)
.await?; .await?;
let (width, height) = match ImgReader::new(Cursor::new(&image)).with_guessed_format() { let (width, height) = match ImgReader::new(Cursor::new(&image)).with_guessed_format() {

View file

@ -365,9 +365,7 @@ pub(crate) async fn get_pushers_route(body: Ruma<get_pushers::v3::Request>) -> R
pub(crate) async fn set_pushers_route(body: Ruma<set_pusher::v3::Request>) -> Result<set_pusher::v3::Response> { pub(crate) async fn set_pushers_route(body: Ruma<set_pusher::v3::Request>) -> Result<set_pusher::v3::Response> {
let sender_user = body.sender_user.as_ref().expect("user is authenticated"); let sender_user = body.sender_user.as_ref().expect("user is authenticated");
services() services().pusher.set_pusher(sender_user, &body.action)?;
.pusher
.set_pusher(sender_user, body.action.clone())?;
Ok(set_pusher::v3::Response::default()) Ok(set_pusher::v3::Response::default())
} }

View file

@ -85,7 +85,7 @@ pub(crate) async fn set_read_marker_route(
services().rooms.read_receipt.readreceipt_update( services().rooms.read_receipt.readreceipt_update(
sender_user, sender_user,
&body.room_id, &body.room_id,
ruma::events::receipt::ReceiptEvent { &ruma::events::receipt::ReceiptEvent {
content: ruma::events::receipt::ReceiptEventContent(receipt_content), content: ruma::events::receipt::ReceiptEventContent(receipt_content),
room_id: body.room_id.clone(), room_id: body.room_id.clone(),
}, },
@ -145,7 +145,7 @@ pub(crate) async fn create_receipt_route(
services().rooms.read_receipt.readreceipt_update( services().rooms.read_receipt.readreceipt_update(
sender_user, sender_user,
&body.room_id, &body.room_id,
ruma::events::receipt::ReceiptEvent { &ruma::events::receipt::ReceiptEvent {
content: ruma::events::receipt::ReceiptEventContent(receipt_content), content: ruma::events::receipt::ReceiptEventContent(receipt_content),
room_id: body.room_id.clone(), room_id: body.room_id.clone(),
}, },

View file

@ -208,7 +208,7 @@ pub(crate) async fn send_transaction_message_route(
services() services()
.rooms .rooms
.read_receipt .read_receipt
.readreceipt_update(&user_id, &room_id, event)?; .readreceipt_update(&user_id, &room_id, &event)?;
} }
} else { } else {
debug_warn!(%user_id, %room_id, %origin, "received read receipt EDU from server who does not have a single member from their server in the room"); debug_warn!(%user_id, %room_id, %origin, "received read receipt EDU from server who does not have a single member from their server in the room");

View file

@ -17,7 +17,7 @@ impl Data {
} }
/// Registers an appservice and returns the ID to the caller /// Registers an appservice and returns the ID to the caller
pub(super) fn register_appservice(&self, yaml: Registration) -> Result<String> { pub(super) fn register_appservice(&self, yaml: &Registration) -> Result<String> {
let id = yaml.id.as_str(); let id = yaml.id.as_str();
self.id_appserviceregistrations self.id_appserviceregistrations
.insert(id.as_bytes(), serde_yaml::to_string(&yaml).unwrap().as_bytes())?; .insert(id.as_bytes(), serde_yaml::to_string(&yaml).unwrap().as_bytes())?;

View file

@ -149,7 +149,7 @@ impl Service {
.await .await
.insert(yaml.id.clone(), yaml.clone().try_into()?); .insert(yaml.id.clone(), yaml.clone().try_into()?);
self.db.register_appservice(yaml) self.db.register_appservice(&yaml)
} }
/// Remove an appservice registration /// Remove an appservice registration

View file

@ -23,7 +23,7 @@ impl Data {
} }
pub(super) fn create_file_metadata( pub(super) fn create_file_metadata(
&self, sender_user: Option<&str>, mxc: String, width: u32, height: u32, content_disposition: Option<&str>, &self, sender_user: Option<&str>, mxc: &str, width: u32, height: u32, content_disposition: Option<&str>,
content_type: Option<&str>, content_type: Option<&str>,
) -> Result<Vec<u8>> { ) -> Result<Vec<u8>> {
let mut key = mxc.as_bytes().to_vec(); let mut key = mxc.as_bytes().to_vec();
@ -56,7 +56,7 @@ impl Data {
Ok(key) Ok(key)
} }
pub(super) fn delete_file_mxc(&self, mxc: String) -> Result<()> { pub(super) fn delete_file_mxc(&self, mxc: &str) -> Result<()> {
debug!("MXC URI: {:?}", mxc); debug!("MXC URI: {:?}", mxc);
let mut prefix = mxc.as_bytes().to_vec(); let mut prefix = mxc.as_bytes().to_vec();
@ -82,7 +82,7 @@ impl Data {
} }
/// Searches for all files with the given MXC /// Searches for all files with the given MXC
pub(super) fn search_mxc_metadata_prefix(&self, mxc: String) -> Result<Vec<Vec<u8>>> { pub(super) fn search_mxc_metadata_prefix(&self, mxc: &str) -> Result<Vec<Vec<u8>>> {
debug!("MXC URI: {:?}", mxc); debug!("MXC URI: {:?}", mxc);
let mut prefix = mxc.as_bytes().to_vec(); let mut prefix = mxc.as_bytes().to_vec();
@ -106,7 +106,7 @@ impl Data {
} }
pub(super) fn search_file_metadata( pub(super) fn search_file_metadata(
&self, mxc: String, width: u32, height: u32, &self, mxc: &str, width: u32, height: u32,
) -> Result<(Option<String>, Option<String>, Vec<u8>)> { ) -> Result<(Option<String>, Option<String>, Vec<u8>)> {
let mut prefix = mxc.as_bytes().to_vec(); let mut prefix = mxc.as_bytes().to_vec();
prefix.push(0xFF); prefix.push(0xFF);

View file

@ -59,7 +59,7 @@ impl Service {
/// Uploads a file. /// Uploads a file.
pub async fn create( pub async fn create(
&self, sender_user: Option<OwnedUserId>, mxc: String, content_disposition: Option<&str>, &self, sender_user: Option<OwnedUserId>, mxc: &str, content_disposition: Option<&str>,
content_type: Option<&str>, file: &[u8], content_type: Option<&str>, file: &[u8],
) -> Result<()> { ) -> Result<()> {
// Width, Height = 0 if it's not a thumbnail // Width, Height = 0 if it's not a thumbnail
@ -79,13 +79,13 @@ impl Service {
} }
/// Deletes a file in the database and from the media directory via an MXC /// Deletes a file in the database and from the media directory via an MXC
pub async fn delete(&self, mxc: String) -> Result<()> { pub async fn delete(&self, mxc: &str) -> Result<()> {
if let Ok(keys) = self.db.search_mxc_metadata_prefix(mxc.clone()) { if let Ok(keys) = self.db.search_mxc_metadata_prefix(mxc) {
for key in keys { for key in keys {
self.remove_media_file(&key).await?; self.remove_media_file(&key).await?;
debug!("Deleting MXC {mxc} from database"); debug!("Deleting MXC {mxc} from database");
self.db.delete_file_mxc(mxc.clone())?; self.db.delete_file_mxc(mxc)?;
} }
Ok(()) Ok(())
@ -100,7 +100,7 @@ impl Service {
/// Uploads or replaces a file thumbnail. /// Uploads or replaces a file thumbnail.
#[allow(clippy::too_many_arguments)] #[allow(clippy::too_many_arguments)]
pub async fn upload_thumbnail( pub async fn upload_thumbnail(
&self, sender_user: Option<OwnedUserId>, mxc: String, content_disposition: Option<&str>, &self, sender_user: Option<OwnedUserId>, mxc: &str, content_disposition: Option<&str>,
content_type: Option<&str>, width: u32, height: u32, file: &[u8], content_type: Option<&str>, width: u32, height: u32, file: &[u8],
) -> Result<()> { ) -> Result<()> {
let key = if let Some(user) = sender_user { let key = if let Some(user) = sender_user {
@ -119,7 +119,7 @@ impl Service {
} }
/// Downloads a file. /// Downloads a file.
pub async fn get(&self, mxc: String) -> Result<Option<FileMeta>> { pub async fn get(&self, mxc: &str) -> Result<Option<FileMeta>> {
if let Ok((content_disposition, content_type, key)) = self.db.search_file_metadata(mxc, 0, 0) { if let Ok((content_disposition, content_type, key)) = self.db.search_file_metadata(mxc, 0, 0) {
let mut file = Vec::new(); let mut file = Vec::new();
let path = self.get_media_file(&key); let path = self.get_media_file(&key);
@ -232,7 +232,7 @@ impl Service {
for mxc in remote_mxcs { for mxc in remote_mxcs {
debug!("Deleting MXC {mxc} from database and filesystem"); debug!("Deleting MXC {mxc} from database and filesystem");
self.delete(mxc).await?; self.delete(&mxc).await?;
deletion_count = deletion_count.saturating_add(1); deletion_count = deletion_count.saturating_add(1);
} }
@ -265,12 +265,12 @@ impl Service {
/// ///
/// For width,height <= 96 the server uses another thumbnailing algorithm /// For width,height <= 96 the server uses another thumbnailing algorithm
/// which crops the image afterwards. /// which crops the image afterwards.
pub async fn get_thumbnail(&self, mxc: String, width: u32, height: u32) -> Result<Option<FileMeta>> { pub async fn get_thumbnail(&self, mxc: &str, width: u32, height: u32) -> Result<Option<FileMeta>> {
let (width, height, crop) = self let (width, height, crop) = self
.thumbnail_properties(width, height) .thumbnail_properties(width, height)
.unwrap_or((0, 0, false)); // 0, 0 because that's the original file .unwrap_or((0, 0, false)); // 0, 0 because that's the original file
if let Ok((content_disposition, content_type, key)) = self.db.search_file_metadata(mxc.clone(), width, height) { if let Ok((content_disposition, content_type, key)) = self.db.search_file_metadata(mxc, width, height) {
// Using saved thumbnail // Using saved thumbnail
let mut file = Vec::new(); let mut file = Vec::new();
let path = self.get_media_file(&key); let path = self.get_media_file(&key);
@ -281,7 +281,7 @@ impl Service {
content_type, content_type,
file: file.clone(), file: file.clone(),
})) }))
} else if let Ok((content_disposition, content_type, key)) = self.db.search_file_metadata(mxc.clone(), 0, 0) { } else if let Ok((content_disposition, content_type, key)) = self.db.search_file_metadata(mxc, 0, 0) {
// Generate a thumbnail // Generate a thumbnail
let mut file = Vec::new(); let mut file = Vec::new();
let path = self.get_media_file(&key); let path = self.get_media_file(&key);

View file

@ -19,14 +19,14 @@ impl Data {
} }
} }
pub(super) fn set_pusher(&self, sender: &UserId, pusher: set_pusher::v3::PusherAction) -> Result<()> { pub(super) fn set_pusher(&self, sender: &UserId, pusher: &set_pusher::v3::PusherAction) -> Result<()> {
match &pusher { match pusher {
set_pusher::v3::PusherAction::Post(data) => { set_pusher::v3::PusherAction::Post(data) => {
let mut key = sender.as_bytes().to_vec(); let mut key = sender.as_bytes().to_vec();
key.push(0xFF); key.push(0xFF);
key.extend_from_slice(data.pusher.ids.pushkey.as_bytes()); key.extend_from_slice(data.pusher.ids.pushkey.as_bytes());
self.senderkey_pusher self.senderkey_pusher
.insert(&key, &serde_json::to_vec(&pusher).expect("Pusher is valid JSON value"))?; .insert(&key, &serde_json::to_vec(pusher).expect("Pusher is valid JSON value"))?;
Ok(()) Ok(())
}, },
set_pusher::v3::PusherAction::Delete(ids) => { set_pusher::v3::PusherAction::Delete(ids) => {

View file

@ -38,7 +38,7 @@ impl Service {
}) })
} }
pub fn set_pusher(&self, sender: &UserId, pusher: set_pusher::v3::PusherAction) -> Result<()> { pub fn set_pusher(&self, sender: &UserId, pusher: &set_pusher::v3::PusherAction) -> Result<()> {
self.db.set_pusher(sender, pusher) self.db.set_pusher(sender, pusher)
} }

View file

@ -27,7 +27,7 @@ impl Data {
} }
} }
pub(super) fn readreceipt_update(&self, user_id: &UserId, room_id: &RoomId, event: ReceiptEvent) -> Result<()> { pub(super) fn readreceipt_update(&self, user_id: &UserId, room_id: &RoomId, event: &ReceiptEvent) -> Result<()> {
let mut prefix = room_id.as_bytes().to_vec(); let mut prefix = room_id.as_bytes().to_vec();
prefix.push(0xFF); prefix.push(0xFF);
@ -56,7 +56,7 @@ impl Data {
self.readreceiptid_readreceipt.insert( self.readreceiptid_readreceipt.insert(
&room_latest_id, &room_latest_id,
&serde_json::to_vec(&event).expect("EduEvent::to_string always works"), &serde_json::to_vec(event).expect("EduEvent::to_string always works"),
)?; )?;
Ok(()) Ok(())

View file

@ -22,7 +22,7 @@ impl Service {
} }
/// Replaces the previous read receipt. /// Replaces the previous read receipt.
pub fn readreceipt_update(&self, user_id: &UserId, room_id: &RoomId, event: ReceiptEvent) -> Result<()> { pub fn readreceipt_update(&self, user_id: &UserId, room_id: &RoomId, event: &ReceiptEvent) -> Result<()> {
self.db.readreceipt_update(user_id, room_id, event)?; self.db.readreceipt_update(user_id, room_id, event)?;
services().sending.flush_room(room_id)?; services().sending.flush_room(room_id)?;

View file

@ -60,7 +60,7 @@ impl Data {
}) })
} }
pub(super) fn save_statediff(&self, shortstatehash: u64, diff: StateDiff) -> Result<()> { pub(super) fn save_statediff(&self, shortstatehash: u64, diff: &StateDiff) -> Result<()> {
let mut value = diff.parent.unwrap_or(0).to_be_bytes().to_vec(); let mut value = diff.parent.unwrap_or(0).to_be_bytes().to_vec();
for new in diff.added.iter() { for new in diff.added.iter() {
value.extend_from_slice(&new[..]); value.extend_from_slice(&new[..]);

View file

@ -200,7 +200,7 @@ impl Service {
// There is no parent layer, create a new state // There is no parent layer, create a new state
self.db.save_statediff( self.db.save_statediff(
shortstatehash, shortstatehash,
StateDiff { &StateDiff {
parent: None, parent: None,
added: statediffnew, added: statediffnew,
removed: statediffremoved, removed: statediffremoved,
@ -251,7 +251,7 @@ impl Service {
// Diff small enough, we add diff as layer on top of parent // Diff small enough, we add diff as layer on top of parent
self.db.save_statediff( self.db.save_statediff(
shortstatehash, shortstatehash,
StateDiff { &StateDiff {
parent: Some(parent.0), parent: Some(parent.0),
added: statediffnew, added: statediffnew,
removed: statediffremoved, removed: statediffremoved,