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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
|
use musli::{Allocator, Decode, Decoder, Encode, Encoder};
use strum_macros::FromRepr;
use thiserror::Error;
#[derive(Error, Debug)]
pub enum HydrusError {
#[error("failed to connect to Hydrus")]
NetworkError(ureq::Error),
#[error("failed to deserialize data")]
DeserializeError(musli::json::Error),
#[error("api or session key needed")]
KeyNotSupplied,
}
impl From<musli::json::Error> for HydrusError {
fn from(value: musli::json::Error) -> Self {
HydrusError::DeserializeError(value)
}
}
impl From<ureq::Error> for HydrusError {
fn from(value: ureq::Error) -> Self {
HydrusError::NetworkError(value)
}
}
#[derive(PartialEq, Debug, Clone, FromRepr)]
#[repr(u8)]
pub enum HydrusPermissions {
ImportAndEditURLs = 0,
ImportAndEditFiles,
EditFileTags,
SearchAndFetchFiles,
ManagePages,
ManageCookiesAndHeaders,
ManageDatabase,
EditFileNotes,
EditFileRelationships,
EditFileRatings,
ManagePopups,
EditFileTimes,
CommitPending,
SeeLocalPaths,
Null = 255,
}
impl<M> Encode<M> for HydrusPermissions {
type Encode = Self;
#[inline]
fn encode<E>(&self, encoder: E) -> Result<(), E::Error>
where
E: Encoder<Mode = M>,
{
encoder.encode(self.clone() as u8)
}
#[inline]
fn as_encode(&self) -> &Self::Encode {
self
}
}
impl<'de, M, A> Decode<'de, M, A> for HydrusPermissions
where
A: Allocator,
{
#[inline]
fn decode<D>(decoder: D) -> Result<Self, D::Error>
where
D: Decoder<'de>,
{
if let Some(val) = HydrusPermissions::from_repr(decoder.decode()?) {
return Ok(val);
} else {
return Ok(Self::Null);
}
}
}
#[derive(Decode, Debug)]
pub struct AccessKey {
pub access_key: String,
}
#[derive(Decode, Debug)]
pub struct SessionKey {
pub session_key: String,
}
#[derive(Decode, Debug)]
pub struct KeyInfo {
pub name: String,
pub permits_everything: bool,
pub basic_permissions: Vec<HydrusPermissions>,
pub human_permissions: String,
}
#[derive(PartialEq, Debug, Clone, FromRepr)]
#[repr(u8)]
pub enum ServiceType {
TagRepository = 0,
FileRepository,
LocalFileDomain,
LocalTagDomain = 5,
NumericalRating,
BoolRating,
AllKnownTags = 10,
AllKnownFiles,
LocalBooru,
IPFS,
Trash,
AllLocalFiles,
FileNotes = 17,
ClientAPI,
DeletedFromAnywhere,
LocalUpdates,
AllMyFiles,
IncDecRating,
ServerAdmin = 99,
Null = 255,
}
impl<M> Encode<M> for ServiceType {
type Encode = Self;
#[inline]
fn encode<E>(&self, encoder: E) -> Result<(), E::Error>
where
E: Encoder<Mode = M>,
{
encoder.encode(self.clone() as u8)
}
#[inline]
fn as_encode(&self) -> &Self::Encode {
self
}
}
impl<'de, M, A> Decode<'de, M, A> for ServiceType
where
A: Allocator,
{
#[inline]
fn decode<D>(decoder: D) -> Result<Self, D::Error>
where
D: Decoder<'de>,
{
if let Some(val) = ServiceType::from_repr(decoder.decode()?) {
return Ok(val);
} else {
return Ok(Self::Null);
}
}
}
#[derive(Decode)]
pub struct Service {
pub name: String,
#[musli(default)]
pub service_key: String,
pub servicetype: ServiceType,
pub type_pretty: String,
#[musli(default)]
pub star_shape: String,
#[musli(default)]
pub min_stars: u8,
#[musli(default)]
pub max_stars: u8,
}
|