├── .dockerignore ├── .editorconfig ├── .env.powershell.temp ├── .gitattributes ├── .github └── workflows │ ├── check-for-env-theft.yml │ ├── download-from-crowdin.yml │ ├── sync-dto-to-front-end.yml │ └── upload-to-crowdin.yml ├── .gitignore ├── .vscode ├── settings.json └── tasks.json ├── Dockerfile ├── LICENSE ├── README.md ├── crowdin.yml ├── docs └── README.md ├── eslint.config.js ├── package.json ├── pr_body.txt ├── src ├── app.ts ├── assets │ └── images │ │ ├── background.png │ │ └── banner.png ├── cloudflare │ └── index.ts ├── common │ ├── ArrayTool.ts │ ├── Base64Gen.ts │ ├── CallErrorMessage.ts │ ├── EmailTemplate.ts │ ├── EmailTool.ts │ ├── GetCloudflareRFC3339ExpiryDateTime.ts │ ├── HashTool.ts │ ├── MongoDBSessionTool.ts │ ├── ObjectTool.ts │ ├── RandomTool.ts │ ├── Sleep.ts │ ├── UrlTool.ts │ ├── ValidTool.ts │ └── i18n.ts ├── controller │ ├── BlockController.ts │ ├── BlockControllerDto.ts │ ├── BrowsingHistoryController.ts │ ├── BrowsingHistoryControllerDto.ts │ ├── ConsoleSecretController.ts │ ├── ConsoleSecretControllerDto.ts │ ├── DanmakuController.ts │ ├── DanmakuControllerDto.ts │ ├── FavoritesController.ts │ ├── FavoritesControllerDto.ts │ ├── FeedController.ts │ ├── FeedControllerDto.ts │ ├── HelloWorld.ts │ ├── RbacController.ts │ ├── RbacControllerDto.ts │ ├── UserController.ts │ ├── UserControllerDto.ts │ ├── VideoCommentController.ts │ ├── VideoCommentControllerDto.ts │ ├── VideoController.ts │ ├── VideoControllerDto.ts │ ├── VideoTagController.ts │ └── VideoTagControllerDto.ts ├── dbPool │ ├── DbClusterPool.ts │ ├── DbClusterPoolTypes.d.ts │ └── schema │ │ ├── BlockSchema.ts │ │ ├── BrowsingHistorySchema.ts │ │ ├── DanmakuSchema.ts │ │ ├── FavoritesSchema.ts │ │ ├── FeedSchema.ts │ │ ├── RbacSchema.ts │ │ ├── SequenceSchema.ts │ │ ├── UserSchema.ts │ │ ├── VideoCommentSchema.ts │ │ ├── VideoSchema.ts │ │ └── VideoTagSchema.ts ├── elasticsearchPool │ ├── ElasticsearchClusterPool.ts │ ├── ElasticsearchClusterPoolTypes.d.ts │ └── template │ │ ├── VideoDocument.ts │ │ └── VideoTagDocument.ts ├── locales │ ├── Cantonese.ts │ ├── Chinese Simplified.ts │ ├── Chinese Traditional.ts │ ├── English.ts │ ├── French.ts │ ├── Indonesian.ts │ ├── Japanese.ts │ ├── Korean.ts │ ├── Sichuan Yi.ts │ └── Vietnamese.ts ├── middleware │ └── elasticsearchMiddleware.ts ├── route │ └── router.ts ├── service │ ├── BlockService.ts │ ├── BrowsingHistoryService.ts │ ├── ConsoleSecretService.ts │ ├── DanmakuService.ts │ ├── FavoritesService.ts │ ├── FeedService.ts │ ├── RbacService.ts │ ├── SequenceValueService.ts │ ├── UserService.ts │ ├── VideoCommentService.ts │ ├── VideoService.ts │ └── VideoTagService.ts ├── ssl │ ├── cert.pem │ └── key.pem ├── store │ └── index.ts └── type │ └── koaTypes.d.ts ├── tsconfig.json └── ℩ɘvoↄ.svg /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.powershell.temp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/.env.powershell.temp -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/check-for-env-theft.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/.github/workflows/check-for-env-theft.yml -------------------------------------------------------------------------------- /.github/workflows/download-from-crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/.github/workflows/download-from-crowdin.yml -------------------------------------------------------------------------------- /.github/workflows/sync-dto-to-front-end.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/.github/workflows/sync-dto-to-front-end.yml -------------------------------------------------------------------------------- /.github/workflows/upload-to-crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/.github/workflows/upload-to-crowdin.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/README.md -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/crowdin.yml -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/docs/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/package.json -------------------------------------------------------------------------------- /pr_body.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/pr_body.txt -------------------------------------------------------------------------------- /src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/app.ts -------------------------------------------------------------------------------- /src/assets/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/assets/images/background.png -------------------------------------------------------------------------------- /src/assets/images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/assets/images/banner.png -------------------------------------------------------------------------------- /src/cloudflare/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/cloudflare/index.ts -------------------------------------------------------------------------------- /src/common/ArrayTool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/common/ArrayTool.ts -------------------------------------------------------------------------------- /src/common/Base64Gen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/common/Base64Gen.ts -------------------------------------------------------------------------------- /src/common/CallErrorMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/common/CallErrorMessage.ts -------------------------------------------------------------------------------- /src/common/EmailTemplate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/common/EmailTemplate.ts -------------------------------------------------------------------------------- /src/common/EmailTool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/common/EmailTool.ts -------------------------------------------------------------------------------- /src/common/GetCloudflareRFC3339ExpiryDateTime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/common/GetCloudflareRFC3339ExpiryDateTime.ts -------------------------------------------------------------------------------- /src/common/HashTool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/common/HashTool.ts -------------------------------------------------------------------------------- /src/common/MongoDBSessionTool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/common/MongoDBSessionTool.ts -------------------------------------------------------------------------------- /src/common/ObjectTool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/common/ObjectTool.ts -------------------------------------------------------------------------------- /src/common/RandomTool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/common/RandomTool.ts -------------------------------------------------------------------------------- /src/common/Sleep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/common/Sleep.ts -------------------------------------------------------------------------------- /src/common/UrlTool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/common/UrlTool.ts -------------------------------------------------------------------------------- /src/common/ValidTool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/common/ValidTool.ts -------------------------------------------------------------------------------- /src/common/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/common/i18n.ts -------------------------------------------------------------------------------- /src/controller/BlockController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/controller/BlockController.ts -------------------------------------------------------------------------------- /src/controller/BlockControllerDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/controller/BlockControllerDto.ts -------------------------------------------------------------------------------- /src/controller/BrowsingHistoryController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/controller/BrowsingHistoryController.ts -------------------------------------------------------------------------------- /src/controller/BrowsingHistoryControllerDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/controller/BrowsingHistoryControllerDto.ts -------------------------------------------------------------------------------- /src/controller/ConsoleSecretController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/controller/ConsoleSecretController.ts -------------------------------------------------------------------------------- /src/controller/ConsoleSecretControllerDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/controller/ConsoleSecretControllerDto.ts -------------------------------------------------------------------------------- /src/controller/DanmakuController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/controller/DanmakuController.ts -------------------------------------------------------------------------------- /src/controller/DanmakuControllerDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/controller/DanmakuControllerDto.ts -------------------------------------------------------------------------------- /src/controller/FavoritesController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/controller/FavoritesController.ts -------------------------------------------------------------------------------- /src/controller/FavoritesControllerDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/controller/FavoritesControllerDto.ts -------------------------------------------------------------------------------- /src/controller/FeedController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/controller/FeedController.ts -------------------------------------------------------------------------------- /src/controller/FeedControllerDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/controller/FeedControllerDto.ts -------------------------------------------------------------------------------- /src/controller/HelloWorld.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/controller/HelloWorld.ts -------------------------------------------------------------------------------- /src/controller/RbacController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/controller/RbacController.ts -------------------------------------------------------------------------------- /src/controller/RbacControllerDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/controller/RbacControllerDto.ts -------------------------------------------------------------------------------- /src/controller/UserController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/controller/UserController.ts -------------------------------------------------------------------------------- /src/controller/UserControllerDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/controller/UserControllerDto.ts -------------------------------------------------------------------------------- /src/controller/VideoCommentController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/controller/VideoCommentController.ts -------------------------------------------------------------------------------- /src/controller/VideoCommentControllerDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/controller/VideoCommentControllerDto.ts -------------------------------------------------------------------------------- /src/controller/VideoController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/controller/VideoController.ts -------------------------------------------------------------------------------- /src/controller/VideoControllerDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/controller/VideoControllerDto.ts -------------------------------------------------------------------------------- /src/controller/VideoTagController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/controller/VideoTagController.ts -------------------------------------------------------------------------------- /src/controller/VideoTagControllerDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/controller/VideoTagControllerDto.ts -------------------------------------------------------------------------------- /src/dbPool/DbClusterPool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/dbPool/DbClusterPool.ts -------------------------------------------------------------------------------- /src/dbPool/DbClusterPoolTypes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/dbPool/DbClusterPoolTypes.d.ts -------------------------------------------------------------------------------- /src/dbPool/schema/BlockSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/dbPool/schema/BlockSchema.ts -------------------------------------------------------------------------------- /src/dbPool/schema/BrowsingHistorySchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/dbPool/schema/BrowsingHistorySchema.ts -------------------------------------------------------------------------------- /src/dbPool/schema/DanmakuSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/dbPool/schema/DanmakuSchema.ts -------------------------------------------------------------------------------- /src/dbPool/schema/FavoritesSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/dbPool/schema/FavoritesSchema.ts -------------------------------------------------------------------------------- /src/dbPool/schema/FeedSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/dbPool/schema/FeedSchema.ts -------------------------------------------------------------------------------- /src/dbPool/schema/RbacSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/dbPool/schema/RbacSchema.ts -------------------------------------------------------------------------------- /src/dbPool/schema/SequenceSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/dbPool/schema/SequenceSchema.ts -------------------------------------------------------------------------------- /src/dbPool/schema/UserSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/dbPool/schema/UserSchema.ts -------------------------------------------------------------------------------- /src/dbPool/schema/VideoCommentSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/dbPool/schema/VideoCommentSchema.ts -------------------------------------------------------------------------------- /src/dbPool/schema/VideoSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/dbPool/schema/VideoSchema.ts -------------------------------------------------------------------------------- /src/dbPool/schema/VideoTagSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/dbPool/schema/VideoTagSchema.ts -------------------------------------------------------------------------------- /src/elasticsearchPool/ElasticsearchClusterPool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/elasticsearchPool/ElasticsearchClusterPool.ts -------------------------------------------------------------------------------- /src/elasticsearchPool/ElasticsearchClusterPoolTypes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/elasticsearchPool/ElasticsearchClusterPoolTypes.d.ts -------------------------------------------------------------------------------- /src/elasticsearchPool/template/VideoDocument.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/elasticsearchPool/template/VideoDocument.ts -------------------------------------------------------------------------------- /src/elasticsearchPool/template/VideoTagDocument.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/elasticsearchPool/template/VideoTagDocument.ts -------------------------------------------------------------------------------- /src/locales/Cantonese.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/locales/Cantonese.ts -------------------------------------------------------------------------------- /src/locales/Chinese Simplified.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/locales/Chinese Simplified.ts -------------------------------------------------------------------------------- /src/locales/Chinese Traditional.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/locales/Chinese Traditional.ts -------------------------------------------------------------------------------- /src/locales/English.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/locales/English.ts -------------------------------------------------------------------------------- /src/locales/French.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/locales/French.ts -------------------------------------------------------------------------------- /src/locales/Indonesian.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/locales/Indonesian.ts -------------------------------------------------------------------------------- /src/locales/Japanese.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/locales/Japanese.ts -------------------------------------------------------------------------------- /src/locales/Korean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/locales/Korean.ts -------------------------------------------------------------------------------- /src/locales/Sichuan Yi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/locales/Sichuan Yi.ts -------------------------------------------------------------------------------- /src/locales/Vietnamese.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/locales/Vietnamese.ts -------------------------------------------------------------------------------- /src/middleware/elasticsearchMiddleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/middleware/elasticsearchMiddleware.ts -------------------------------------------------------------------------------- /src/route/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/route/router.ts -------------------------------------------------------------------------------- /src/service/BlockService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/service/BlockService.ts -------------------------------------------------------------------------------- /src/service/BrowsingHistoryService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/service/BrowsingHistoryService.ts -------------------------------------------------------------------------------- /src/service/ConsoleSecretService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/service/ConsoleSecretService.ts -------------------------------------------------------------------------------- /src/service/DanmakuService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/service/DanmakuService.ts -------------------------------------------------------------------------------- /src/service/FavoritesService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/service/FavoritesService.ts -------------------------------------------------------------------------------- /src/service/FeedService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/service/FeedService.ts -------------------------------------------------------------------------------- /src/service/RbacService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/service/RbacService.ts -------------------------------------------------------------------------------- /src/service/SequenceValueService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/service/SequenceValueService.ts -------------------------------------------------------------------------------- /src/service/UserService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/service/UserService.ts -------------------------------------------------------------------------------- /src/service/VideoCommentService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/service/VideoCommentService.ts -------------------------------------------------------------------------------- /src/service/VideoService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/service/VideoService.ts -------------------------------------------------------------------------------- /src/service/VideoTagService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/service/VideoTagService.ts -------------------------------------------------------------------------------- /src/ssl/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/ssl/cert.pem -------------------------------------------------------------------------------- /src/ssl/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/ssl/key.pem -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/type/koaTypes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/src/type/koaTypes.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/tsconfig.json -------------------------------------------------------------------------------- /℩ɘvoↄ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KIRAKIRA-DOUGA/KIRAKIRA-Rosales/HEAD/℩ɘvoↄ.svg --------------------------------------------------------------------------------