novel-api 0.19.1

Novel APIs from various sources
Documentation
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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
use chrono::NaiveDateTime;
use http::StatusCode;
use serde::{Deserialize, Serialize};
use serde_with::skip_serializing_none;
use url::Url;
use zeroize::ZeroizeOnDrop;

use crate::Error;

#[must_use]
#[derive(Deserialize)]
#[serde(rename_all = "camelCase")]
pub(crate) struct Status {
    pub http_code: u16,
    pub error_code: u16,
    pub msg: Option<String>,
}

impl Status {
    #[must_use]
    pub(crate) fn ok(&self) -> bool {
        self.http_code == StatusCode::OK && self.error_code == 200
    }

    // for buy_chapter
    #[must_use]
    pub(crate) fn created(&self) -> bool {
        self.http_code == StatusCode::CREATED && self.error_code == 200
    }

    #[must_use]
    pub(crate) fn not_found(&self) -> bool {
        self.http_code == StatusCode::NOT_FOUND && self.error_code == 404
    }

    #[must_use]
    pub(crate) fn unauthorized(&self) -> bool {
        self.http_code == StatusCode::UNAUTHORIZED && self.error_code == 502
    }

    #[must_use]
    pub(crate) fn already_ordered(&self) -> bool {
        self.http_code == StatusCode::BAD_REQUEST && self.error_code == 671
    }

    #[must_use]
    pub(crate) fn already_signed_in(&self) -> bool {
        self.http_code == StatusCode::BAD_REQUEST && self.error_code == 1050
    }

    #[must_use]
    pub(crate) fn not_available(&self) -> bool {
        self.http_code == StatusCode::EXPECTATION_FAILED && self.error_code == 1116
    }

    pub(crate) fn check(self) -> Result<(), Error> {
        if !(self.ok() || self.created()) {
            return Err(Error::Http {
                code: StatusCode::from_u16(self.http_code)?,
                msg: self.msg.unwrap().trim().to_string(),
            })?;
        }

        Ok(())
    }
}

#[must_use]
#[derive(Deserialize)]
pub(crate) struct GenericResponse {
    pub status: Status,
}

#[must_use]
#[derive(Serialize, ZeroizeOnDrop)]
pub(crate) struct LogInRequest {
    pub username: String,
    pub password: String,
}

#[must_use]
#[derive(Deserialize)]
pub(crate) struct UserInfoResponse {
    pub status: Status,
    pub data: Option<UserInfoData>,
}

#[must_use]
#[derive(Deserialize)]
#[serde(rename_all = "camelCase")]
pub(crate) struct UserInfoData {
    pub nick_name: String,
    pub avatar: Url,
}

#[must_use]
#[derive(Deserialize)]
pub(crate) struct MoneyResponse {
    pub status: Status,
    pub data: Option<MoneyData>,
}

#[must_use]
#[derive(Deserialize)]
#[serde(rename_all = "camelCase")]
pub(crate) struct MoneyData {
    // 火券
    pub fire_money_remain: u32,
    // 代券
    pub coupons_remain: u32,
}

#[must_use]
#[derive(Serialize)]
pub(crate) struct SignRequest {
    pub sign_date: String,
}

#[must_use]
#[derive(Serialize)]
pub(crate) struct BookshelfInfoRequest {
    pub expand: &'static str,
}

#[must_use]
#[derive(Deserialize)]
pub(crate) struct BookshelfInfoResponse {
    pub status: Status,
    pub data: Option<Vec<BookshelfInfoData>>,
}

#[must_use]
#[derive(Deserialize)]
pub(crate) struct BookshelfInfoData {
    pub expand: Option<BookshelfInfoExpand>,
}

#[must_use]
#[derive(Deserialize)]
pub(crate) struct BookshelfInfoExpand {
    pub novels: Option<Vec<BookshelfInfoNovelInfo>>,
}

#[must_use]
#[derive(Deserialize)]
#[serde(rename_all = "camelCase")]
pub(crate) struct BookshelfInfoNovelInfo {
    pub novel_id: u32,
}

