├── .github └── workflows │ └── docker-telegram.yml ├── .gitignore ├── LICENSE ├── README.md ├── parse ├── .gitignore ├── README.md ├── articleExt.py ├── articles.py ├── entires.py ├── result-full.tgz ├── result-min.json ├── shell.nix └── v1 │ ├── cleanup.py │ ├── download.py │ └── xi.json ├── telegram ├── .env.example ├── .gitignore ├── Dockerfile ├── fission.js ├── index.js ├── lambda.js ├── package-lock.json ├── package.json ├── webhook.js └── yarn.lock └── web ├── Dockerfile ├── fission.js └── index.js /.github/workflows/docker-telegram.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abusetelegram/xixi-haha/HEAD/.github/workflows/docker-telegram.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abusetelegram/xixi-haha/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abusetelegram/xixi-haha/HEAD/README.md -------------------------------------------------------------------------------- /parse/.gitignore: -------------------------------------------------------------------------------- 1 | api/ 2 | articles/ 3 | entries.json 4 | __pycache__/ -------------------------------------------------------------------------------- /parse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abusetelegram/xixi-haha/HEAD/parse/README.md -------------------------------------------------------------------------------- /parse/articleExt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abusetelegram/xixi-haha/HEAD/parse/articleExt.py -------------------------------------------------------------------------------- /parse/articles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abusetelegram/xixi-haha/HEAD/parse/articles.py -------------------------------------------------------------------------------- /parse/entires.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abusetelegram/xixi-haha/HEAD/parse/entires.py -------------------------------------------------------------------------------- /parse/result-full.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abusetelegram/xixi-haha/HEAD/parse/result-full.tgz -------------------------------------------------------------------------------- /parse/result-min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abusetelegram/xixi-haha/HEAD/parse/result-min.json -------------------------------------------------------------------------------- /parse/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abusetelegram/xixi-haha/HEAD/parse/shell.nix -------------------------------------------------------------------------------- /parse/v1/cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abusetelegram/xixi-haha/HEAD/parse/v1/cleanup.py -------------------------------------------------------------------------------- /parse/v1/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abusetelegram/xixi-haha/HEAD/parse/v1/download.py -------------------------------------------------------------------------------- /parse/v1/xi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abusetelegram/xixi-haha/HEAD/parse/v1/xi.json -------------------------------------------------------------------------------- /telegram/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abusetelegram/xixi-haha/HEAD/telegram/.env.example -------------------------------------------------------------------------------- /telegram/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .DS_Store 3 | .env 4 | release.zip -------------------------------------------------------------------------------- /telegram/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abusetelegram/xixi-haha/HEAD/telegram/Dockerfile -------------------------------------------------------------------------------- /telegram/fission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abusetelegram/xixi-haha/HEAD/telegram/fission.js -------------------------------------------------------------------------------- /telegram/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abusetelegram/xixi-haha/HEAD/telegram/index.js -------------------------------------------------------------------------------- /telegram/lambda.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abusetelegram/xixi-haha/HEAD/telegram/lambda.js -------------------------------------------------------------------------------- /telegram/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abusetelegram/xixi-haha/HEAD/telegram/package-lock.json -------------------------------------------------------------------------------- /telegram/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abusetelegram/xixi-haha/HEAD/telegram/package.json -------------------------------------------------------------------------------- /telegram/webhook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abusetelegram/xixi-haha/HEAD/telegram/webhook.js -------------------------------------------------------------------------------- /telegram/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abusetelegram/xixi-haha/HEAD/telegram/yarn.lock -------------------------------------------------------------------------------- /web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abusetelegram/xixi-haha/HEAD/web/Dockerfile -------------------------------------------------------------------------------- /web/fission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abusetelegram/xixi-haha/HEAD/web/fission.js -------------------------------------------------------------------------------- /web/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abusetelegram/xixi-haha/HEAD/web/index.js --------------------------------------------------------------------------------