├── .env.example ├── .gitignore ├── LICENSE ├── README.md ├── commands ├── battery-status.js ├── call-me.js └── take-photo.js ├── config.js ├── data └── .gitkeep ├── helpers ├── get-messages.js ├── match-command.js └── reply-message.js ├── index.js ├── package.json ├── start.sh ├── stop.sh └── third-party └── cloudflare-detadrive-proxy.js /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinpal/termux-surveillance/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinpal/termux-surveillance/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinpal/termux-surveillance/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinpal/termux-surveillance/HEAD/README.md -------------------------------------------------------------------------------- /commands/battery-status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinpal/termux-surveillance/HEAD/commands/battery-status.js -------------------------------------------------------------------------------- /commands/call-me.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinpal/termux-surveillance/HEAD/commands/call-me.js -------------------------------------------------------------------------------- /commands/take-photo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinpal/termux-surveillance/HEAD/commands/take-photo.js -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | CF_DETA_PROXY_HOST: "deta-files.tprojects.workers.dev", 3 | }; 4 | -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /helpers/get-messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinpal/termux-surveillance/HEAD/helpers/get-messages.js -------------------------------------------------------------------------------- /helpers/match-command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinpal/termux-surveillance/HEAD/helpers/match-command.js -------------------------------------------------------------------------------- /helpers/reply-message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinpal/termux-surveillance/HEAD/helpers/reply-message.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinpal/termux-surveillance/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinpal/termux-surveillance/HEAD/package.json -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinpal/termux-surveillance/HEAD/start.sh -------------------------------------------------------------------------------- /stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinpal/termux-surveillance/HEAD/stop.sh -------------------------------------------------------------------------------- /third-party/cloudflare-detadrive-proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuhinpal/termux-surveillance/HEAD/third-party/cloudflare-detadrive-proxy.js --------------------------------------------------------------------------------