Compare commits
2 Commits
v0.4.1-dev
...
v0.2.0
Author | SHA1 | Date | |
---|---|---|---|
d8eadb8187 | |||
2b2e96c02d |
@@ -3,8 +3,9 @@ name: Release Tagging
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
- devel
|
||||
tags:
|
||||
- 'v*' # Trigger on tags matching v*
|
||||
|
||||
jobs:
|
||||
release:
|
||||
@@ -18,7 +19,7 @@ jobs:
|
||||
- name: Install Rust
|
||||
uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: 1.86.0
|
||||
toolchain: 1.85.0
|
||||
components: cargo
|
||||
|
||||
- name: Extract Version from Cargo.toml
|
||||
|
@@ -18,7 +18,7 @@ jobs:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
||||
with:
|
||||
toolchain: 1.86.0
|
||||
toolchain: 1.85.0
|
||||
- run: cargo check
|
||||
|
||||
test:
|
||||
@@ -28,7 +28,7 @@ jobs:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
||||
with:
|
||||
toolchain: 1.86.0
|
||||
toolchain: 1.85.0
|
||||
- run: cargo test
|
||||
|
||||
fmt:
|
||||
@@ -38,7 +38,7 @@ jobs:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
||||
with:
|
||||
toolchain: 1.86.0
|
||||
toolchain: 1.85.0
|
||||
- run: rustup component add rustfmt
|
||||
- run: cargo fmt --all -- --check
|
||||
|
||||
@@ -49,7 +49,7 @@ jobs:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
||||
with:
|
||||
toolchain: 1.86.0
|
||||
toolchain: 1.85.0
|
||||
- run: rustup component add clippy
|
||||
- run: cargo clippy -- -D warnings
|
||||
|
||||
@@ -60,7 +60,7 @@ jobs:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
||||
with:
|
||||
toolchain: 1.86.0
|
||||
toolchain: 1.85.0
|
||||
- run: cargo build
|
||||
|
||||
|
||||
|
@@ -1,8 +1,7 @@
|
||||
[package]
|
||||
name = "icarus_models"
|
||||
version = "0.4.1"
|
||||
version = "0.2.0"
|
||||
edition = "2024"
|
||||
rust-version = "1.86"
|
||||
description = "models used for the icarus project"
|
||||
license = "MIT"
|
||||
|
||||
@@ -10,8 +9,4 @@ license = "MIT"
|
||||
serde = { version = "1.0.218", features = ["derive"] }
|
||||
serde_json = { version = "1.0.139" }
|
||||
rand = { version = "0.9" }
|
||||
time = { version = "0.3.41", features = ["formatting", "macros", "parsing", "serde"] }
|
||||
uuid = { version = "1.16.0", features = ["v4", "serde"] }
|
||||
|
||||
[dev-dependencies]
|
||||
tempfile = { version = "3.19.1" }
|
||||
|
@@ -4,34 +4,34 @@ use serde::{Deserialize, Serialize};
|
||||
|
||||
#[derive(Clone, Debug, Deserialize, Serialize)]
|
||||
pub struct AccessLevel {
|
||||
pub id: uuid::Uuid,
|
||||
pub id: i32,
|
||||
pub level: String,
|
||||
pub song_id: uuid::Uuid,
|
||||
pub song_id: i32,
|
||||
}
|
||||
|
||||
impl Default for AccessLevel {
|
||||
fn default() -> Self {
|
||||
AccessLevel {
|
||||
id: uuid::Uuid::nil(),
|
||||
id: -1,
|
||||
level: String::new(),
|
||||
song_id: uuid::Uuid::new_v4(),
|
||||
song_id: -1,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
pub fn default_level() -> AccessLevel {
|
||||
AccessLevel {
|
||||
id: uuid::Uuid::nil(),
|
||||
id: -1,
|
||||
level: String::from("Public"),
|
||||
song_id: uuid::Uuid::new_v4(),
|
||||
song_id: -1,
|
||||
}
|
||||
}
|
||||
|
||||
pub fn private_level() -> AccessLevel {
|
||||
AccessLevel {
|
||||
id: uuid::Uuid::new_v4(),
|
||||
id: -1,
|
||||
level: String::from("Private"),
|
||||
song_id: uuid::Uuid::new_v4(),
|
||||
song_id: -1,
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -5,7 +5,9 @@ pub mod collection {
|
||||
use std::fs::File;
|
||||
use std::io::BufReader;
|
||||
|
||||
use crate::init;
|
||||
fn is_set(num: &i32) -> bool {
|
||||
*num >= 0
|
||||
}
|
||||
|
||||
pub fn parse_album(filepath: &String) -> Result<Album, serde_json::Error> {
|
||||
let file = File::open(filepath).expect("Failed to open file");
|
||||
@@ -25,7 +27,7 @@ pub mod collection {
|
||||
pub genre: String,
|
||||
pub year: i32,
|
||||
pub track_count: i32,
|
||||
#[serde(skip_serializing_if = "init::is_set")]
|
||||
#[serde(skip_serializing_if = "is_set")]
|
||||
pub disc_count: i32,
|
||||
#[serde(skip_serializing_if = "Vec::is_empty")]
|
||||
pub tracks: Vec<Track>,
|
||||
|
@@ -4,25 +4,12 @@ use serde::{Deserialize, Serialize};
|
||||
|
||||
#[derive(Clone, Debug, Default, Deserialize, Serialize)]
|
||||
pub struct CoverArt {
|
||||
pub id: uuid::Uuid,
|
||||
pub id: i32,
|
||||
pub title: String,
|
||||
pub path: String,
|
||||
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 {
|
||||
pub fn to_data(&self) -> Result<Vec<u8>, std::io::Error> {
|
||||
let path: &String = &self.path;
|
||||
@@ -34,16 +21,3 @@ 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);
|
||||
}
|
||||
}
|
||||
|
22
src/lib.rs
22
src/lib.rs
@@ -7,25 +7,3 @@ pub mod song;
|
||||
pub mod token;
|
||||
pub mod types;
|
||||
pub mod user;
|
||||
|
||||
pub mod init {
|
||||
pub fn is_id_valid(num: &i32) -> bool {
|
||||
*num > 0
|
||||
}
|
||||
|
||||
pub fn is_uuid_nil(uuid: &uuid::Uuid) -> bool {
|
||||
uuid.is_nil()
|
||||
}
|
||||
|
||||
pub fn is_zero(num: &i32) -> bool {
|
||||
*num == 0
|
||||
}
|
||||
|
||||
pub fn is_dur_not_set(num: &i32) -> bool {
|
||||
*num == 0
|
||||
}
|
||||
|
||||
pub fn is_set(num: &i32) -> bool {
|
||||
*num >= 0
|
||||
}
|
||||
}
|
||||
|
@@ -4,18 +4,18 @@ use serde::{Deserialize, Serialize};
|
||||
|
||||
#[derive(Clone, Debug, Deserialize, Serialize)]
|
||||
pub struct LoginResult {
|
||||
pub id: uuid::Uuid,
|
||||
pub id: i32,
|
||||
pub username: String,
|
||||
pub token: String,
|
||||
#[serde(alias = "token_type")]
|
||||
pub token_type: String,
|
||||
pub expiration: i64,
|
||||
pub expiration: i32,
|
||||
}
|
||||
|
||||
impl Default for LoginResult {
|
||||
fn default() -> Self {
|
||||
LoginResult {
|
||||
id: uuid::Uuid::nil(),
|
||||
id: -1,
|
||||
username: String::new(),
|
||||
token: String::new(),
|
||||
token_type: String::new(),
|
||||
|
56
src/song.rs
56
src/song.rs
@@ -1,7 +1,6 @@
|
||||
use std::io::Read;
|
||||
|
||||
use crate::constants;
|
||||
use crate::init;
|
||||
use crate::types;
|
||||
|
||||
use rand::Rng;
|
||||
@@ -9,9 +8,9 @@ use serde::{Deserialize, Serialize};
|
||||
|
||||
#[derive(Clone, Debug, Default, Deserialize, Serialize)]
|
||||
pub struct Song {
|
||||
#[serde(skip_serializing_if = "init::is_uuid_nil")]
|
||||
#[serde(skip_serializing_if = "is_zero")]
|
||||
#[serde(alias = "id")]
|
||||
pub id: uuid::Uuid,
|
||||
pub id: i32,
|
||||
#[serde(skip_serializing_if = "String::is_empty")]
|
||||
pub title: String,
|
||||
#[serde(skip_serializing_if = "String::is_empty")]
|
||||
@@ -22,17 +21,17 @@ pub struct Song {
|
||||
pub album_artist: String,
|
||||
#[serde(skip_serializing_if = "String::is_empty")]
|
||||
pub genre: String,
|
||||
#[serde(skip_serializing_if = "init::is_zero")]
|
||||
#[serde(skip_serializing_if = "is_zero")]
|
||||
pub year: i32,
|
||||
#[serde(skip_serializing_if = "init::is_dur_not_set")]
|
||||
#[serde(skip_serializing_if = "is_dur_not_set")]
|
||||
pub duration: i32,
|
||||
#[serde(skip_serializing_if = "init::is_zero")]
|
||||
#[serde(skip_serializing_if = "is_zero")]
|
||||
pub track: i32,
|
||||
#[serde(skip_serializing_if = "init::is_zero")]
|
||||
#[serde(skip_serializing_if = "is_zero")]
|
||||
pub disc: i32,
|
||||
#[serde(skip_serializing_if = "init::is_zero")]
|
||||
#[serde(skip_serializing_if = "is_zero")]
|
||||
pub disc_count: i32,
|
||||
#[serde(skip_serializing_if = "init::is_zero")]
|
||||
#[serde(skip_serializing_if = "is_zero")]
|
||||
pub track_count: i32,
|
||||
#[serde(skip_serializing_if = "String::is_empty")]
|
||||
pub audio_type: String,
|
||||
@@ -40,8 +39,8 @@ pub struct Song {
|
||||
pub date_created: String,
|
||||
#[serde(skip_serializing_if = "String::is_empty")]
|
||||
pub filename: String,
|
||||
#[serde(skip_serializing_if = "init::is_uuid_nil")]
|
||||
pub user_id: uuid::Uuid,
|
||||
#[serde(skip_serializing_if = "is_zero")]
|
||||
pub user_id: i32,
|
||||
#[serde(skip)]
|
||||
pub data: Vec<u8>,
|
||||
#[serde(skip)]
|
||||
@@ -56,6 +55,14 @@ pub struct Song {
|
||||
// pub coverart_id: i32,
|
||||
}
|
||||
|
||||
fn is_zero(num: &i32) -> bool {
|
||||
*num == 0
|
||||
}
|
||||
|
||||
fn is_dur_not_set(num: &i32) -> bool {
|
||||
*num == 0
|
||||
}
|
||||
|
||||
impl Song {
|
||||
pub fn to_metadata_json(&self, pretty: bool) -> Result<String, serde_json::Error> {
|
||||
if pretty {
|
||||
@@ -227,9 +234,9 @@ mod embedded {
|
||||
// The song's duration is a floating point in seconds
|
||||
#[derive(Clone, Debug, Deserialize, Serialize)]
|
||||
pub struct Song {
|
||||
#[serde(skip_serializing_if = "init::is_uuid_nil")]
|
||||
#[serde(skip_serializing_if = "is_embed_zero")]
|
||||
#[serde(alias = "id")]
|
||||
pub id: uuid::Uuid,
|
||||
pub id: i32,
|
||||
#[serde(skip_serializing_if = "String::is_empty")]
|
||||
pub title: String,
|
||||
#[serde(skip_serializing_if = "String::is_empty")]
|
||||
@@ -240,17 +247,17 @@ mod embedded {
|
||||
pub album_artist: String,
|
||||
#[serde(skip_serializing_if = "String::is_empty")]
|
||||
pub genre: String,
|
||||
#[serde(skip_serializing_if = "init::is_embed_zero")]
|
||||
#[serde(skip_serializing_if = "is_embed_zero")]
|
||||
pub year: i32,
|
||||
#[serde(skip_serializing_if = "init::is_embed_dur_not_set")]
|
||||
#[serde(skip_serializing_if = "is_embed_dur_not_set")]
|
||||
pub duration: f64,
|
||||
#[serde(skip_serializing_if = "init::is_embed_zero")]
|
||||
#[serde(skip_serializing_if = "is_embed_zero")]
|
||||
pub track: i32,
|
||||
#[serde(skip_serializing_if = "init::is_embed_zero")]
|
||||
#[serde(skip_serializing_if = "is_embed_zero")]
|
||||
pub disc: i32,
|
||||
#[serde(skip_serializing_if = "init::is_embed_zero")]
|
||||
#[serde(skip_serializing_if = "is_embed_zero")]
|
||||
pub disc_count: i32,
|
||||
#[serde(skip_serializing_if = "init::is_embed_zero")]
|
||||
#[serde(skip_serializing_if = "is_embed_zero")]
|
||||
pub track_count: i32,
|
||||
#[serde(skip_serializing_if = "String::is_empty")]
|
||||
pub audio_type: String,
|
||||
@@ -258,7 +265,7 @@ mod embedded {
|
||||
pub date_created: String,
|
||||
#[serde(skip_serializing_if = "String::is_empty")]
|
||||
pub filename: String,
|
||||
#[serde(skip_serializing_if = "init::is_embed_zero")]
|
||||
#[serde(skip_serializing_if = "is_embed_zero")]
|
||||
pub user_id: i32,
|
||||
#[serde(skip)]
|
||||
pub data: Vec<u8>,
|
||||
@@ -274,11 +281,18 @@ mod embedded {
|
||||
// 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 {
|
||||
fn default() -> Self {
|
||||
Song {
|
||||
id: uuid::Uuid::nil(),
|
||||
id: 0,
|
||||
title: String::new(),
|
||||
artist: String::new(),
|
||||
album: String::new(),
|
||||
|
39
src/token.rs
39
src/token.rs
@@ -5,16 +5,16 @@ use serde::{Deserialize, Serialize};
|
||||
#[derive(Clone, Debug, Deserialize, Serialize)]
|
||||
pub struct Token {
|
||||
pub scope: String,
|
||||
pub expiration: i64,
|
||||
pub expiration: i32,
|
||||
pub audience: String,
|
||||
pub issuer: String,
|
||||
pub issued: i64,
|
||||
pub issued: i32,
|
||||
}
|
||||
|
||||
#[derive(Clone, Debug, Deserialize, Serialize)]
|
||||
pub struct AccessToken {
|
||||
#[serde(alias = "init::is_uuid_nil")]
|
||||
pub user_id: uuid::Uuid,
|
||||
#[serde(alias = "user_id")]
|
||||
pub user_id: i32,
|
||||
#[serde(alias = "username")]
|
||||
pub username: String,
|
||||
#[serde(alias = "token")]
|
||||
@@ -22,7 +22,7 @@ pub struct AccessToken {
|
||||
#[serde(alias = "token_type")]
|
||||
pub token_type: String,
|
||||
#[serde(alias = "expiration")]
|
||||
pub expiration: i64,
|
||||
pub expiration: i32,
|
||||
#[serde(alias = "message")]
|
||||
pub message: String,
|
||||
}
|
||||
@@ -57,27 +57,14 @@ impl Token {
|
||||
false
|
||||
}
|
||||
|
||||
// TODO: Implement
|
||||
pub fn contains_scope(&self, des_scope: &String) -> bool {
|
||||
self.scope.contains(des_scope)
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use super::*;
|
||||
|
||||
#[test]
|
||||
fn test_token_scope_check() {
|
||||
let mut token = Token::default();
|
||||
token.scope = String::from("song:read song:upload song:download");
|
||||
|
||||
let check_scope = String::from("song:download");
|
||||
let result = token.contains_scope(&check_scope);
|
||||
|
||||
assert!(
|
||||
result,
|
||||
"Error: The scope {:?} was not found in the token's scope {:?}",
|
||||
check_scope, token.scope
|
||||
);
|
||||
let extracted_token: String = String::from("Token");
|
||||
|
||||
if extracted_token == *des_scope {
|
||||
return true;
|
||||
}
|
||||
|
||||
false
|
||||
}
|
||||
}
|
||||
|
53
src/user.rs
53
src/user.rs
@@ -1,13 +1,11 @@
|
||||
use std::default::Default;
|
||||
|
||||
use crate::init;
|
||||
|
||||
use serde::{Deserialize, Serialize};
|
||||
|
||||
#[derive(Clone, Debug, Deserialize, Serialize)]
|
||||
pub struct User {
|
||||
#[serde(skip_serializing_if = "init::is_uuid_nil")]
|
||||
pub id: uuid::Uuid,
|
||||
#[serde(skip_serializing_if = "is_id_valid")]
|
||||
pub id: i32,
|
||||
#[serde(skip_serializing_if = "String::is_empty")]
|
||||
pub username: String,
|
||||
#[serde(skip_serializing_if = "String::is_empty")]
|
||||
@@ -21,20 +19,22 @@ pub struct User {
|
||||
#[serde(skip_serializing_if = "String::is_empty")]
|
||||
pub lastname: String,
|
||||
pub email_verified: bool,
|
||||
#[serde(with = "time::serde::rfc3339::option")]
|
||||
pub date_created: Option<time::OffsetDateTime>,
|
||||
#[serde(skip_serializing_if = "String::is_empty")]
|
||||
pub date_created: String,
|
||||
#[serde(skip_serializing_if = "String::is_empty")]
|
||||
pub status: String,
|
||||
#[serde(with = "time::serde::rfc3339::option")]
|
||||
pub last_login: Option<time::OffsetDateTime>,
|
||||
#[serde(skip_serializing_if = "init::is_uuid_nil")]
|
||||
pub salt_id: uuid::Uuid,
|
||||
#[serde(skip_serializing_if = "String::is_empty")]
|
||||
pub last_login: String,
|
||||
}
|
||||
|
||||
fn is_id_valid(num: &i32) -> bool {
|
||||
*num > 0
|
||||
}
|
||||
|
||||
impl Default for User {
|
||||
fn default() -> Self {
|
||||
User {
|
||||
id: uuid::Uuid::new_v4(),
|
||||
id: -1,
|
||||
username: String::new(),
|
||||
password: String::new(),
|
||||
email: String::new(),
|
||||
@@ -42,10 +42,9 @@ impl Default for User {
|
||||
firstname: String::new(),
|
||||
lastname: String::new(),
|
||||
email_verified: false,
|
||||
date_created: None,
|
||||
date_created: String::new(),
|
||||
status: String::new(),
|
||||
last_login: None,
|
||||
salt_id: uuid::Uuid::nil(),
|
||||
last_login: String::new(),
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -59,29 +58,3 @@ 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,7 +28,6 @@ mod utils {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod song_tests {
|
||||
use std::fs::File;
|
||||
use std::io::Write;
|
||||
@@ -152,7 +151,6 @@ mod song_tests {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod album_tests {
|
||||
|
||||
use crate::utils;
|
||||
|
Reference in New Issue
Block a user