Compare commits
15 Commits
v0.3.0-dev
...
v0.4.1-mai
Author | SHA1 | Date | |
---|---|---|---|
97853a42c1 | |||
6467521a02 | |||
6411133c95 | |||
8a08672423 | |||
fdae8056b1 | |||
c555110367 | |||
4b6f6cb67d | |||
e9d73c391e | |||
d476b128cb | |||
255aff414a | |||
24aa60cb48 | |||
6a0135c6fa | |||
8fbd92620e | |||
d8eadb8187 | |||
2b2e96c02d |
@@ -3,9 +3,8 @@ name: Release Tagging
|
|||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
|
- main
|
||||||
- devel
|
- devel
|
||||||
tags:
|
|
||||||
- 'v*' # Trigger on tags matching v*
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
release:
|
release:
|
||||||
@@ -19,7 +18,7 @@ jobs:
|
|||||||
- name: Install Rust
|
- name: Install Rust
|
||||||
uses: actions-rs/toolchain@v1
|
uses: actions-rs/toolchain@v1
|
||||||
with:
|
with:
|
||||||
toolchain: 1.85.0
|
toolchain: 1.86.0
|
||||||
components: cargo
|
components: cargo
|
||||||
|
|
||||||
- name: Extract Version from Cargo.toml
|
- name: Extract Version from Cargo.toml
|
||||||
|
@@ -18,7 +18,7 @@ jobs:
|
|||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
||||||
with:
|
with:
|
||||||
toolchain: 1.85.0
|
toolchain: 1.86.0
|
||||||
- run: cargo check
|
- run: cargo check
|
||||||
|
|
||||||
test:
|
test:
|
||||||
@@ -28,7 +28,7 @@ jobs:
|
|||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
||||||
with:
|
with:
|
||||||
toolchain: 1.85.0
|
toolchain: 1.86.0
|
||||||
- run: cargo test
|
- run: cargo test
|
||||||
|
|
||||||
fmt:
|
fmt:
|
||||||
@@ -38,7 +38,7 @@ jobs:
|
|||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
||||||
with:
|
with:
|
||||||
toolchain: 1.85.0
|
toolchain: 1.86.0
|
||||||
- run: rustup component add rustfmt
|
- run: rustup component add rustfmt
|
||||||
- run: cargo fmt --all -- --check
|
- run: cargo fmt --all -- --check
|
||||||
|
|
||||||
@@ -49,7 +49,7 @@ jobs:
|
|||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
||||||
with:
|
with:
|
||||||
toolchain: 1.85.0
|
toolchain: 1.86.0
|
||||||
- run: rustup component add clippy
|
- run: rustup component add clippy
|
||||||
- run: cargo clippy -- -D warnings
|
- run: cargo clippy -- -D warnings
|
||||||
|
|
||||||
@@ -60,7 +60,7 @@ jobs:
|
|||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
||||||
with:
|
with:
|
||||||
toolchain: 1.85.0
|
toolchain: 1.86.0
|
||||||
- run: cargo build
|
- run: cargo build
|
||||||
|
|
||||||
|
|
||||||
|
@@ -1,7 +1,8 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "icarus_models"
|
name = "icarus_models"
|
||||||
version = "0.3.0"
|
version = "0.4.1"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
|
rust-version = "1.86"
|
||||||
description = "models used for the icarus project"
|
description = "models used for the icarus project"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|
||||||
@@ -9,6 +10,8 @@ license = "MIT"
|
|||||||
serde = { version = "1.0.218", features = ["derive"] }
|
serde = { version = "1.0.218", features = ["derive"] }
|
||||||
serde_json = { version = "1.0.139" }
|
serde_json = { version = "1.0.139" }
|
||||||
rand = { version = "0.9" }
|
rand = { version = "0.9" }
|
||||||
|
time = { version = "0.3.41", features = ["formatting", "macros", "parsing", "serde"] }
|
||||||
uuid = { version = "1.16.0", features = ["v4", "serde"] }
|
uuid = { version = "1.16.0", features = ["v4", "serde"] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tempfile = { version = "3.19.1" }
|
tempfile = { version = "3.19.1" }
|
||||||
|
@@ -12,7 +12,7 @@ pub struct AccessLevel {
|
|||||||
impl Default for AccessLevel {
|
impl Default for AccessLevel {
|
||||||
fn default() -> Self {
|
fn default() -> Self {
|
||||||
AccessLevel {
|
AccessLevel {
|
||||||
id: uuid::Uuid::new_v4(),
|
id: uuid::Uuid::nil(),
|
||||||
level: String::new(),
|
level: String::new(),
|
||||||
song_id: uuid::Uuid::new_v4(),
|
song_id: uuid::Uuid::new_v4(),
|
||||||
}
|
}
|
||||||
@@ -21,7 +21,7 @@ impl Default for AccessLevel {
|
|||||||
|
|
||||||
pub fn default_level() -> AccessLevel {
|
pub fn default_level() -> AccessLevel {
|
||||||
AccessLevel {
|
AccessLevel {
|
||||||
id: uuid::Uuid::new_v4(),
|
id: uuid::Uuid::nil(),
|
||||||
level: String::from("Public"),
|
level: String::from("Public"),
|
||||||
song_id: uuid::Uuid::new_v4(),
|
song_id: uuid::Uuid::new_v4(),
|
||||||
}
|
}
|
||||||
|
@@ -10,6 +10,19 @@ pub struct CoverArt {
|
|||||||
pub data: Vec<u8>,
|
pub data: Vec<u8>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub mod init {
|
||||||
|
use crate::coverart::CoverArt;
|
||||||
|
|
||||||
|
pub fn init_coverart_only_path(path: String) -> CoverArt {
|
||||||
|
CoverArt {
|
||||||
|
id: uuid::Uuid::nil(),
|
||||||
|
title: String::new(),
|
||||||
|
path: path.clone(),
|
||||||
|
data: Vec::new(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
impl CoverArt {
|
impl CoverArt {
|
||||||
pub fn to_data(&self) -> Result<Vec<u8>, std::io::Error> {
|
pub fn to_data(&self) -> Result<Vec<u8>, std::io::Error> {
|
||||||
let path: &String = &self.path;
|
let path: &String = &self.path;
|
||||||
@@ -21,3 +34,16 @@ impl CoverArt {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
use crate::coverart;
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_cover_art_image() {
|
||||||
|
let path: String = String::from("somepath");
|
||||||
|
let coverart = coverart::init::init_coverart_only_path(path.clone());
|
||||||
|
|
||||||
|
assert_eq!(path, coverart.path);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@@ -9,13 +9,13 @@ pub struct LoginResult {
|
|||||||
pub token: String,
|
pub token: String,
|
||||||
#[serde(alias = "token_type")]
|
#[serde(alias = "token_type")]
|
||||||
pub token_type: String,
|
pub token_type: String,
|
||||||
pub expiration: i32,
|
pub expiration: i64,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Default for LoginResult {
|
impl Default for LoginResult {
|
||||||
fn default() -> Self {
|
fn default() -> Self {
|
||||||
LoginResult {
|
LoginResult {
|
||||||
id: uuid::Uuid::new_v4(),
|
id: uuid::Uuid::nil(),
|
||||||
username: String::new(),
|
username: String::new(),
|
||||||
token: String::new(),
|
token: String::new(),
|
||||||
token_type: String::new(),
|
token_type: String::new(),
|
||||||
|
31
src/song.rs
31
src/song.rs
@@ -40,8 +40,8 @@ pub struct Song {
|
|||||||
pub date_created: String,
|
pub date_created: String,
|
||||||
#[serde(skip_serializing_if = "String::is_empty")]
|
#[serde(skip_serializing_if = "String::is_empty")]
|
||||||
pub filename: String,
|
pub filename: String,
|
||||||
#[serde(skip_serializing_if = "init::is_zero")]
|
#[serde(skip_serializing_if = "init::is_uuid_nil")]
|
||||||
pub user_id: i32,
|
pub user_id: uuid::Uuid,
|
||||||
#[serde(skip)]
|
#[serde(skip)]
|
||||||
pub data: Vec<u8>,
|
pub data: Vec<u8>,
|
||||||
#[serde(skip)]
|
#[serde(skip)]
|
||||||
@@ -227,9 +227,9 @@ mod embedded {
|
|||||||
// The song's duration is a floating point in seconds
|
// The song's duration is a floating point in seconds
|
||||||
#[derive(Clone, Debug, Deserialize, Serialize)]
|
#[derive(Clone, Debug, Deserialize, Serialize)]
|
||||||
pub struct Song {
|
pub struct Song {
|
||||||
#[serde(skip_serializing_if = "is_embed_zero")]
|
#[serde(skip_serializing_if = "init::is_uuid_nil")]
|
||||||
#[serde(alias = "id")]
|
#[serde(alias = "id")]
|
||||||
pub id: i32,
|
pub id: uuid::Uuid,
|
||||||
#[serde(skip_serializing_if = "String::is_empty")]
|
#[serde(skip_serializing_if = "String::is_empty")]
|
||||||
pub title: String,
|
pub title: String,
|
||||||
#[serde(skip_serializing_if = "String::is_empty")]
|
#[serde(skip_serializing_if = "String::is_empty")]
|
||||||
@@ -240,17 +240,17 @@ mod embedded {
|
|||||||
pub album_artist: String,
|
pub album_artist: String,
|
||||||
#[serde(skip_serializing_if = "String::is_empty")]
|
#[serde(skip_serializing_if = "String::is_empty")]
|
||||||
pub genre: String,
|
pub genre: String,
|
||||||
#[serde(skip_serializing_if = "is_embed_zero")]
|
#[serde(skip_serializing_if = "init::is_embed_zero")]
|
||||||
pub year: i32,
|
pub year: i32,
|
||||||
#[serde(skip_serializing_if = "is_embed_dur_not_set")]
|
#[serde(skip_serializing_if = "init::is_embed_dur_not_set")]
|
||||||
pub duration: f64,
|
pub duration: f64,
|
||||||
#[serde(skip_serializing_if = "is_embed_zero")]
|
#[serde(skip_serializing_if = "init::is_embed_zero")]
|
||||||
pub track: i32,
|
pub track: i32,
|
||||||
#[serde(skip_serializing_if = "is_embed_zero")]
|
#[serde(skip_serializing_if = "init::is_embed_zero")]
|
||||||
pub disc: i32,
|
pub disc: i32,
|
||||||
#[serde(skip_serializing_if = "is_embed_zero")]
|
#[serde(skip_serializing_if = "init::is_embed_zero")]
|
||||||
pub disc_count: i32,
|
pub disc_count: i32,
|
||||||
#[serde(skip_serializing_if = "is_embed_zero")]
|
#[serde(skip_serializing_if = "init::is_embed_zero")]
|
||||||
pub track_count: i32,
|
pub track_count: i32,
|
||||||
#[serde(skip_serializing_if = "String::is_empty")]
|
#[serde(skip_serializing_if = "String::is_empty")]
|
||||||
pub audio_type: String,
|
pub audio_type: String,
|
||||||
@@ -258,7 +258,7 @@ mod embedded {
|
|||||||
pub date_created: String,
|
pub date_created: String,
|
||||||
#[serde(skip_serializing_if = "String::is_empty")]
|
#[serde(skip_serializing_if = "String::is_empty")]
|
||||||
pub filename: String,
|
pub filename: String,
|
||||||
#[serde(skip_serializing_if = "is_embed_zero")]
|
#[serde(skip_serializing_if = "init::is_embed_zero")]
|
||||||
pub user_id: i32,
|
pub user_id: i32,
|
||||||
#[serde(skip)]
|
#[serde(skip)]
|
||||||
pub data: Vec<u8>,
|
pub data: Vec<u8>,
|
||||||
@@ -274,18 +274,11 @@ mod embedded {
|
|||||||
// pub coverart_id: i32,
|
// pub coverart_id: i32,
|
||||||
}
|
}
|
||||||
|
|
||||||
fn is_embed_zero(num: &i32) -> bool {
|
|
||||||
*num == 0
|
|
||||||
}
|
|
||||||
|
|
||||||
fn is_embed_dur_not_set(num: &f64) -> bool {
|
|
||||||
*num == 0.0
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Default for Song {
|
impl Default for Song {
|
||||||
fn default() -> Self {
|
fn default() -> Self {
|
||||||
Song {
|
Song {
|
||||||
id: 0,
|
id: uuid::Uuid::nil(),
|
||||||
title: String::new(),
|
title: String::new(),
|
||||||
artist: String::new(),
|
artist: String::new(),
|
||||||
album: String::new(),
|
album: String::new(),
|
||||||
|
41
src/user.rs
41
src/user.rs
@@ -21,12 +21,14 @@ pub struct User {
|
|||||||
#[serde(skip_serializing_if = "String::is_empty")]
|
#[serde(skip_serializing_if = "String::is_empty")]
|
||||||
pub lastname: String,
|
pub lastname: String,
|
||||||
pub email_verified: bool,
|
pub email_verified: bool,
|
||||||
#[serde(skip_serializing_if = "String::is_empty")]
|
#[serde(with = "time::serde::rfc3339::option")]
|
||||||
pub date_created: String,
|
pub date_created: Option<time::OffsetDateTime>,
|
||||||
#[serde(skip_serializing_if = "String::is_empty")]
|
#[serde(skip_serializing_if = "String::is_empty")]
|
||||||
pub status: String,
|
pub status: String,
|
||||||
#[serde(skip_serializing_if = "String::is_empty")]
|
#[serde(with = "time::serde::rfc3339::option")]
|
||||||
pub last_login: String,
|
pub last_login: Option<time::OffsetDateTime>,
|
||||||
|
#[serde(skip_serializing_if = "init::is_uuid_nil")]
|
||||||
|
pub salt_id: uuid::Uuid,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Default for User {
|
impl Default for User {
|
||||||
@@ -40,9 +42,10 @@ impl Default for User {
|
|||||||
firstname: String::new(),
|
firstname: String::new(),
|
||||||
lastname: String::new(),
|
lastname: String::new(),
|
||||||
email_verified: false,
|
email_verified: false,
|
||||||
date_created: String::new(),
|
date_created: None,
|
||||||
status: String::new(),
|
status: String::new(),
|
||||||
last_login: String::new(),
|
last_login: None,
|
||||||
|
salt_id: uuid::Uuid::nil(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -56,3 +59,29 @@ impl User {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub mod salt {
|
||||||
|
use std::default::Default;
|
||||||
|
|
||||||
|
use crate::init;
|
||||||
|
|
||||||
|
use serde::{Deserialize, Serialize};
|
||||||
|
|
||||||
|
#[derive(Clone, Debug, Default, Deserialize, Serialize)]
|
||||||
|
pub struct Salt {
|
||||||
|
#[serde(skip_serializing_if = "init::is_uuid_nil")]
|
||||||
|
pub id: uuid::Uuid,
|
||||||
|
#[serde(skip_serializing_if = "String::is_empty")]
|
||||||
|
pub salt: String,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Salt {
|
||||||
|
pub fn to_json(&self, output_pretty: bool) -> Result<String, serde_json::Error> {
|
||||||
|
if output_pretty {
|
||||||
|
serde_json::to_string_pretty(&self)
|
||||||
|
} else {
|
||||||
|
serde_json::to_string(&self)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@@ -28,6 +28,7 @@ mod utils {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
mod song_tests {
|
mod song_tests {
|
||||||
use std::fs::File;
|
use std::fs::File;
|
||||||
use std::io::Write;
|
use std::io::Write;
|
||||||
@@ -151,6 +152,7 @@ mod song_tests {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
mod album_tests {
|
mod album_tests {
|
||||||
|
|
||||||
use crate::utils;
|
use crate::utils;
|
||||||
|
Reference in New Issue
Block a user