Compare commits
3 commits
2a416ab559
...
aa18fc3525
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
aa18fc3525 | ||
| 9ad599a2b4 | |||
| 07907b2ce2 |
6 changed files with 61 additions and 6 deletions
12
Cargo.lock
generated
12
Cargo.lock
generated
|
|
@ -1256,7 +1256,7 @@ dependencies = [
|
||||||
"libc",
|
"libc",
|
||||||
"percent-encoding",
|
"percent-encoding",
|
||||||
"pin-project-lite",
|
"pin-project-lite",
|
||||||
"socket2 0.6.0",
|
"socket2 0.5.10",
|
||||||
"system-configuration",
|
"system-configuration",
|
||||||
"tokio",
|
"tokio",
|
||||||
"tower-service",
|
"tower-service",
|
||||||
|
|
@ -1493,7 +1493,7 @@ checksum = "e04d7f318608d35d4b61ddd75cbdaee86b023ebe2bd5a66ee0915f0bf93095a9"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"hermit-abi",
|
"hermit-abi",
|
||||||
"libc",
|
"libc",
|
||||||
"windows-sys 0.52.0",
|
"windows-sys 0.59.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
|
@ -2214,9 +2214,9 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "reqwest"
|
name = "reqwest"
|
||||||
version = "0.12.22"
|
version = "0.12.23"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "cbc931937e6ca3a06e3b6c0aa7841849b160a90351d6ab467a8b9b9959767531"
|
checksum = "d429f34c8092b2d42c7c93cec323bb4adeb7c67698f70839adec842ec10c7ceb"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"base64 0.22.1",
|
"base64 0.22.1",
|
||||||
"bytes",
|
"bytes",
|
||||||
|
|
@ -2714,7 +2714,7 @@ dependencies = [
|
||||||
"getrandom 0.3.3",
|
"getrandom 0.3.3",
|
||||||
"once_cell",
|
"once_cell",
|
||||||
"rustix",
|
"rustix",
|
||||||
"windows-sys 0.52.0",
|
"windows-sys 0.59.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
|
@ -3366,7 +3366,7 @@ version = "0.1.9"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
|
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"windows-sys 0.52.0",
|
"windows-sys 0.59.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ video backup solution. This tool provides various utilities to manage your Immic
|
||||||
- **List** all albums on your Immich server
|
- **List** all albums on your Immich server
|
||||||
- **Delete** albums (all or empty ones only)
|
- **Delete** albums (all or empty ones only)
|
||||||
- **Auto-create** albums from external libraries folder structure
|
- **Auto-create** albums from external libraries folder structure
|
||||||
|
- **List assets of an album** by album name
|
||||||
|
|
||||||
### Assets
|
### Assets
|
||||||
- **List** assets (all or offline only)
|
- **List** assets (all or offline only)
|
||||||
|
|
@ -105,6 +106,11 @@ Auto-create albums from folder structure:
|
||||||
immich-tools albums auto-create --album-name-separator "/"
|
immich-tools albums auto-create --album-name-separator "/"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
List assets belonging to a specific album (by album name):
|
||||||
|
```bash
|
||||||
|
immich-tools albums list-assets --album "My Album"
|
||||||
|
```
|
||||||
|
|
||||||
### Assets
|
### Assets
|
||||||
|
|
||||||
List all assets:
|
List all assets:
|
||||||
|
|
|
||||||
|
|
@ -95,6 +95,13 @@ pub(crate) enum AlbumsCommands {
|
||||||
/// List all albums
|
/// List all albums
|
||||||
#[serde(rename = "list")]
|
#[serde(rename = "list")]
|
||||||
List {},
|
List {},
|
||||||
|
/// List all assets that belong to a specific album
|
||||||
|
#[serde(rename = "list-assets")]
|
||||||
|
ListAssets {
|
||||||
|
/// Name of the album to list assets for
|
||||||
|
#[arg(long)]
|
||||||
|
album: String,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Serialize, Subcommand)]
|
#[derive(Serialize, Subcommand)]
|
||||||
|
|
|
||||||
38
src/commands/list_album_assets.rs
Normal file
38
src/commands/list_album_assets.rs
Normal file
|
|
@ -0,0 +1,38 @@
|
||||||
|
use crate::{
|
||||||
|
actions::{
|
||||||
|
action::Action, fetch_album_assets::FetchAlbumAssets, fetch_all_albums::FetchAllAlbums,
|
||||||
|
},
|
||||||
|
context::Context,
|
||||||
|
};
|
||||||
|
use color_eyre::eyre::{eyre, Result};
|
||||||
|
use tabled::{settings::Style, Table, Tabled};
|
||||||
|
|
||||||
|
#[derive(Tabled)]
|
||||||
|
struct AssetRow {
|
||||||
|
#[tabled(rename = "Path")]
|
||||||
|
original_file_path: String,
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn list_album_assets(ctx: Context, album_name: &str) -> Result<()> {
|
||||||
|
let albums = FetchAllAlbums::new(()).execute(&ctx).await?;
|
||||||
|
|
||||||
|
let album = albums
|
||||||
|
.into_iter()
|
||||||
|
.find(|a| a.name == album_name)
|
||||||
|
.ok_or_else(|| eyre!("Album not found: {}", album_name))?;
|
||||||
|
|
||||||
|
let mut assets: Vec<_> = FetchAlbumAssets::new(album)
|
||||||
|
.execute(&ctx)
|
||||||
|
.await?
|
||||||
|
.into_iter()
|
||||||
|
.map(|asset| AssetRow {
|
||||||
|
original_file_path: asset.original_path.to_string_lossy().to_string(),
|
||||||
|
})
|
||||||
|
.collect();
|
||||||
|
|
||||||
|
assets.sort_by_key(|row| row.original_file_path.clone());
|
||||||
|
|
||||||
|
println!("{}", Table::new(assets).with(Style::rounded()));
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
pub mod auto_create_albums;
|
pub mod auto_create_albums;
|
||||||
pub mod delete_albums;
|
pub mod delete_albums;
|
||||||
pub mod delete_assets;
|
pub mod delete_assets;
|
||||||
|
pub mod list_album_assets;
|
||||||
pub mod list_albums;
|
pub mod list_albums;
|
||||||
pub mod list_assets;
|
pub mod list_assets;
|
||||||
pub mod list_libraries;
|
pub mod list_libraries;
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
#![allow(renamed_and_removed_lints)] // https://github.com/oxidecomputer/progenitor/issues/1169
|
||||||
include!(concat!(env!("OUT_DIR"), "/client.rs"));
|
include!(concat!(env!("OUT_DIR"), "/client.rs"));
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
|
|
@ -16,6 +17,7 @@ use color_eyre::Section;
|
||||||
use commands::auto_create_albums::auto_create_albums;
|
use commands::auto_create_albums::auto_create_albums;
|
||||||
use commands::delete_albums::delete_albums;
|
use commands::delete_albums::delete_albums;
|
||||||
use commands::delete_assets::delete_assets;
|
use commands::delete_assets::delete_assets;
|
||||||
|
use commands::list_album_assets::list_album_assets;
|
||||||
use commands::list_albums::list_albums;
|
use commands::list_albums::list_albums;
|
||||||
use commands::list_assets::list_assets;
|
use commands::list_assets::list_assets;
|
||||||
use commands::list_libraries::list_libraries;
|
use commands::list_libraries::list_libraries;
|
||||||
|
|
@ -86,6 +88,7 @@ async fn main() -> Result<()> {
|
||||||
} => auto_create_albums(ctx, album_name_separator.to_string()).await,
|
} => auto_create_albums(ctx, album_name_separator.to_string()).await,
|
||||||
AlbumsCommands::Delete { empty } => delete_albums(ctx, *empty).await,
|
AlbumsCommands::Delete { empty } => delete_albums(ctx, *empty).await,
|
||||||
AlbumsCommands::List {} => list_albums(ctx).await,
|
AlbumsCommands::List {} => list_albums(ctx).await,
|
||||||
|
AlbumsCommands::ListAssets { album } => list_album_assets(ctx, album).await,
|
||||||
},
|
},
|
||||||
Commands::Assets { assets_command } => match assets_command {
|
Commands::Assets { assets_command } => match assets_command {
|
||||||
AssetsCommands::Delete { offline } => delete_assets(ctx, *offline).await,
|
AssetsCommands::Delete { offline } => delete_assets(ctx, *offline).await,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue