├── app
├── cache
│ ├── log
│ │ └── .gitkeep
│ └── tpl
│ │ └── .gitkeep
├── index
│ ├── common.php
│ ├── config.php
│ ├── tpl
│ │ ├── index
│ │ │ ├── bottom.html
│ │ │ ├── index.html
│ │ │ └── register.html
│ │ └── user
│ │ │ └── index.html
│ ├── model
│ │ └── task.php
│ └── ctrl
│ │ ├── index.php
│ │ └── user.php
├── common
│ ├── PlatformLogin.php
│ ├── model
│ │ ├── platform.php
│ │ ├── log.php
│ │ └── user.php
│ ├── ctrl
│ │ └── authCtrl.php
│ ├── Error.php
│ ├── Encrypt.php
│ ├── BasePlatform.php
│ └── api
│ │ ├── BilibiliPlatform.php
│ │ ├── V2EXPlatform.php
│ │ ├── WangyiPlatform.php
│ │ ├── ChinaUnicomPlatform.php
│ │ └── BaiduPlatform.php
├── install.php
├── admin
│ └── ctrl
│ │ └── monitor.php
└── common.php
├── .gitignore
├── .env
├── .htaccess
├── index.php
├── start.php
├── icf
├── lib
│ ├── db
│ │ ├── mysql.php
│ │ └── query.php
│ ├── db.php
│ ├── model.php
│ ├── log.php
│ ├── info
│ │ ├── AliSms.php
│ │ └── smtp.php
│ ├── other
│ │ ├── HttpHelp.php
│ │ ├── http.php
│ │ └── ImageVerifyCode.php
│ ├── view.php
│ └── route.php
├── config.php
├── loader.php
├── index.php
├── functions.php
└── common
│ └── common.php
├── docker-compose.yml
├── Dockerfile
├── README.md
├── db.sql
└── LICENSE
/app/cache/log/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/cache/tpl/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .idea
2 | /app/cache/tpl/*.php
3 | *.log
4 | /icf/res
5 | config.php
6 | .env
7 |
8 |
--------------------------------------------------------------------------------
/.env:
--------------------------------------------------------------------------------
1 | DB_HOST=localhost
2 | DB_NAME=test
3 | DB_USER=root
4 | DB_PASSWORD=
5 | DB_PREFIX=cas_
6 | DB_PORT=3306
7 |
--------------------------------------------------------------------------------
/app/index/common.php:
--------------------------------------------------------------------------------
1 |
2 | Options +FollowSymlinks
3 | RewriteEngine On
4 |
5 | RewriteCond %{REQUEST_FILENAME} !-d
6 | RewriteCond %{REQUEST_FILENAME} !-f
7 | RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
8 |
--------------------------------------------------------------------------------
/app/index/config.php:
--------------------------------------------------------------------------------
1 | true,
13 | ];
--------------------------------------------------------------------------------
/app/index/tpl/index/bottom.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
主要是利用php来设置一个定时任务,实现每日签到
4 |然后就是签到的封包了
5 |不过php是单线程的,效率挺低,后面可以改成多进程的模式提高效率
6 |监控文件:app\admin\ctrl\monitor.php
7 |总之现在是一个很不完善的玩意=_=
8 |详细内容请看github上的说明
9 | 10 |