Skip to content

Commit cf2faa5

Browse files
committed
avoid obsolete singlejpeg ffmpeg format; appease clippy
1 parent 1f7120c commit cf2faa5

File tree

5 files changed

+13
-14
lines changed

5 files changed

+13
-14
lines changed

server/src/auth.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ pub fn hash_password(salt: &[u8], secret: &[u8]) -> String {
3535
&mut hash,
3636
);
3737

38-
base64::encode(&hash)
38+
base64::encode(hash)
3939
}
4040

4141
/// Attempt to authenticate a user based on the credentials specified in `request`.
@@ -47,8 +47,8 @@ pub fn hash_password(salt: &[u8], secret: &[u8]) -> String {
4747
/// * `mutex`: used to bottleneck all calls to this method in order to mitigate parallel brute force attacks
4848
///
4949
/// * `invalid_credential_delay`: minimum delay added to responses to invalid authentication requests. Note that
50-
/// these delays will stack up if invalid requests are received more often than once per this interval, so the
51-
/// actual delay experienced by a given request may be much longer.
50+
/// these delays will stack up if invalid requests are received more often than once per this interval, so the
51+
/// actual delay experienced by a given request may be much longer.
5252
pub async fn authenticate(
5353
conn: &AsyncMutex<SqliteConnection>,
5454
request: &TokenRequest,

server/src/lib.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ fn response() -> response::Builder {
261261
/// * `conn`: used to access the Tagger database
262262
///
263263
/// * `image_locks`: used to control concurrent access to the cache directory, e.g. to avoid simultaneous reads and
264-
/// writes to cache files
264+
/// writes to cache files
265265
///
266266
/// * `options`: server configuration -- see [Options] for details
267267
///
@@ -937,7 +937,7 @@ mod test {
937937
let response = warp::test::request()
938938
.method("POST")
939939
.path("/token")
940-
.body(&format!(
940+
.body(format!(
941941
"grant_type=password&username={user}&password=invalid+password"
942942
))
943943
.reply(&routes)
@@ -952,7 +952,7 @@ mod test {
952952
let response = warp::test::request()
953953
.method("POST")
954954
.path("/token")
955-
.body(&format!(
955+
.body(format!(
956956
"grant_type=password&username={user}&password={password}"
957957
))
958958
.reply(&routes)
@@ -2830,7 +2830,7 @@ mod test {
28302830
.arg("-frames:v")
28312831
.arg("1")
28322832
.arg("-f")
2833-
.arg("singlejpeg")
2833+
.arg("mjpeg")
28342834
.arg("-")
28352835
.output()
28362836
.await?;

server/src/media.rs

+3-4
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ async fn still_image(image_dir: &str, path: &str) -> Result<(Vec<u8>, ImageForma
203203
.arg("-frames:v")
204204
.arg("1")
205205
.arg("-f")
206-
.arg("singlejpeg")
206+
.arg("mjpeg")
207207
.arg("-")
208208
.output()
209209
.await?;
@@ -331,7 +331,7 @@ pub fn group_similar<'a>(similar: HashMap<&'a Item, HashSet<&'a Item>>) -> Vec<H
331331
}
332332
}
333333

334-
groups_to_items.into_iter().map(|(_, v)| v).collect()
334+
groups_to_items.into_values().collect()
335335
}
336336

337337
/// Group `potential_duplicates` according to which ones appear to be duplicates of each other.
@@ -1133,11 +1133,10 @@ async fn thumbnail(
11331133

11341134
{
11351135
let orientation = ExifMetadata::new_from_buffer(&image)
1136-
.map(|metadata| {
1136+
.inspect(|metadata| {
11371137
let orientation = metadata.get_orientation();
11381138
metadata.clear();
11391139
metadata.set_orientation(orientation);
1140-
metadata
11411140
})
11421141
.as_ref()
11431142
.map(|m| m.get_orientation())

server/src/tags.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! This module provides two functions:
22
//!
33
//! * [tags]: handles GET /tags requests, which retrieve an optionally filtered list of tags currently applied to
4-
//! at least one media item
4+
//! at least one media item
55
//!
66
//! * [apply]: handles PATCH /tags requests, which add and/or remove tags to/from media items
77

shared/src/tag_expression.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
//! * [TagExpression]: A boolean expression which may combine tags with AND, OR, and NOT operators
77
//!
88
//! * [TagTree]: A tree expression representing a disjunction of conjuctions, which may be converted to a
9-
//! `TagExpression` when needed. This form is used in the Tagger client to allow the user to incrementally refine
10-
//! a filter using a hierarchical menu of tags.
9+
//! `TagExpression` when needed. This form is used in the Tagger client to allow the user to incrementally
10+
//! refine a filter using a hierarchical menu of tags.
1111
1212
use {
1313
crate::tag_expression_grammar::TagExpressionParser,

0 commit comments

Comments
 (0)