mirror of
https://github.com/lkeme/BiliHelper-personal.git
synced 2025-12-19 01:20:08 +08:00
107 lines
3.8 KiB
PHP
107 lines
3.8 KiB
PHP
<?php declare(strict_types=1);
|
||
|
||
/**
|
||
* Website: https://mudew.com/
|
||
* Author: Lkeme
|
||
* License: The MIT License
|
||
* Email: Useri@live.cn
|
||
* Updated: 2024 ~ 2025
|
||
*
|
||
* _____ _ _ _ _ _ _____ _ _____ _____ _____
|
||
* | _ \ | | | | | | | | | | | ____| | | | _ \ | ____| | _ \ & /l、
|
||
* | |_| | | | | | | | | |_| | | |__ | | | |_| | | |__ | |_| | (゚、 。 7
|
||
* | _ { | | | | | | | _ | | __| | | | ___/ | __| | _ / \、゙ ~ヽ *
|
||
* | |_| | | | | |___ | | | | | | | |___ | |___ | | | |___ | | \ \ じしf_, )ノ
|
||
* |_____/ |_| |_____| |_| |_| |_| |_____| |_____| |_| |_____| |_| \_\
|
||
*/
|
||
|
||
use Bhp\Api\XLive\ApiXLiveSign;
|
||
use Bhp\Log\Log;
|
||
use Bhp\Plugin\BasePlugin;
|
||
use Bhp\Plugin\Plugin;
|
||
use Bhp\TimeLock\TimeLock;
|
||
use Bhp\Util\Exceptions\NoLoginException;
|
||
|
||
class LiveSignIn extends BasePlugin
|
||
{
|
||
/**
|
||
* 插件信息
|
||
* @var array|string[]
|
||
*/
|
||
public ?array $info = [
|
||
'hook' => __CLASS__, // hook
|
||
'name' => 'LiveSignIn', // 插件名称
|
||
'version' => '0.0.1', // 插件版本
|
||
'desc' => '直播签到', // 插件描述
|
||
'author' => 'Lkeme',// 作者
|
||
'priority' => 1103, // 插件优先级
|
||
'cycle' => '24(小时)', // 运行周期
|
||
];
|
||
|
||
/**
|
||
* @param Plugin $plugin
|
||
*/
|
||
public function __construct(Plugin &$plugin)
|
||
{
|
||
//
|
||
// TimeLock::initTimeLock();
|
||
// $this::class
|
||
// $plugin->register($this, 'execute');
|
||
}
|
||
|
||
/**
|
||
* 执行
|
||
* @return void
|
||
* @throws NoLoginException
|
||
*/
|
||
public function execute(): void
|
||
{
|
||
if (TimeLock::getTimes() > time() || !getEnable('live_sign_in')) return;
|
||
//
|
||
if ($this->signInTask()) {
|
||
TimeLock::setTimes(24 * 60 * 60);
|
||
} else {
|
||
TimeLock::setTimes(mt_rand(6, 8) * 60 * 60);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* @return bool
|
||
* @throws NoLoginException
|
||
*/
|
||
protected function signInTask(): bool
|
||
{
|
||
// {"code":0,"message":"0","ttl":1,"data":{"text":"","specialText":"","status":0,"allDays":30,"curMonth":6,"curYear":2022,"curDay":4,"curDate":"2022-6-4","hadSignDays":0,"newTask":0,"signDaysList":[],"signBonusDaysList":[]}}
|
||
$response = ApiXLiveSign::webGetSignInfo();
|
||
//
|
||
switch ($response['code']) {
|
||
case -101:
|
||
throw new NoLoginException($response['message']);
|
||
case 0:
|
||
//
|
||
if ($response['data']['status'] == 1) {
|
||
Log::notice("直播签到: 今日已经签到过了哦~ 已连续签到 {$response['data']['hadSignDays']} 天");
|
||
return true;
|
||
}
|
||
break;
|
||
default:
|
||
Log::warning("直播签到: 获取签到信息失败 {$response['code']} -> {$response['message']}");
|
||
return false;
|
||
}
|
||
|
||
// 您被封禁了,无法进行操作
|
||
// {"code":1011040,"message":"今日已签到过,无法重复签到","ttl":1,"data":null}
|
||
// {"code":0,"message":"0","ttl":1,"data":{"text":"3000点用户经验,2根辣条","specialText":"再签到3天可以获得666银瓜子","allDays":31,"hadSignDays":2,"isBonusDay":0}}
|
||
// {"code":0,"message":"0","ttl":1,"data":{"text":"3000点用户经验,2根辣条,50根辣条","specialText":"","allDays":31,"hadSignDays":20,"isBonusDay":1}}
|
||
$response = ApiXLiveSign::doSign();
|
||
if ($response['code']) {
|
||
Log::warning("直播签到: 签到失败 {$response['code']} -> {$response['message']}");
|
||
return false;
|
||
}
|
||
//
|
||
Log::notice("直播签到: 签到成功~ 连续签到 {$response['data']['hadSignDays']} 天 {$response['data']['specialText']}");
|
||
return true;
|
||
}
|
||
|
||
}
|