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
|
/*
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) 2023 metamuffin <metamuffin.org>
*/
use crate::{stream::StreamFormat, user};
#[cfg(feature = "rocket")]
use rocket::{FromFormField, UriDisplayQuery};
use serde::{Deserialize, Serialize};
use std::{collections::HashMap, fmt::Display};
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct User {
pub name: String,
pub display_name: String,
pub password: Vec<u8>,
pub admin: bool,
pub theme: Theme,
pub permissions: PermissionSet,
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct NodeUserData {
pub watched: WatchedState,
}
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(rename_all = "snake_case")]
pub enum WatchedState {
None,
Progress(f64),
Watched,
}
#[derive(Debug, Clone, Copy, Serialize, Deserialize, PartialEq)]
#[cfg_attr(feature = "rocket", derive(FromFormField, UriDisplayQuery))]
#[serde(rename_all = "snake_case")]
pub enum Theme {
Dark,
Light,
Purple,
}
impl Theme {
pub const LIST: &'static [(Theme, &'static str)] = &[
(Theme::Dark, "Dark"),
(Theme::Light, "Light"),
(Theme::Purple, "Purple"),
];
}
#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct PermissionSet(pub HashMap<UserPermission, bool>);
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, Hash)]
#[serde(rename_all = "snake_case")]
pub enum UserPermission {
Admin,
// ManageUsers,
// GenerateInvite,
ManageSelf,
AccessNode(String),
StreamFormat(StreamFormat),
Transcode,
FederatedContent,
}
impl UserPermission {
pub const ALL_ENUMERABLE: &'static [UserPermission] = {
use UserPermission::*;
&[
Admin,
Transcode,
ManageSelf,
FederatedContent,
StreamFormat(user::StreamFormat::Original),
]
};
pub fn default_value(&self) -> bool {
use user::StreamFormat::*;
use UserPermission::*;
matches!(
self,
Transcode
| ManageSelf
| FederatedContent
| StreamFormat(Jhls | HlsMaster | HlsVariant | Matroska | Segment | Webvtt)
)
}
}
impl Display for UserPermission {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.write_str(&match self {
UserPermission::ManageSelf => format!("manage self (password, display name, etc.)"),
UserPermission::FederatedContent => format!("access to federated content"),
UserPermission::Admin => format!("administrative rights"),
UserPermission::StreamFormat(StreamFormat::Original) => {
format!("downloading the original media")
}
UserPermission::StreamFormat(StreamFormat::Matroska) => {
format!("downloading a remuxed WebM/Matroska version of the media ")
}
UserPermission::StreamFormat(x) => {
format!("downloading media via {x:?}")
}
UserPermission::Transcode => format!("transcoding"),
// 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,
}
}
}
|