├── .eslintrc.js ├── .github ├── .DS_Store ├── accounts.png ├── add_secret1.png ├── add_secret2.png ├── all_secrets.png ├── client_secret.png ├── constants.png ├── credentials.png ├── dependabot.yml ├── manually_deploy_workflow.png ├── pat.png ├── raw.png ├── run_workflow.png ├── secrets.png └── workflows │ ├── deploy-heroku.yml │ └── docker-publish.yml ├── .gitignore ├── .vscode └── launch.json ├── Dockerfile ├── LICENSE.md ├── README.md ├── aria.conf ├── contrib └── mirror-bot.service ├── docker-publish └── Dockerfile ├── heroku.yml ├── heroku_guide.md ├── nodemon.json ├── old_heroku_guide.md ├── package.json ├── src ├── .constants.js.example ├── bot_utils │ ├── commands.ts │ ├── event_regex.ts │ ├── msg-tools.ts │ └── reg_exps.ts ├── dl_model │ ├── detail.ts │ └── dl-manager.ts ├── download_tools │ ├── aria-tools.ts │ ├── filename-utils.ts │ ├── utils.ts │ └── ytdl.ts ├── drive │ ├── drive-auth.ts │ ├── drive-clone.ts │ ├── drive-clone2.ts │ ├── drive-directLink.ts │ ├── drive-list.ts │ ├── drive-tar.ts │ ├── drive-upload.ts │ ├── drive-utils.ts │ ├── extract.ts │ ├── gd-utils.ts │ ├── tar.ts │ └── upload-file.ts ├── fs-walk.ts ├── generateCredentials.ts ├── generateTelegraphAccount.ts ├── index.ts └── unrarUtils │ ├── index.ts │ └── postinstall.ts ├── start.sh ├── tsconfig.json └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/.github/.DS_Store -------------------------------------------------------------------------------- /.github/accounts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/.github/accounts.png -------------------------------------------------------------------------------- /.github/add_secret1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/.github/add_secret1.png -------------------------------------------------------------------------------- /.github/add_secret2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/.github/add_secret2.png -------------------------------------------------------------------------------- /.github/all_secrets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/.github/all_secrets.png -------------------------------------------------------------------------------- /.github/client_secret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/.github/client_secret.png -------------------------------------------------------------------------------- /.github/constants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/.github/constants.png -------------------------------------------------------------------------------- /.github/credentials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/.github/credentials.png -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/manually_deploy_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/.github/manually_deploy_workflow.png -------------------------------------------------------------------------------- /.github/pat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/.github/pat.png -------------------------------------------------------------------------------- /.github/raw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/.github/raw.png -------------------------------------------------------------------------------- /.github/run_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/.github/run_workflow.png -------------------------------------------------------------------------------- /.github/secrets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/.github/secrets.png -------------------------------------------------------------------------------- /.github/workflows/deploy-heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/.github/workflows/deploy-heroku.yml -------------------------------------------------------------------------------- /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/.github/workflows/docker-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/README.md -------------------------------------------------------------------------------- /aria.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/aria.conf -------------------------------------------------------------------------------- /contrib/mirror-bot.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/contrib/mirror-bot.service -------------------------------------------------------------------------------- /docker-publish/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/docker-publish/Dockerfile -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/heroku.yml -------------------------------------------------------------------------------- /heroku_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/heroku_guide.md -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/nodemon.json -------------------------------------------------------------------------------- /old_heroku_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/old_heroku_guide.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/package.json -------------------------------------------------------------------------------- /src/.constants.js.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/src/.constants.js.example -------------------------------------------------------------------------------- /src/bot_utils/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/src/bot_utils/commands.ts -------------------------------------------------------------------------------- /src/bot_utils/event_regex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/src/bot_utils/event_regex.ts -------------------------------------------------------------------------------- /src/bot_utils/msg-tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/src/bot_utils/msg-tools.ts -------------------------------------------------------------------------------- /src/bot_utils/reg_exps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/src/bot_utils/reg_exps.ts -------------------------------------------------------------------------------- /src/dl_model/detail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/src/dl_model/detail.ts -------------------------------------------------------------------------------- /src/dl_model/dl-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/src/dl_model/dl-manager.ts -------------------------------------------------------------------------------- /src/download_tools/aria-tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/src/download_tools/aria-tools.ts -------------------------------------------------------------------------------- /src/download_tools/filename-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/src/download_tools/filename-utils.ts -------------------------------------------------------------------------------- /src/download_tools/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/src/download_tools/utils.ts -------------------------------------------------------------------------------- /src/download_tools/ytdl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/src/download_tools/ytdl.ts -------------------------------------------------------------------------------- /src/drive/drive-auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/src/drive/drive-auth.ts -------------------------------------------------------------------------------- /src/drive/drive-clone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/src/drive/drive-clone.ts -------------------------------------------------------------------------------- /src/drive/drive-clone2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/src/drive/drive-clone2.ts -------------------------------------------------------------------------------- /src/drive/drive-directLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/src/drive/drive-directLink.ts -------------------------------------------------------------------------------- /src/drive/drive-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/src/drive/drive-list.ts -------------------------------------------------------------------------------- /src/drive/drive-tar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/src/drive/drive-tar.ts -------------------------------------------------------------------------------- /src/drive/drive-upload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/src/drive/drive-upload.ts -------------------------------------------------------------------------------- /src/drive/drive-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/src/drive/drive-utils.ts -------------------------------------------------------------------------------- /src/drive/extract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/src/drive/extract.ts -------------------------------------------------------------------------------- /src/drive/gd-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/src/drive/gd-utils.ts -------------------------------------------------------------------------------- /src/drive/tar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/src/drive/tar.ts -------------------------------------------------------------------------------- /src/drive/upload-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/src/drive/upload-file.ts -------------------------------------------------------------------------------- /src/fs-walk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/src/fs-walk.ts -------------------------------------------------------------------------------- /src/generateCredentials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/src/generateCredentials.ts -------------------------------------------------------------------------------- /src/generateTelegraphAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/src/generateTelegraphAccount.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/unrarUtils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/src/unrarUtils/index.ts -------------------------------------------------------------------------------- /src/unrarUtils/postinstall.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/src/unrarUtils/postinstall.ts -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/start.sh -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arghyac35/aria-telegram-mirror-bot/HEAD/yarn.lock --------------------------------------------------------------------------------