summaryrefslogtreecommitdiff
path: root/src/types.rs
blob: 9c2684db9a9aa70b05f87ec5011f184ea1a6dde5 (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
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
use musli::{Allocator, Decode, Decoder, Encode, Encoder};
use std::collections::HashMap;
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 encode/decode 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>,
    {
        Ok(HydrusPermissions::from_repr(decoder.decode()?).unwrap())
    }
}

#[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>,
    {
        Ok(ServiceType::from_repr(decoder.decode()?).unwrap())
    }
}

#[derive(Decode, Debug)]
pub struct Service {
    pub name: String,
    #[musli(default)]
    pub service_key: String,
    pub r#type: ServiceType,
    pub type_pretty: String,
    #[musli(default)]
    pub star_shape: Option<String>,
    #[musli(default)]
    pub min_stars: Option<u8>,
    #[musli(default)]
    pub max_stars: Option<u8>,
}

#[derive(Decode, Debug)]
pub struct ServiceResponse {
    services: HashMap<String, Service>,
}

impl ServiceResponse {
    pub fn service_vec(mut self) -> Vec<Service> {
        let mut res = Vec::new();
        for (key, mut service) in self.services.drain() {
            service.service_key = key;
            res.push(service);
        }
        res
    }
}

pub enum FileDomain {
    FileServiceKey(String),
    FileServiceKeys(Vec<String>),
    DeletedFileServiceKey(String),
    DeletedFileServiceKeys(Vec<String>),
}

#[derive(Encode, Debug, Default)]
pub struct AddFileRequest {
    pub path: String,
    #[musli(skip)]
    pub delete_after_successful_import: Option<bool>,
    #[musli(skip)]
    pub file_service_key: Option<String>,
    #[musli(skip)]
    pub file_service_keys: Option<Vec<String>>,
    #[musli(skip)]
    pub deleted_file_service_key: Option<String>,
    #[musli(skip)]
    pub deleted_file_service_keys: Option<Vec<String>>,
}

#[derive(PartialEq, Debug, Clone, FromRepr)]
#[repr(u8)]
pub enum FileAddStatus {
    SuccessfulImport = 1,
    AlreadyInDatabase,
    PreviouslyDeleted,
    FailedToImport,
    FileVetoed = 7,
}

impl<M> Encode<M> for FileAddStatus {
    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 FileAddStatus
where
    A: Allocator,
{
    #[inline]
    fn decode<D>(decoder: D) -> Result<Self, D::Error>
    where
        D: Decoder<'de>,
    {
        Ok(FileAddStatus::from_repr(decoder.decode()?).unwrap())
    }
}

#[derive(Decode)]
pub struct FileAddResponse {
    pub status: FileAddStatus,
    pub hash: String,
    pub note: String,
}

#[derive(Encode, Debug, Default)]
pub struct DeleteFileRequest {
    pub path: String,
    #[musli(skip)]
    pub file_service_key: Option<String>,
    #[musli(skip)]
    pub file_service_keys: Option<Vec<String>>,
    #[musli(skip)]
    pub deleted_file_service_key: Option<String>,
    #[musli(skip)]
    pub deleted_file_service_keys: Option<Vec<String>>,
    #[musli(skip)]
    pub reason: Option<String>,
}