#[must_use]
#[derive(Serialize)]
pub(crate) struct NovelInfoRequest {
    pub expand: &'static str,
}

#[must_use]
#[derive(Deserialize)]
pub(crate) struct NovelInfoResponse {
    pub status: Status,
    pub data: Option<NovelInfoData>,
}

#[must_use]
#[derive(Deserialize)]
#[serde(rename_all = "camelCase")]
pub(crate) struct NovelInfoData {
    pub novel_name: String,
    pub novel_cover: Url,
    pub author_name: String,
    pub char_count: i32,
    pub type_id: u16,
    pub sign_status: String,
    pub is_finish: bool,
    pub add_time: NaiveDateTime,
    pub last_update_time: NaiveDateTime,
    pub expand: NovelInfoExpand,
}

#[must_use]
#[derive(Deserialize)]
#[serde(rename_all = "camelCase")]
pub(crate) struct NovelInfoExpand {
    pub type_name: String,
    pub intro: String,
    pub sys_tags: Vec<NovelInfoSysTag>,
}

#[must_use]
#[derive(Deserialize)]
#[serde(rename_all = "camelCase")]
pub(crate) struct NovelInfoSysTag {
    pub sys_tag_id: u16,
    pub tag_name: String,
}

#[must_use]
#[derive(Serialize)]
pub(crate) struct ShortCommentRequest {
    pub page: u16,
    pub size: u16,
    pub r#type: &'static str,
    pub sort: &'static str,
}

#[must_use]
#[derive(Serialize)]
pub(crate) struct LongCommentRequest {
    pub page: u16,
    pub size: u16,
    pub charlen: u8,
    pub sort: &'static str,
}

#[must_use]
#[derive(Deserialize)]
pub(crate) struct CommentResponse {
    pub status: Status,
    pub data: Option<Vec<CommentData>>,
}

#[must_use]
#[derive(Deserialize)]
#[serde(rename_all = "camelCase")]
pub(crate) struct CommentData {
    pub comment_id: u32,
    pub avatar: Url,
    pub title: Option<String>,
    pub content: String,
    pub create_time: NaiveDateTime,
    pub display_name: String,
    pub fav_count: u16,
    pub reply_num: u16,
}

#[must_use]
#[derive(Deserialize)]
pub(crate) struct LongCommentContentResponse {
    pub status: Status,
    pub data: Option<LongCommentContent>,
}

#[must_use]
#[derive(Deserialize)]
pub(crate) struct LongCommentContent {
    pub content: String,
}

#[must_use]
#[derive(Serialize)]
pub(crate) struct ReplyRequest {
    pub page: u16,
    pub size: u16,
}

#[must_use]
#[derive(Deserialize)]
pub(crate) struct ReplyResponse {
    pub status: Status,
    pub data: Option<Vec<ReplyData>>,
}

#[must_use]
#[derive(Deserialize)]
#[serde(rename_all = "camelCase")]
pub(crate) struct ReplyData {
    pub reply_id: u32,
    pub avatar: Url,
    pub content: String,
    pub create_time: NaiveDateTime,
    pub display_name: String,
}

#[must_use]
#[derive(Deserialize)]
pub(crate) struct VolumeInfosResponse {
    pub status: Status,
    pub data: Option<VolumeInfosData>,
}

#[must_use]
#[derive(Deserialize)]
#[serde(rename_all = "camelCase")]
pub(crate) struct VolumeInfosData {
    pub volume_list: Vec<VolumeInfosVolume>,
}

#[must_use]
#[derive(Deserialize)]
#[serde(rename_all = "camelCase")]
pub(crate) struct VolumeInfosVolume {
    pub volume_id: u32,
    pub title: String,
    pub chapter_list: Vec<VolumeInfosChapter>,
}

