summaryrefslogtreecommitdiff
path: root/src/types.rs
blob: c34e56fc557715ea528282347ffe8feb87efd513 (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
use core::panic;
use musli::{Allocator, Decode, Decoder, Encode, Encoder};
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),
}

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)]
#[repr(u8)]

pub enum HydrusPermissions {
    ImportAndEditURLs = 0,
    ImportAndEditFiles,
    EditFileTags,
    SearchAndFetchFiles,
    ManagePages,
    ManageCookiesAndHeaders,
    ManageDatabase,
    EditFileNotes,
    EditFileRelationships,
    EditFileRatings,
    ManagePopups,
    EditFileTimes,
    CommitPending,
    SeeLocalPaths,
}

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 From<u8> for HydrusPermissions {
    fn from(value: u8) -> Self {
        match value {
            0 => HydrusPermissions::ImportAndEditURLs,
            1 => HydrusPermissions::ImportAndEditFiles,
            2 => HydrusPermissions::EditFileTags,
            3 => HydrusPermissions::SearchAndFetchFiles,
            4 => HydrusPermissions::ManagePages,
            5 => HydrusPermissions::ManageCookiesAndHeaders,
            6 => HydrusPermissions::ManageDatabase,
            7 => HydrusPermissions::EditFileNotes,
            8 => HydrusPermissions::EditFileRelationships,
            9 => HydrusPermissions::EditFileRatings,
            10 => HydrusPermissions::ManagePopups,
            11 => HydrusPermissions::EditFileTimes,
            12 => HydrusPermissions::CommitPending,
            13 => HydrusPermissions::SeeLocalPaths,
            _ => panic!("incorrect permission id"),
        }
    }
}

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>,
    {
        let val: u8 = decoder.decode()?;
        Ok(val.into())
    }
}

#[derive(Decode)]
struct AccessKey {
    access_key: String,
}

#[derive(Decode)]
struct SessionKey {
    session_key: String,
}

#[derive(Decode)]
pub struct KeyInfo {
    name: String,
    permits_everything: bool,
    basic_permissions: Vec<HydrusPermissions>,
    human_permissions: String,
}

#[derive(PartialEq, Debug, Clone)]
#[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,
}

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 From<u8> for ServiceType {
    fn from(value: u8) -> Self {
        match value {
            0 => ServiceType::TagRepository,
            1 => ServiceType::FileRepository,
            2 => ServiceType::LocalFileDomain,
            5 => ServiceType::LocalTagDomain,
            6 => ServiceType::NumericalRating,
            7 => ServiceType::BoolRating,
            10 => ServiceType::AllKnownTags,
            11 => ServiceType::AllKnownFiles,
            12 => ServiceType::LocalBooru,
            13 => ServiceType::IPFS,
            14 => ServiceType::Trash,
            15 => ServiceType::AllLocalFiles,
            17 => ServiceType::FileNotes,
            18 => ServiceType::ClientAPI,
            19 => ServiceType::DeletedFromAnywhere,
            20 => ServiceType::LocalUpdates,
            21 => ServiceType::AllMyFiles,
            22 => ServiceType::IncDecRating,
            99 => ServiceType::ServerAdmin,
            _ => panic!("incorrect service id"),
        }
    }
}

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(decoder.decode()?)
    }
}

#[derive(Decode)]
pub struct Service {
    name: String,
    #[musli(default)]
    service_key: String,
    servicetype: ServiceType,
    type_pretty: String,
}