2026-03-07 22:29:07 +08:00
|
|
|
|
<?php
|
|
|
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
|
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
|
|
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
|
// | Copyright (c) 2016~2026 https://www.crmeb.com All rights reserved.
|
|
|
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
|
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
|
|
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
|
// | Author: CRMEB Team <admin@crmeb.com>
|
|
|
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
|
namespace app\controller\admin\v1\system;
|
|
|
|
|
|
|
|
|
|
|
|
use app\controller\admin\AuthController;
|
|
|
|
|
|
use app\services\system\timer\SystemTimerServices;
|
|
|
|
|
|
use think\annotation\Inject;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 定时任务表控制器
|
|
|
|
|
|
* Class SystemTimer
|
|
|
|
|
|
* @package app\controller\admin\v1\system
|
|
|
|
|
|
*/
|
|
|
|
|
|
class SystemTimer extends AuthController
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @var SystemTimerServices
|
|
|
|
|
|
*/
|
|
|
|
|
|
#[Inject]
|
|
|
|
|
|
protected SystemTimerServices $services;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 定时任务名称及标识
|
|
|
|
|
|
* @return mixed
|
|
|
|
|
|
*/
|
|
|
|
|
|
public function task_name()
|
|
|
|
|
|
{
|
|
|
|
|
|
return $this->success($this->services->getTasKName());
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 显示列表
|
|
|
|
|
|
* @return mixed
|
|
|
|
|
|
*/
|
|
|
|
|
|
public function index()
|
|
|
|
|
|
{
|
|
|
|
|
|
$where['is_del'] = 0;
|
|
|
|
|
|
return $this->success($this->services->getTimerList($where));
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 删除指定资源
|
|
|
|
|
|
* @param string $id
|
|
|
|
|
|
* @return \think\Response
|
|
|
|
|
|
*/
|
|
|
|
|
|
public function delete($id)
|
|
|
|
|
|
{
|
|
|
|
|
|
$this->services->del($id);
|
|
|
|
|
|
$this->services->delOneTimerCache($id);
|
|
|
|
|
|
return $this->success('删除成功');
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 修改状态
|
|
|
|
|
|
* @param string $is_show
|
|
|
|
|
|
* @param string $id
|
|
|
|
|
|
*/
|
|
|
|
|
|
public function set_show($id = '', $is_show = '')
|
|
|
|
|
|
{
|
|
|
|
|
|
if ($is_show == '' || $id == '') return $this->fail('缺少参数');
|
|
|
|
|
|
$this->services->setShow($id, $is_show);
|
|
|
|
|
|
$this->services->updateOneTimerCache($id);
|
|
|
|
|
|
return $this->success($is_show == 1 ? '显示成功' : '隐藏成功');
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**获取单条定时器数据
|
|
|
|
|
|
* @param $id
|
|
|
|
|
|
* @return void
|
|
|
|
|
|
*/
|
|
|
|
|
|
public function get_timer_one($id)
|
|
|
|
|
|
{
|
|
|
|
|
|
return $this->success($this->services->getOneTimer($id));
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 保存定时任务
|
|
|
|
|
|
* @return mixed
|
|
|
|
|
|
*/
|
|
|
|
|
|
public function save()
|
|
|
|
|
|
{
|
|
|
|
|
|
$data = $this->request->postMore([
|
|
|
|
|
|
['name', ''],
|
|
|
|
|
|
['mark', ''],
|
|
|
|
|
|
['type', 0],
|
|
|
|
|
|
['title', ''],
|
|
|
|
|
|
['is_open', 0],
|
|
|
|
|
|
['cycle', '']
|
|
|
|
|
|
]);
|
|
|
|
|
|
if (!$data['name']) {
|
|
|
|
|
|
return $this->fail('请输入定时任务名称');
|
|
|
|
|
|
}
|
|
|
|
|
|
if (!$data['mark']) {
|
|
|
|
|
|
return $this->fail('请输入定时任务标识');
|
|
|
|
|
|
}
|
|
|
|
|
|
$this->services->createData($data);
|
|
|
|
|
|
$this->services->setAllTimerCache();
|
|
|
|
|
|
return $this->success('添加定时器成功!');
|
|
|
|
|
|
}
|
|
|
|
|
|
|
feat(fsgx): HJF queue merge, brokerage timing, cycle commission, points release
- Add HJF jobs, services, DAOs, models, admin/API controllers, release command
- Respect brokerage_timing (on_pay vs confirm); dispatch HjfOrderPayJob for queue goods
- Queue-only cycle commission and position index fix in StoreOrderCreateServices
- UserBill income types: frozen_points_brokerage, frozen_points_release
- Timer: fsgx_release_frozen_points -> PointsReleaseServices
- Agent tasks: no_assess filtering for direct/umbrella counts
- Migrations: queue_pool, points_release_log, fsgx_v1 checklist updates
- Admin/uniapp: crontab preset, membership level, user list, finance routes, docs
Made-with: Cursor
2026-03-24 11:59:09 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 手动立即触发一个定时任务
|
|
|
|
|
|
* @param $id
|
|
|
|
|
|
* @return mixed
|
|
|
|
|
|
*/
|
|
|
|
|
|
public function run_now($id)
|
|
|
|
|
|
{
|
|
|
|
|
|
$timer = $this->services->getOneTimer($id);
|
|
|
|
|
|
$mark = $timer['mark'] ?? '';
|
|
|
|
|
|
if (!$mark) {
|
|
|
|
|
|
return $this->fail('定时任务标识不存在');
|
|
|
|
|
|
}
|
2026-03-24 20:40:46 +08:00
|
|
|
|
try {
|
|
|
|
|
|
$this->services->runNow($mark);
|
|
|
|
|
|
return $this->success('任务已触发并执行成功');
|
|
|
|
|
|
} catch (\Throwable $e) {
|
|
|
|
|
|
return $this->fail($e->getMessage());
|
|
|
|
|
|
}
|
feat(fsgx): HJF queue merge, brokerage timing, cycle commission, points release
- Add HJF jobs, services, DAOs, models, admin/API controllers, release command
- Respect brokerage_timing (on_pay vs confirm); dispatch HjfOrderPayJob for queue goods
- Queue-only cycle commission and position index fix in StoreOrderCreateServices
- UserBill income types: frozen_points_brokerage, frozen_points_release
- Timer: fsgx_release_frozen_points -> PointsReleaseServices
- Agent tasks: no_assess filtering for direct/umbrella counts
- Migrations: queue_pool, points_release_log, fsgx_v1 checklist updates
- Admin/uniapp: crontab preset, membership level, user list, finance routes, docs
Made-with: Cursor
2026-03-24 11:59:09 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-03-07 22:29:07 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 更新定时任务
|
|
|
|
|
|
* @param $id
|
|
|
|
|
|
* @return mixed
|
|
|
|
|
|
*/
|
|
|
|
|
|
public function update($id)
|
|
|
|
|
|
{
|
|
|
|
|
|
$data = $this->request->postMore([
|
|
|
|
|
|
['name', ''],
|
|
|
|
|
|
['mark', ''],
|
|
|
|
|
|
['type', 0],
|
|
|
|
|
|
['title', ''],
|
|
|
|
|
|
['is_open', 0],
|
|
|
|
|
|
['cycle', '']
|
|
|
|
|
|
]);
|
|
|
|
|
|
if (!$data['name']) {
|
|
|
|
|
|
return $this->fail('请输入定时任务名称');
|
|
|
|
|
|
}
|
|
|
|
|
|
if (!$data['mark']) {
|
|
|
|
|
|
return $this->fail('请输入定时任务标识');
|
|
|
|
|
|
}
|
|
|
|
|
|
$this->services->editData($id, $data);
|
|
|
|
|
|
$this->services->updateOneTimerCache($id);
|
|
|
|
|
|
return $this->success('修改成功!');
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|