#[must_use]
#[derive(Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
pub(crate) struct VolumeInfosChapter {
    pub novel_id: u32,
    pub chap_id: u32,
    pub title: String,
    pub char_count: u32,
    pub is_vip: bool,
    pub need_fire_money: u16,
    #[serde(rename = "AddTime")]
    pub add_time: NaiveDateTime,
    pub update_time: Option<NaiveDateTime>,
}

#[must_use]
#[derive(Serialize)]
#[serde(rename_all = "camelCase")]
pub(crate) struct ContentInfosRequest {
    pub expand: &'static str,
}

#[must_use]
#[derive(Deserialize)]
pub(crate) struct ContentInfosResponse {
    pub status: Status,
    pub data: Option<ContentInfosData>,
}

#[must_use]
#[derive(Deserialize)]
pub(crate) struct ContentInfosData {
    pub expand: ContentInfosExpand,
}

#[must_use]
#[derive(Deserialize)]
#[serde(rename_all = "camelCase")]
pub(crate) struct ContentInfosExpand {
    pub content: String,
    pub is_content_encrypted: bool,
}

#[must_use]
#[derive(Serialize)]
#[serde(rename_all = "camelCase")]
pub(crate) struct OrderRequest {
    pub order_all: bool,
    pub auto_order: bool,
    pub chap_ids: Vec<u32>,
    pub order_type: &'static str,
}

#[must_use]
#[derive(Deserialize)]
pub(crate) struct CategoryResponse {
    pub status: Status,
    pub data: Option<Vec<CategoryData>>,
}

#[must_use]
#[derive(Deserialize)]
#[serde(rename_all = "camelCase")]
pub(crate) struct CategoryData {
    pub type_id: u16,
    pub type_name: String,
}

#[must_use]
#[derive(Deserialize)]
pub(crate) struct TagResponse {
    pub status: Status,
    pub data: Option<Vec<Tag>>,
}

#[must_use]
#[derive(Deserialize)]
#[serde(rename_all = "camelCase")]
pub(crate) struct Tag {
    pub sys_tag_id: u16,
    pub tag_name: String,
}

#[must_use]
#[skip_serializing_none]
#[derive(Serialize)]
#[serde(rename_all = "camelCase")]
pub(crate) struct SearchRequest {
    pub q: String,
    pub is_finish: i8,
    pub update_days: i8,
    pub systagids: Option<String>,
    pub page: u16,
    pub size: u16,
    pub sort: &'static str,
    pub expand: &'static str,
}

#[must_use]
#[derive(Deserialize)]
pub(crate) struct SearchResponse {
    pub status: Status,
    pub data: Option<SearchData>,
}

#[must_use]
#[derive(Deserialize)]
pub(crate) struct SearchData {
    pub novels: Vec<SearchNovelInfo>,
}

#[must_use]
#[derive(Deserialize)]
#[serde(rename_all = "camelCase")]
pub(crate) struct SearchNovelInfo {
    pub novel_id: u32,
    pub sign_status: String,
    pub char_count: i32,
    pub type_id: u16,
    pub expand: SearchExpand,
}

#[must_use]
#[derive(Deserialize)]
#[serde(rename_all = "camelCase")]
pub(crate) struct SearchExpand {
    pub sys_tags: Vec<NovelInfoSysTag>,
}

#[must_use]
#[skip_serializing_none]
#[derive(Serialize)]
#[serde(rename_all = "camelCase")]
pub(crate) struct NovelsRequest {
    pub charcountbegin: u32,
    pub charcountend: u32,
    pub updatedays: i8,
    pub isfinish: &'static str,
    pub isfree: &'static str,
    pub systagids: Option<String>,
    pub notexcludesystagids: Option<String>,
    pub page: u16,
    pub size: u16,
    pub sort: &'static str,
}

#[must_use]
#[derive(Deserialize)]
pub(crate) struct NovelsResponse {
    pub status: Status,
    pub data: Option<Vec<NovelsData>>,
}

#[must_use]
#[derive(Deserialize)]
#[serde(rename_all = "camelCase")]
pub(crate) struct NovelsData {
    pub novel_id: u32,
}