71 lines
1.6 KiB
PHP
Executable File
71 lines
1.6 KiB
PHP
Executable File
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Illuminate\Http\Request;
|
|
//use App\Models\Article;
|
|
use App\Services\TomTool\Http;
|
|
//use voku\helper\AntiXSS;
|
|
|
|
class TestsController
|
|
{
|
|
|
|
public function hook()
|
|
{
|
|
// $t = [];
|
|
// $a = $t['zz']["cc"] += 10;
|
|
// $a = $t['zz']["cc"] += 10;
|
|
// tomd($a);
|
|
// exit;
|
|
@$k = $_GET["k"];
|
|
@$s = $_GET["s"];
|
|
|
|
if ($k !== "wocaonide") {
|
|
exit("?");
|
|
}
|
|
|
|
$s = '/'.$s;
|
|
|
|
//test
|
|
// $s = "\/AticleSet__1115zz__sale_rate 1118.118";
|
|
$s = "\/git#LastTime 1";
|
|
// $s= "/test#cron__i 07";
|
|
|
|
$oHttp = new Http();
|
|
$oHttp->sMethod = "post";
|
|
$oHttp->sToUrl = env("APP_URL")."/api/tg/hook";
|
|
$oHttp->bIsJson = true;
|
|
$oHttp->aData = [
|
|
'update_id' => 123456789,
|
|
'message' => [
|
|
'message_id' => 1,
|
|
'from' => [
|
|
'id' => 7740568271,
|
|
'is_bot' => false,
|
|
'first_name' => 'John',
|
|
'last_name' => 'Doe',
|
|
'username' => 'johndoe',
|
|
'language_code' => 'en'
|
|
],
|
|
'chat' => [
|
|
'id' => -4668400285,
|
|
'first_name' => 'John',
|
|
'last_name' => 'Doe',
|
|
'username' => 'johndoe',
|
|
'type' => 'private'
|
|
],
|
|
'date' => 1610000000,
|
|
"text" => $s,
|
|
]
|
|
];
|
|
|
|
$r = $oHttp->send();
|
|
|
|
echo($r);
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
}
|