├── .env.example ├── .gitignore ├── .husky └── pre-commit ├── .npmrc ├── .nvmrc ├── .prettierignore ├── .prettierrc.json ├── .shellcheckrc ├── LICENSE ├── README.md ├── bin ├── ipatool-2.1.3-linux-amd64 ├── ipatool-2.1.3-linux-arm64 └── ipatool-2.1.3-macos-arm64 ├── ecosystem.config.json ├── package.json ├── src ├── bash-decryptor │ ├── download-ipa.sh │ └── lib │ │ ├── app_utils.sh │ │ ├── env_loader.sh │ │ └── setenv.sh └── tg-bot │ ├── assets │ └── sample.json │ ├── bot.ts │ ├── client.ts │ ├── lib │ ├── globals.ts │ ├── mongo.ts │ ├── types.ts │ └── utils.ts │ ├── startDecryption.ts │ └── uploadDecryptedFile.ts ├── tsconfig.json └── yarn.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/ipa-bot/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/ipa-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | # .npmrc 2 | engine-strict=true 3 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v19.9.0 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/ipa-bot/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /.shellcheckrc: -------------------------------------------------------------------------------- 1 | external-sources=true 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/ipa-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/ipa-bot/HEAD/README.md -------------------------------------------------------------------------------- /bin/ipatool-2.1.3-linux-amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/ipa-bot/HEAD/bin/ipatool-2.1.3-linux-amd64 -------------------------------------------------------------------------------- /bin/ipatool-2.1.3-linux-arm64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/ipa-bot/HEAD/bin/ipatool-2.1.3-linux-arm64 -------------------------------------------------------------------------------- /bin/ipatool-2.1.3-macos-arm64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/ipa-bot/HEAD/bin/ipatool-2.1.3-macos-arm64 -------------------------------------------------------------------------------- /ecosystem.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/ipa-bot/HEAD/ecosystem.config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/ipa-bot/HEAD/package.json -------------------------------------------------------------------------------- /src/bash-decryptor/download-ipa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/ipa-bot/HEAD/src/bash-decryptor/download-ipa.sh -------------------------------------------------------------------------------- /src/bash-decryptor/lib/app_utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/ipa-bot/HEAD/src/bash-decryptor/lib/app_utils.sh -------------------------------------------------------------------------------- /src/bash-decryptor/lib/env_loader.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/ipa-bot/HEAD/src/bash-decryptor/lib/env_loader.sh -------------------------------------------------------------------------------- /src/bash-decryptor/lib/setenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/ipa-bot/HEAD/src/bash-decryptor/lib/setenv.sh -------------------------------------------------------------------------------- /src/tg-bot/assets/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/ipa-bot/HEAD/src/tg-bot/assets/sample.json -------------------------------------------------------------------------------- /src/tg-bot/bot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/ipa-bot/HEAD/src/tg-bot/bot.ts -------------------------------------------------------------------------------- /src/tg-bot/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/ipa-bot/HEAD/src/tg-bot/client.ts -------------------------------------------------------------------------------- /src/tg-bot/lib/globals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/ipa-bot/HEAD/src/tg-bot/lib/globals.ts -------------------------------------------------------------------------------- /src/tg-bot/lib/mongo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/ipa-bot/HEAD/src/tg-bot/lib/mongo.ts -------------------------------------------------------------------------------- /src/tg-bot/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/ipa-bot/HEAD/src/tg-bot/lib/types.ts -------------------------------------------------------------------------------- /src/tg-bot/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/ipa-bot/HEAD/src/tg-bot/lib/utils.ts -------------------------------------------------------------------------------- /src/tg-bot/startDecryption.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/ipa-bot/HEAD/src/tg-bot/startDecryption.ts -------------------------------------------------------------------------------- /src/tg-bot/uploadDecryptedFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/ipa-bot/HEAD/src/tg-bot/uploadDecryptedFile.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/ipa-bot/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/ipa-bot/HEAD/yarn.lock --------------------------------------------------------------------------------