dd/app/Services/TG/Hook/Mod/Dove.php
2025-06-17 14:50:37 +08:00

111 lines
2.5 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
namespace App\Services\TG\Hook\Mod;
//use App\Models\Hook as ModelHook;
use App\Models\DoveSite as ModelDoveSite;
use App\Services\TomTool\Http;
class Dove extends Base {
public function go($aParam, $aData)
{
$oDoveSiteCheckedList = ModelDoveSite::where("dove_checked", 1)->get();
//tomd($aData, 1);
list(, $sSubCmd) = explode("%", $aData['message']['text'], 2);
$aData['message']['text'] = $sSubCmd;
$aData['is_dove'] = 1;
$aData['dove_token'] = env('dove_token');
$oHttp = new Http();
$oHttp->sMethod = "post";
$oHttp->bIsJson = true;
foreach ($oDoveSiteCheckedList as $row) {
$sApiUrl = "https://".$row->www.$row->api_path;
$oHttp->sToUrl = $sApiUrl;
$oHttp->aData = $aData;
$r[] = $oHttp->send();
}
return $r;
}
public function list()
{
$oDove = ModelDoveSite::all();
$r = $this->toJson($oDove);
return $r;
}
public function check($aParam)
{
$iSetValue = $aParam['iSetValue'] ?? 1;
$sCode = $aParam['aArg'][1];
$oDoveSite = ModelDoveSite::where("code", $sCode)->first();
if (!$oDoveSite) {
throw new \Exception("没有这个code");
}
$oDoveSite->dove_checked = $iSetValue;
$r = $oDoveSite->save();
if (!$r) {
throw new \Exception("没check上");
}
$r = $this->now();
return $r;
}
public function uncheck()
{
$r = ModelDoveSite::query()->update(["dove_checked" => 0]);
return $this->now();
}
public function unset($aParam)
{
$aParam['iSetValue'] = 0;
$r = $this->set($aParam);
return $r;
}
public function now()
{
$aDoveSiteNow = ModelDoveSite::where("dove_checked", 1)->get()->toArray();
// if ($aDoveSiteNow) {
// $r = "";
// foreach ($aDoveSiteNow as $row) {
// $r .= "\n";
// $r .= $row['code']."::".$row['www']."::".$row['class'];
// }
// } else {
// $r = "没有";
// }
if (!$aDoveSiteNow) {
return "没有";
}
$r = $this->toJson($aDoveSiteNow);
return $r;
}
}