├── .github └── workflows │ └── build-package-onx86.yml ├── Makefile ├── README.md ├── luasrc ├── controller │ └── pushbot.lua ├── model │ └── cbi │ │ └── pushbot │ │ ├── advanced.lua │ │ ├── client.lua │ │ ├── log.lua │ │ └── setting.lua └── view │ └── pushbot │ ├── pushbot_log.htm │ └── pushbot_status.htm └── root ├── etc ├── config │ └── pushbot ├── init.d │ └── pushbot └── uci-defaults │ └── luci-pushbot └── usr ├── bin └── pushbot │ ├── api │ ├── bark.json │ ├── dingding.json │ ├── diy.json │ ├── ent_wechat.json │ ├── feishu.json │ ├── ip_blacklist │ ├── ipv4.list │ ├── ipv6.list │ ├── pushdeer.json │ └── pushplus.json │ └── pushbot └── share └── rpcd └── acl.d └── luci-app-pushbot.json /.github/workflows/build-package-onx86.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzsj0928/luci-app-pushbot/HEAD/.github/workflows/build-package-onx86.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzsj0928/luci-app-pushbot/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzsj0928/luci-app-pushbot/HEAD/README.md -------------------------------------------------------------------------------- /luasrc/controller/pushbot.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzsj0928/luci-app-pushbot/HEAD/luasrc/controller/pushbot.lua -------------------------------------------------------------------------------- /luasrc/model/cbi/pushbot/advanced.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzsj0928/luci-app-pushbot/HEAD/luasrc/model/cbi/pushbot/advanced.lua -------------------------------------------------------------------------------- /luasrc/model/cbi/pushbot/client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzsj0928/luci-app-pushbot/HEAD/luasrc/model/cbi/pushbot/client.lua -------------------------------------------------------------------------------- /luasrc/model/cbi/pushbot/log.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzsj0928/luci-app-pushbot/HEAD/luasrc/model/cbi/pushbot/log.lua -------------------------------------------------------------------------------- /luasrc/model/cbi/pushbot/setting.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzsj0928/luci-app-pushbot/HEAD/luasrc/model/cbi/pushbot/setting.lua -------------------------------------------------------------------------------- /luasrc/view/pushbot/pushbot_log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzsj0928/luci-app-pushbot/HEAD/luasrc/view/pushbot/pushbot_log.htm -------------------------------------------------------------------------------- /luasrc/view/pushbot/pushbot_status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzsj0928/luci-app-pushbot/HEAD/luasrc/view/pushbot/pushbot_status.htm -------------------------------------------------------------------------------- /root/etc/config/pushbot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzsj0928/luci-app-pushbot/HEAD/root/etc/config/pushbot -------------------------------------------------------------------------------- /root/etc/init.d/pushbot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzsj0928/luci-app-pushbot/HEAD/root/etc/init.d/pushbot -------------------------------------------------------------------------------- /root/etc/uci-defaults/luci-pushbot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzsj0928/luci-app-pushbot/HEAD/root/etc/uci-defaults/luci-pushbot -------------------------------------------------------------------------------- /root/usr/bin/pushbot/api/bark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzsj0928/luci-app-pushbot/HEAD/root/usr/bin/pushbot/api/bark.json -------------------------------------------------------------------------------- /root/usr/bin/pushbot/api/dingding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzsj0928/luci-app-pushbot/HEAD/root/usr/bin/pushbot/api/dingding.json -------------------------------------------------------------------------------- /root/usr/bin/pushbot/api/diy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzsj0928/luci-app-pushbot/HEAD/root/usr/bin/pushbot/api/diy.json -------------------------------------------------------------------------------- /root/usr/bin/pushbot/api/ent_wechat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzsj0928/luci-app-pushbot/HEAD/root/usr/bin/pushbot/api/ent_wechat.json -------------------------------------------------------------------------------- /root/usr/bin/pushbot/api/feishu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzsj0928/luci-app-pushbot/HEAD/root/usr/bin/pushbot/api/feishu.json -------------------------------------------------------------------------------- /root/usr/bin/pushbot/api/ip_blacklist: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /root/usr/bin/pushbot/api/ipv4.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzsj0928/luci-app-pushbot/HEAD/root/usr/bin/pushbot/api/ipv4.list -------------------------------------------------------------------------------- /root/usr/bin/pushbot/api/ipv6.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzsj0928/luci-app-pushbot/HEAD/root/usr/bin/pushbot/api/ipv6.list -------------------------------------------------------------------------------- /root/usr/bin/pushbot/api/pushdeer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzsj0928/luci-app-pushbot/HEAD/root/usr/bin/pushbot/api/pushdeer.json -------------------------------------------------------------------------------- /root/usr/bin/pushbot/api/pushplus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzsj0928/luci-app-pushbot/HEAD/root/usr/bin/pushbot/api/pushplus.json -------------------------------------------------------------------------------- /root/usr/bin/pushbot/pushbot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzsj0928/luci-app-pushbot/HEAD/root/usr/bin/pushbot/pushbot -------------------------------------------------------------------------------- /root/usr/share/rpcd/acl.d/luci-app-pushbot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzsj0928/luci-app-pushbot/HEAD/root/usr/share/rpcd/acl.d/luci-app-pushbot.json --------------------------------------------------------------------------------