v2board/app/Console/Commands/CheckOrder.php

103 lines
2.4 KiB
PHP
Raw Normal View History

2019-10-29 15:33:36 +08:00
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
use App\Models\Order;
use App\Models\User;
use App\Models\Plan;
use App\Utils\Helper;
2020-01-01 23:40:14 +08:00
use App\Models\Coupon;
2019-10-29 15:33:36 +08:00
class CheckOrder extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'check:order';
/**
* The console command description.
*
* @var string
*/
protected $description = '订单检查任务';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
$order = Order::get();
foreach ($order as $item) {
switch ($item->status) {
2019-11-25 00:27:36 +08:00
// cancel
2019-10-29 15:33:36 +08:00
case 0:
if (strtotime($item->created_at) <= (time() - 1800)) {
$item->status = 2;
$item->save();
}
break;
case 1:
$this->orderHandle($item);
break;
}
2020-01-11 13:36:52 +08:00
2019-10-29 15:33:36 +08:00
}
}
2020-01-11 13:36:52 +08:00
private function orderHandle($order)
{
2019-10-29 15:33:36 +08:00
$user = User::find($order->user_id);
2019-11-25 00:27:36 +08:00
return $this->buy($order, $user);
2019-10-29 15:33:36 +08:00
}
2020-01-11 13:36:52 +08:00
private function buy($order, $user)
{
2019-10-29 15:33:36 +08:00
$plan = Plan::find($order->plan_id);
2020-02-08 23:03:48 +08:00
// change plan process
2019-10-29 15:33:36 +08:00
$user->transfer_enable = $plan->transfer_enable * 1073741824;
$user->enable = 1;
2020-01-31 00:03:18 +08:00
$user->u = 0;
$user->d = 0;
2019-10-29 15:33:36 +08:00
$user->plan_id = $plan->id;
$user->group_id = $plan->group_id;
$user->expired_at = $this->getTime($order->cycle, $user->expired_at);
if ($user->save()) {
$order->status = 3;
$order->save();
}
}
2020-01-11 13:36:52 +08:00
private function getTime($str, $timestamp)
{
2019-10-29 15:33:36 +08:00
if ($timestamp < time()) {
$timestamp = time();
}
switch ($str) {
2020-01-11 13:36:52 +08:00
case 'month_price':
return strtotime('+1 month', $timestamp);
case 'quarter_price':
return strtotime('+3 month', $timestamp);
case 'half_year_price':
return strtotime('+6 month', $timestamp);
case 'year_price':
return strtotime('+12 month', $timestamp);
2019-10-29 15:33:36 +08:00
}
}
}