forked from DIYgod/RSSHub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypes.ts
274 lines (240 loc) · 7.1 KB
/
types.ts
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
import type { Context } from 'hono';
// Make sure it's synchronise with scripts/workflow/data.ts
// and lib/routes/rsshub/routes.ts
type Category =
| 'popular'
| 'social-media'
| 'new-media'
| 'traditional-media'
| 'bbs'
| 'blog'
| 'programming'
| 'design'
| 'live'
| 'multimedia'
| 'picture'
| 'anime'
| 'program-update'
| 'university'
| 'forecast'
| 'travel'
| 'shopping'
| 'game'
| 'reading'
| 'government'
| 'study'
| 'journal'
| 'finance'
| 'other';
// rss
export type DataItem = {
title: string;
description?: string;
pubDate?: number | string | Date;
link?: string;
category?: string[];
author?:
| string
| {
name: string;
url?: string;
avatar?: string;
}[];
doi?: string;
guid?: string;
id?: string;
content?: {
html: string;
text: string;
};
image?: string;
banner?: string;
updated?: number | string | Date;
language?: string;
enclosure_url?: string;
enclosure_type?: string;
enclosure_title?: string;
enclosure_length?: number;
itunes_duration?: number | string;
itunes_item_image?: string;
media?: Record<string, Record<string, string>>;
_extra?: Record<string, any> & {
links?: {
url: string;
type: string;
content_html?: string;
}[];
};
};
export type Data = {
title: string;
description?: string;
link?: string;
item?: DataItem[];
allowEmpty?: boolean;
image?: string;
author?: string;
language?: string;
feedLink?: string;
lastBuildDate?: string;
itunes_author?: string;
itunes_category?: string;
itunes_explicit?: string | boolean;
id?: string;
atomlink?: string;
ttl?: number;
};
// namespace
interface NamespaceItem {
/**
* The human-readable name of the namespace, should be the same as the secondary domain of the main website,
* which will be used as the level 2 heading in the documentation
*/
name: string;
/**
* The website URL without protocol that corresponds
*/
url?: string;
/**
* The classification of the namespace, which will be written into the corresponding classification document
*/
categories?: Category[];
/**
* Hints and additional explanations for users using this namespace, it will be inserted into the documentation
*/
description?: string;
}
interface Namespace extends NamespaceItem {
/** Documentation in languages other than English, it will be used to generate multilingual documents */
ja?: NamespaceItem;
/** Documentation in languages other than English, it will be used to generate multilingual documents */
zh?: NamespaceItem;
/** Documentation in languages other than English, it will be used to generate multilingual documents */
'zh-TW'?: NamespaceItem;
}
export type { Namespace };
// route
interface RouteItem {
/**
* The route path, using [Hono routing](https://hono.dev/api/routing) syntax
*/
path: string | string[];
/**
* The human-readable name of the route, which will be used as the level 3 heading in the documentation
* and radar rule title (can be overridden by `RadarRule[].title`)
*/
name: string;
/**
* The website URL without protocol that corresponds
*/
url?: string;
/**
* The GitHub handle of the people responsible for maintaining this route
*/
maintainers: string[];
/**
* The handler function of the route
*/
handler: (ctx: Context) => Promise<Data> | Data;
/**
* An example URL of the route
*/
example: string;
/**
* The description of the route parameters
*/
parameters?: Record<
string,
| string
| {
description: string;
default?: string;
options?: {
value: string;
label: string;
}[];
}
>;
/**
* Hints and additional explanations for users using this route, it will be appended after the route component, supports markdown
*/
description?: string;
/**
* The classification of the route, which will be written into the corresponding classification documentation
*/
categories?: Category[];
/**
* Special features of the route, such as what configuration items it depends on, whether it is strict anti-crawl, whether it supports a certain function and so on
*/
features?: {
/** The extra configuration items required by the route */
requireConfig?:
| {
/** The environment variable name */
name: string;
/** Whether the environment variable is optional */
optional?: boolean;
/** The description of the environment variable */
description: string;
}[]
| false;
/** set to `true` if the feed uses puppeteer */
requirePuppeteer?: boolean;
/** set to `true` if the target website has an anti-crawler mechanism */
antiCrawler?: boolean;
/** set to `true` if the feed has a radar rule */
supportRadar?: boolean;
/** Set to `true` if the feed supports BitTorrent */
supportBT?: boolean;
/** Set to `true` if the feed supports podcasts */
supportPodcast?: boolean;
/** Set to `true` if the feed supports Sci-Hub */
supportScihub?: boolean;
};
/**
* The [RSSHub-Radar](https://github.com/DIYgod/RSSHub-Radar) rule of the route
*/
radar?: RadarItem[];
}
interface Route extends RouteItem {
ja?: NamespaceItem;
zh?: NamespaceItem;
'zh-TW'?: NamespaceItem;
}
export type { Route };
// radar
export type RadarItem = {
/**
* The overwriting title of the radar rule
*/
title?: string;
/**
* The URL path to the corresponding documentation
*/
docs?: string;
/**
* The source URL path of the radar rule
* @see https://docs.rsshub.app/joinus/new-radar#source
*/
source: string[];
/**
* The target RSSHub subscription URL path of the radar rule
*
* Will use RouteItem.path if not specified
* @see https://docs.rsshub.app/joinus/new-radar#target
*
* Using `target` as a function is deprecated in RSSHub-Radar 2.0.19
* @see https://github.com/DIYgod/RSSHub-Radar/commit/5a97647f900bb2bca792787a322b2b1ca512e40b#diff-f84e3c1e16af314bc4ed7c706d7189844663cde9b5142463dc5c0db34c2e8d54L10
* @see https://github.com/DIYgod/RSSHub-Radar/issues/692
*/
target?:
| string
| ((
/** The parameters matched from the `source` field */
params: any,
/** The current webpage URL string */
url: string,
/** @deprecated Temporary removed @see https://github.com/DIYgod/RSSHub-Radar/commit/e6079ea1a8c96e89b1b2c2aa6d13c7967788ca3b */
document: Document
) => string);
};