File size: 10,520 Bytes
bf48b89 | 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 | import type { Context } from 'hono';
// Make sure it's synchronise with scripts/workflow/data.ts
// and lib/routes/rsshub/routes.ts
export 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
| Array<{
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?: Language;
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>>;
attachments?: Array<{
url: string;
mime_type: string;
title?: string;
size_in_bytes?: number;
duration_in_seconds?: number;
}>;
_extra?: Record<string, any> & {
links?: Array<{
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?: Language;
feedLink?: string;
lastBuildDate?: string;
itunes_author?: string;
itunes_category?: string;
itunes_explicit?: string | boolean;
id?: string;
icon?: string;
logo?: string;
atomlink?: string;
ttl?: number;
};
export type Language =
| 'af'
| 'ar-DZ'
| 'ar-IQ'
| 'ar-KW'
| 'ar-MA'
| 'ar-SA'
| 'ar-TN'
| 'be'
| 'bg'
| 'ca'
| 'cs'
| 'da'
| 'de'
| 'de-at'
| 'de-ch'
| 'de-de'
| 'de-li'
| 'de-lu'
| 'el'
| 'en'
| 'en-au'
| 'en-bz'
| 'en-ca'
| 'en-gb'
| 'en-ie'
| 'en-jm'
| 'en-nz'
| 'en-ph'
| 'en-tt'
| 'en-us'
| 'en-za'
| 'en-zw'
| 'es'
| 'es-ar'
| 'es-bo'
| 'es-cl'
| 'es-co'
| 'es-cr'
| 'es-do'
| 'es-ec'
| 'es-es'
| 'es-gt'
| 'es-hn'
| 'es-mx'
| 'es-ni'
| 'es-pa'
| 'es-pe'
| 'es-pr'
| 'es-py'
| 'es-sv'
| 'es-uy'
| 'es-ve'
| 'et'
| 'eu'
| 'fi'
| 'fo'
| 'fr'
| 'fr-be'
| 'fr-ca'
| 'fr-ch'
| 'fr-fr'
| 'fr-lu'
| 'fr-mc'
| 'ga'
| 'gd'
| 'gl'
| 'haw'
| 'hi'
| 'hr'
| 'hu'
| 'in'
| 'is'
| 'it'
| 'it-ch'
| 'it-it'
| 'ja'
| 'ko'
| 'mk'
| 'ne'
| 'nl'
| 'nl-be'
| 'nl-nl'
| 'no'
| 'pl'
| 'pt'
| 'pt-br'
| 'pt-pt'
| 'ro'
| 'ro-mo'
| 'ro-ro'
| 'ru'
| 'ru-mo'
| 'ru-ru'
| 'sk'
| 'sl'
| 'sq'
| 'sr'
| 'sv'
| 'sv-fi'
| 'sv-se'
| 'tr'
| 'uk'
| 'zh-CN'
| 'zh-HK'
| 'zh-TW'
| 'other';
// 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;
/**
* Main Language of the namespace
*/
lang?: Language;
}
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 };
export enum ViewType {
Articles = 0,
SocialMedia = 1,
Pictures = 2,
Videos = 3,
Audios = 4,
Notifications = 5,
}
// 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 | null | Response> | Data | null | Response;
/**
* An example URL of the route
*/
example: string;
/**
* The description of the route parameters
*/
parameters?: Record<
string,
| string
| {
description: string;
default?: string;
options?: Array<{
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?:
| Array<{
/** 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;
/** Set to `true` if this feed is not safe for work */
nsfw?: boolean;
};
/**
* The [RSSHub-Radar](https://github.com/DIYgod/RSSHub-Radar) rule of the route
*/
radar?: RadarItem[];
/**
* The [Follow](https://github.com/RSSNext/follow) default view of the route, default to `ViewType.Articles`
*/
view?: ViewType;
}
export interface Route extends RouteItem {
ja?: RouteItem;
zh?: RouteItem;
'zh-TW'?: RouteItem;
}
// 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);
};
export type RadarDomain = {
_name: string;
} & {
[subdomain: string]: RadarItem[];
};
export interface APIRoute {
/**
* The route path, using [Hono routing](https://hono.dev/api/routing) syntax
*/
path: string;
/**
* The GitHub handle of the people responsible for maintaining this route
*/
maintainers: string[];
/**
* The handler function of the route
*/
handler: (ctx: Context) =>
| Promise<{
code: number;
message?: string;
data?: any;
}>
| {
code: number;
message?: string;
data?: any;
};
/**
* The description of the route parameters
*/
parameters?: Record<
string,
{
description: string;
default?: string;
options?: Array<{
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;
}
|