73 lines
1.7 KiB
PHP
73 lines
1.7 KiB
PHP
<?php
|
||
|
||
namespace App\Jobs;
|
||
|
||
use App\Models\Order;
|
||
use Illuminate\Bus\Queueable;
|
||
use Illuminate\Contracts\Queue\ShouldQueue;
|
||
use Illuminate\Foundation\Bus\Dispatchable;
|
||
use Illuminate\Queue\InteractsWithQueue;
|
||
use Illuminate\Queue\SerializesModels;
|
||
|
||
class ServerJiang implements ShouldQueue
|
||
{
|
||
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
||
|
||
/**
|
||
* 任务最大尝试次数。
|
||
*
|
||
* @var int
|
||
*/
|
||
public $tries = 2;
|
||
|
||
/**
|
||
* 任务运行的超时时间。
|
||
*
|
||
* @var int
|
||
*/
|
||
public $timeout = 30;
|
||
|
||
/**
|
||
* @var Order
|
||
*/
|
||
private $order;
|
||
|
||
/**
|
||
* Create a new job instance.
|
||
*
|
||
* @return void
|
||
*/
|
||
public function __construct(Order $order)
|
||
{
|
||
$this->order = $order;
|
||
}
|
||
|
||
/**
|
||
* Execute the job.
|
||
*
|
||
* @return void
|
||
*/
|
||
public function handle()
|
||
{
|
||
$postdata = http_build_query([
|
||
'text' => __('dujiaoka.prompt.new_order_push') . ":{$this->order['ord_title']}",
|
||
'desp' => "
|
||
- ". __('order.fields.title') .":{$this->order->title}
|
||
- ". __('order.fields.order_sn') .":{$this->order->order_sn}
|
||
- ". __('order.fields.email') .":{$this->order->email}
|
||
- ". __('order.fields.actual_price') .":{$this->order->actual_price}
|
||
"
|
||
]);
|
||
$opts = [
|
||
'http' => [
|
||
'method' => 'POST',
|
||
'header' => 'Content-type: application/x-www-form-urlencoded',
|
||
'content' => $postdata
|
||
]
|
||
];
|
||
$context = stream_context_create($opts);
|
||
$apiToken = dujiaoka_config_get('server_jiang_token');
|
||
file_get_contents('https://sctapi.ftqq.com/' . $apiToken . '.send', false, $context);
|
||
}
|
||
}
|