aboutsummaryrefslogtreecommitdiff
path: root/common/src/user.rs
blob: c6da1661053e79a57efdaf896447293e6d61362e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
/*
    This file is part of jellything (https://codeberg.org/metamuffin/jellything)
    which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
    Copyright (C) 2025 metamuffin <metamuffin.org>
*/
use bincode::{Decode, Encode};
use serde::{Deserialize, Serialize};
use std::{
    collections::{HashMap, HashSet},
    fmt::Display,
};

use crate::url_enum;

#[rustfmt::skip]
#[derive(Debug, Clone, Serialize, Deserialize, Encode, Decode, Default)]
pub struct User {
    pub name: String,
    pub display_name: String,
    pub password: Vec<u8>,
    pub admin: bool,
    #[serde(default)] pub theme: Theme,
    #[serde(default)] pub player_preference: PlayerKind,
    #[serde(default)] pub native_secret: String,
    pub permissions: PermissionSet,
}

#[derive(Debug, Clone, Serialize, Deserialize, Encode, Decode)]
pub struct NodeUserData {
    pub watched: WatchedState,
    #[serde(default)]
    pub rating: i32,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Encode, Decode)]
#[serde(rename_all = "snake_case")]
pub enum WatchedState {
    None,
    Progress(f64),
    Watched,
    Pending,
}

url_enum!(
    #[derive(Debug, Clone, Serialize, Deserialize)]
    #[serde(rename_all = "snake_case")]
    enum ApiWatchedState {
        None = "none",
        Watched = "watched",
        Pending = "pending",
    }
);

#[derive(Debug, Serialize, Deserialize)]
pub struct CreateSessionParams {
    pub username: String,
    pub password: String,
    pub expire: Option<i64>,
    pub drop_permissions: Option<HashSet<UserPermission>>,
}

url_enum!(
    #[derive(Debug, Clone, Copy, Serialize, Default, Deserialize, PartialEq, Encode, Decode)]
    #[serde(rename_all = "snake_case")]
    enum Theme {
        #[default]
        Dark = "dark",
        Light = "light",
        Purple = "purple",
        Black = "black",
    }
);

url_enum!(
    #[derive(Debug, Clone, Copy, Serialize, Default, Deserialize, PartialEq, Encode, Decode)]
    #[serde(rename_all = "snake_case")]
    enum PlayerKind {
        #[default]
        Browser = "browser",
        Native = "native",
        NativeFullscreen = "native_fullscreen",
    }
);

#[derive(Debug, Clone, Serialize, Deserialize, Default, Encode, Decode)]
pub struct PermissionSet(pub HashMap<UserPermission, bool>);

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, Hash, Encode, Decode)]
#[serde(rename_all = "snake_case")]
pub enum UserPermission {
    Admin,
    // ManageUsers,
    // GenerateInvite,
    ManageSelf,

    AccessNode(String),
    Transcode,
    FederatedContent,
}

impl UserPermission {
    pub const ALL_ENUMERABLE: &'static [UserPermission] = {
        use UserPermission::*;
        &[Admin, Transcode, ManageSelf, FederatedContent]
    };
    pub fn default_value(&self) -> bool {
        use UserPermission::*;
        matches!(self, Transcode | ManageSelf | FederatedContent)
    }
}

impl Display for UserPermission {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.write_str(&match self {
            UserPermission::ManageSelf => "manage self (password, display name, etc.)".to_string(),
            UserPermission::FederatedContent => "access to federated content".to_string(),
            UserPermission::Admin => "administrative rights".to_string(),
            // UserPermission::StreamFormat(StreamFormat::Original) => {
            //     "downloading the original media".to_string()
            // }
            // UserPermission::StreamFormat(StreamFormat::Matroska) => {
            //     "downloading a remuxed WebM/Matroska version of the media ".to_string()
            // }
            // UserPermission::StreamFormat(x) => {
            //     format!("downloading media via {x:?}")
            // }
            UserPermission::Transcode => "transcoding".to_string(),
            // UserPermission::ManageUsers => format!("management of all users"),
            // UserPermission::GenerateInvite => format!("inviting new users"),
            UserPermission::AccessNode(s) => format!("access to library node {s:?}"),
        })
    }
}

impl Default for NodeUserData {
    fn default() -> Self {
        Self {
            watched: WatchedState::None,
            rating: 0,
        }
    }
}