This commit is contained in:
parent
39d449889d
commit
35cb7949fd
3 changed files with 25 additions and 27 deletions
|
|
@ -19,7 +19,7 @@ pub struct AlbumDir {
|
||||||
|
|
||||||
impl AlbumDir {
|
impl AlbumDir {
|
||||||
/// Returns an iterator over all images in the album and subalbums
|
/// Returns an iterator over all images in the album and subalbums
|
||||||
pub fn iter_all_images(&self) -> AlbumImageIter {
|
pub fn iter_all_images(&self) -> AlbumImageIter<'_> {
|
||||||
AlbumImageIter::new(self)
|
AlbumImageIter::new(self)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -79,8 +79,9 @@ impl AlbumDir {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if entry_path.is_dir() {
|
} else if entry_path.is_dir()
|
||||||
if let Some(dirname) = entry_path.file_name().and_then(|n| n.to_str()) {
|
&& let Some(dirname) = entry_path.file_name().and_then(|n| n.to_str())
|
||||||
|
{
|
||||||
if dirname.starts_with("_") {
|
if dirname.starts_with("_") {
|
||||||
// Likely a templates or static dir
|
// Likely a templates or static dir
|
||||||
continue;
|
continue;
|
||||||
|
|
@ -94,7 +95,6 @@ impl AlbumDir {
|
||||||
children.push(AlbumDir::from_path(&entry_path, root)?);
|
children.push(AlbumDir::from_path(&entry_path, root)?);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
children.sort_by_key(|c| c.path.clone());
|
children.sort_by_key(|c| c.path.clone());
|
||||||
images.sort_by_key(|i| i.path.clone());
|
images.sort_by_key(|i| i.path.clone());
|
||||||
|
|
|
||||||
|
|
@ -55,8 +55,7 @@ impl Image {
|
||||||
/// return "blah.thumb"
|
/// return "blah.thumb"
|
||||||
fn slide_filename(path: &Path, ext: &str, keep_ext: bool) -> anyhow::Result<String> {
|
fn slide_filename(path: &Path, ext: &str, keep_ext: bool) -> anyhow::Result<String> {
|
||||||
let mut new_ext: OsString = ext.into();
|
let mut new_ext: OsString = ext.into();
|
||||||
if keep_ext {
|
if keep_ext && let Some(e) = path.extension() {
|
||||||
if let Some(e) = path.extension() {
|
|
||||||
new_ext = OsString::from(
|
new_ext = OsString::from(
|
||||||
ext.to_string()
|
ext.to_string()
|
||||||
+ "."
|
+ "."
|
||||||
|
|
@ -66,7 +65,6 @@ impl Image {
|
||||||
))?,
|
))?,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
let new_path = path.with_extension(new_ext);
|
let new_path = path.with_extension(new_ext);
|
||||||
let new_name = new_path
|
let new_name = new_path
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
use anyhow::{anyhow, Context};
|
use anyhow::{Context, anyhow};
|
||||||
use image::ImageReader;
|
use image::ImageReader;
|
||||||
use std::ffi::OsStr;
|
use std::ffi::OsStr;
|
||||||
use std::fs::{rename, File};
|
use std::fs::{File, rename};
|
||||||
use std::io::BufReader;
|
use std::io::BufReader;
|
||||||
use std::path::{Path, PathBuf};
|
use std::path::{Path, PathBuf};
|
||||||
use std::str::from_utf8;
|
use std::str::from_utf8;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue