easy-msr-api 0.1.0

This is a library that provides Rust encapsulation for the MSR API, supporting direct API calls as well as optional Swagger UI documentation.
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
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
//! # 数据传输对象 (DTO)
//! 
//! 定义了API请求和响应的数据结构。
//! 
//! 这些结构体用于序列化和反序列化JSON数据,并提供了OpenAPI文档支持。
//! 所有结构体都实现了`Serialize`、`Deserialize`和`ToSchema` trait。

use serde::{Deserialize, Serialize};
use utoipa::{schema,IntoParams, ToSchema};

/// 统一的API响应格式
/// 
/// 所有API响应都使用这个统一的格式包装。
/// 包含状态码、消息和实际数据。
#[derive(Serialize, Deserialize, Debug, ToSchema)]
pub struct ApiResp<T> {
    /// 响应状态码
    /// 
    /// 0表示成功,其他值表示错误
    #[schema(value_type = i32, example = 0)]
    pub code: i32,
    
    /// 响应消息
    /// 
    /// 成功时为空字符串,错误时包含错误描述
    #[schema(value_type = String, example = "")]
    pub msg: String,
    
    /// 响应数据
    /// 
    /// 实际的业务数据,类型由泛型参数T决定
    pub data: T,
}

impl<T> ApiResp<T> {
    /// 创建成功的响应
    /// 
    /// # 参数
    /// 
    /// * `data` - 要返回的业务数据
    /// 
    /// # 示例
    /// 
    /// ```rust
    /// use easy_msr_api::web::dto::ApiResp;
    /// 
    /// let resp = ApiResp::success("Hello, World!");
    /// assert_eq!(resp.code, 0);
    /// ```
    pub fn success(data: T) -> Self {
        Self {
            code: 0,
            msg: String::new(),
            data,
        }
    }
    
    /// 创建错误响应
    /// 
    /// # 参数
    /// 
    /// * `msg` - 错误消息
    /// 
    /// # 示例
    /// 
    /// ```rust
    /// use easy_msr_api::web::dto::ApiResp;
    /// 
    /// let resp: ApiResp<String> = ApiResp::error("参数错误".to_string());
    /// assert_eq!(resp.code, -1);
    /// ```
    pub fn error(msg: String) -> Self 
    where
        T: Default,
    {
        Self {
            code: -1,
            msg,
            data: T::default(),
        }
    }
}

/// 歌曲数据
/// 
/// 包含歌曲的完整信息,包括音频文件URL、歌词URL等。
#[derive(Serialize, Deserialize, Debug, ToSchema)]
pub struct SongData {
    /// 歌曲唯一标识符(cid)
    #[serde(rename = "cid")]
    #[schema(value_type = String, example = "953953")]
    pub id: String,
    
    /// 歌曲名称
    #[schema(value_type = String, example = "Little Wish")]
    pub name: String,
    
    /// 所属专辑cid
    #[serde(rename = "albumCid")]
    #[schema(value_type = String, example = "3888")]
    pub album_id: String,

    /// 音频文件URL
    #[serde(rename = "sourceUrl")]
    #[schema(value_type = String, example = "https://res01.hycdn.cn/xxx/xxx.wav")]
    pub source_url: Option<String>,

    /// 歌词文件URL
    #[serde(rename = "lyricUrl")]
    #[schema(value_type = String, example = "https://web.hycdn.cn/siren/lyric/xxx/xxx.lrc")]
    pub lyric_url: Option<String>,

    /// MV视频URL
    #[serde(rename = "mvUrl")]
    pub mv_url: Option<String>,

    /// MV封面URL
    #[serde(rename = "mvCoverUrl")]
    pub mv_cover_url: Option<String>,

    /// 艺术家列表
    pub artists: Vec<String>,
}

/// 歌曲响应类型
pub type SongResp = ApiResp<SongData>;

/// 所有歌曲列表单项
/// 
/// 简化版的歌曲信息,用于列表展示。
#[derive(Serialize, Deserialize, Debug, ToSchema)]
pub struct AllSongsItem {
    /// 歌曲唯一标识符(cid)
    #[serde(rename = "cid")]
    #[schema(value_type = String, example = "953953")]
    pub id: String,
    
    /// 歌曲名称
    #[schema(value_type = String, example = "Little Wish")]
    pub name: String,
    
    /// 所属专辑cid
    #[serde(rename = "albumCid")]
    #[schema(value_type = String, example = "3888")]
    pub album_id: String,
    
    /// 艺术家列表
    pub artists: Vec<String>,
}

/// 所有歌曲数据
#[derive(Serialize, Deserialize, Debug, ToSchema)]
pub struct AllSongsData {
    /// 歌曲列表
    pub list: Vec<AllSongsItem>,
    
    /// 自动播放的歌曲cid
    #[serde(rename = "autoplay")]
    #[schema(value_type = String, example = "048794")]
    pub auto_paly: String,
}

/// 所有歌曲响应类型
pub type AllSongsResp = ApiResp<AllSongsData>;

/// 专辑数据
/// 
/// 包含专辑的基本信息。
#[derive(Serialize, Deserialize, Debug, ToSchema)]
pub struct AlbumData {
    /// 专辑唯一标识符(cid)
    #[serde(rename = "cid")]
    #[schema(value_type = String, example = "3888")]
    pub id: String,
    
    /// 专辑名称
    #[schema(value_type = String, example = "Little Wish")]
    pub name: String,
    
    /// 专辑简介
    #[schema(value_type = String, example = "一触即碎的肥皂泡,也要托起小小愿望,飞越风雨,飞向太阳,绽放她的幻彩流光。")]
    pub intro: String,
    
    /// 所属分类
    #[schema(value_type = String, example = "arknights")]
    pub belong: String,

    /// 封面图片URL
    #[serde(rename = "coverUrl")]
    #[schema(value_type = String, example = "https://web.hycdn.cn/siren/pic/xxx/xxx.jpg")]
    pub cover_url: String,

    /// 详情页封面URL
    #[serde(rename = "coverDeUrl")]
    #[schema(value_type = String, example = "https://web.hycdn.cn/siren/pic/xxx/xxx.jpg")]
    pub cover_de_url: String,

    /// 艺术家列表(注意:API中拼写为"artistes")
    #[serde(rename = "artistes")]
    pub artists: Vec<String>,
}

/// 专辑响应类型
pub type AlbumResp = ApiResp<AlbumData>;

/// 专辑详情中的歌曲项
/// 
/// 专辑详情中包含的简化歌曲信息。
#[derive(Serialize, Deserialize, Debug, ToSchema)]
pub struct AlbumDetailSongItem {
    /// 歌曲唯一标识符(cid)
    #[serde(rename = "cid")]
    #[schema(value_type = String, example = "953953")]
    pub id: String,
    
    /// 歌曲名称
    #[schema(value_type = String, example = "Little Wish")]
    pub name: String,

    /// 艺术家列表
    #[serde(rename = "artistes")]
    pub artists: Vec<String>,
}

/// 专辑详情数据
/// 
/// 包含专辑的完整信息和歌曲列表。
#[derive(Serialize, Deserialize, Debug, ToSchema)]
pub struct AlbumDetailData {
    /// 专辑唯一标识符(cid)
    #[serde(rename = "cid")]
    #[schema(value_type = String, example = "953953")]
    pub id: String,
    
    /// 专辑名称
    #[schema(value_type = String, example = "Little Wish")]
    pub name: String,
    
    /// 专辑简介
    #[schema(value_type = String, example = "一触即碎的肥皂泡,也要托起小小愿望,飞越风雨,飞向太阳,绽放她的幻彩流光。")]
    pub intro: String,
    
    /// 所属分类
    #[schema(value_type = String, example = "arknights")]
    pub belong: String,

    /// 封面图片URL
    #[serde(rename = "coverUrl")]
    #[schema(value_type = String, example = "https://web.hycdn.cn/siren/pic/xxx/xxx.jpg")]
    pub cover_url: String,

    /// 详情页封面URL
    #[serde(rename = "coverDeUrl")]
    #[schema(value_type = String, example = "https://web.hycdn.cn/siren/pic/xxx/xxx.jpg")]
    pub cover_de_url: String,

    /// 专辑中的歌曲列表
    pub songs: Vec<AlbumDetailSongItem>,
}

/// 专辑详情响应类型
pub type AlbumDetailResp = ApiResp<AlbumDetailData>;

/// 所有专辑列表单项
/// 
/// 简化版的专辑信息,用于列表展示。
#[derive(Serialize, Deserialize, Debug, ToSchema)]
pub struct AllAlbumsItem {
    /// 专辑唯一标识符(cid)
    #[serde(rename = "cid")]
    #[schema(value_type = String, example = "3888")]
    pub id: String,
    
    /// 专辑名称
    #[schema(value_type = String, example = "Little Wish")]
    pub name: String,

    /// 封面图片URL
    #[serde(rename = "coverUrl")]
    #[schema(value_type = String, example = "https://web.hycdn.cn/siren/pic/xxx/xxx.jpg")]
    pub cover_url: String,

    /// 艺术家列表
    #[serde(rename = "artistes")]
    pub artists: Vec<String>,
}

/// 搜索结果中的专辑项
/// 
/// 搜索结果中的专辑信息。
#[derive(Serialize, Deserialize, Debug, ToSchema)]
pub struct SearchAlbumItem {
    /// 专辑唯一标识符(cid)
    #[serde(rename = "cid")]
    #[schema(value_type = String, example = "3888")]
    pub id: String,
    
    /// 专辑名称
    #[schema(value_type = String, example = "Little Wish")]
    pub name: String,
    
    /// 所属分类
    #[schema(value_type = String, example = "arknights")]
    pub belong: String,

    /// 封面图片URL
    #[serde(rename = "coverUrl")]
    #[schema(value_type = String, example = "https://web.hycdn.cn/siren/pic/xxx/xxx.jpg")]
    pub cover_url: String,

    /// 艺术家列表
    #[serde(rename = "artistes")]
    pub artists: Vec<String>,
}

/// 搜索结果中的专辑数据
#[derive(Serialize, Deserialize, Debug, ToSchema)]
pub struct SearchAlbumData {
    /// 专辑列表
    pub list: Vec<SearchAlbumItem>,
    
    /// 是否已到达列表末尾
    pub end: bool,
}

/// 搜索专辑查询参数
#[derive(Serialize, Deserialize, Debug, IntoParams)]
pub struct SearchAlbumQuery {
    /// 搜索关键词
    pub keyword: String,
    
    /// 分页参数,从指定cid之后开始获取
    #[serde(rename = "lastCid")]
    pub last_cid: Option<String>,
}

/// 搜索专辑响应类型
pub type SearchAlbumResp = ApiResp<SearchAlbumData>;

/// 新闻项
/// 
/// 简化版的新闻信息,用于列表展示。
#[derive(Serialize, Deserialize, Debug, ToSchema)]
pub struct NewsItem {
    /// 新闻唯一标识符(cid)
    #[serde(rename = "cid")]
    pub id: String,

    /// 新闻标题
    pub title: String,

    /// 分类ID
    pub cate: i32,
    
    /// 发布日期
    #[schema(value_type = String, example = "2022-01-01")]
    pub date: String,
}

/// 新闻数据
#[derive(Serialize, Deserialize, Debug, ToSchema)]
pub struct NewsData {
    /// 新闻列表
    pub list: Vec<NewsItem>,
    
    /// 是否已到达列表末尾
    pub end: bool,
}

/// 搜索新闻查询参数
#[derive(Serialize, Deserialize, Debug, IntoParams)]
pub struct NewsQuery {
    /// 搜索关键词
    pub keyword: String,
    
    /// 分页参数,从指定cid之后开始获取
    #[serde(rename = "lastCid")]
    pub last_cid: Option<String>,
}

/// 获取所有新闻查询参数
#[derive(Serialize, Deserialize, Debug, IntoParams)]
pub struct AllNewsQuery {
    /// 分页参数,从指定cid之后开始获取
    #[serde(rename = "lastCid")]
    pub last_cid: Option<String>,
}

/// 搜索新闻响应类型
pub type SearchNewsResp = ApiResp<NewsData>;

/// 搜索查询参数
#[derive(Serialize, Deserialize, Debug, IntoParams)]
pub struct SearchQuery {
    /// 搜索关键词
    pub keyword: String,
}

/// 搜索结果数据
/// 
/// 包含专辑和新闻的搜索结果。
#[derive(Serialize, Deserialize, Debug, ToSchema)]
pub struct SearchData {
    /// 专辑搜索结果
    pub albums: SearchAlbumData,
    
    /// 新闻搜索结果
    pub news: NewsData,
}

/// 综合搜索响应类型
pub type SearchResp = ApiResp<SearchData>;

/// 新闻详情数据
/// 
/// 包含新闻的完整内容。
#[derive(Serialize, Deserialize, Debug, ToSchema)]
pub struct NewsDetailData {
    /// 新闻唯一标识符(cid)
    #[serde(rename = "cid")]
    pub id: String,

    /// 新闻标题
    pub title: String,

    /// 分类ID
    pub cate: i32,

    /// 作者
    pub author: String,

    /// 新闻内容
    pub content: String,

    /// 发布日期
    pub date: String,
}

/// 新闻详情响应类型
pub type NewsDetailResp = ApiResp<NewsDetailData>;

/// 字体文件项
/// 
/// 包含不同格式的字体文件URL。
#[derive(Serialize, Deserialize, Debug, ToSchema)]
pub struct FontItem {
    /// TrueType字体文件URL
    pub tt: String,
    
    /// Embedded OpenType字体文件URL
    pub eot: String,
    
    /// SVG字体文件URL
    pub svg: String,
    
    /// Web Open Font Format字体文件URL
    pub woff: String,
}

/// 字体数据
/// 
/// 包含所有可用的字体配置。
#[derive(Serialize, Deserialize, Debug, ToSchema)]
pub struct FontData {
    /// 常规无衬线字体
    #[serde(rename = "Sans-Regular")]
    pub sans_regular: FontItem,
    
    /// 粗体无衬线字体
    #[serde(rename = "Sans-Bold")]
    pub sans_bold: FontItem,
}

/// 字体响应类型
pub type FontResp = ApiResp<FontData>;