diff --git a/app/data/command/OrderClean.php b/app/data/command/OrderClean.php deleted file mode 100644 index 0c873d875..000000000 --- a/app/data/command/OrderClean.php +++ /dev/null @@ -1,95 +0,0 @@ - -// +---------------------------------------------------------------------- -// | 官方网站: https://thinkadmin.top -// +---------------------------------------------------------------------- -// | 免责声明 ( https://thinkadmin.top/disclaimer ) -// | 会员免费 ( https://thinkadmin.top/vip-introduce ) -// +---------------------------------------------------------------------- -// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin -// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin -// +---------------------------------------------------------------------- - -namespace app\data\command; - -use app\data\model\ShopOrder; -use app\data\model\ShopOrderItem; -use app\data\service\OrderService; -use think\admin\Command; -use think\admin\Exception; -use think\console\Input; -use think\console\Output; -use think\Model; - -/** - * 商城订单自动清理 - * Class OrderClean - * @package app\data\command - */ -class OrderClean extends Command -{ - protected function configure() - { - $this->setName('xdata:OrderClean'); - $this->setDescription('批量清理商城订单数据'); - } - - /** - * 业务指令执行 - * @param Input $input - * @param Output $output - * @return void - * @throws Exception - */ - protected function execute(Input $input, Output $output) - { - $this->_autoCancelOrder(); - $this->_autoRemoveOrder(); - } - - /** - * 自动取消30分钟未支付的订单 - * @throws Exception - */ - private function _autoCancelOrder() - { - try { - $map = [['status', '<', 3], ['payment_status', '=', 0]]; - $map[] = ['create_at', '<', date('Y-m-d H:i:s', strtotime('-30 minutes'))]; - [$count, $total] = [0, ($result = ShopOrder::mk()->where($map)->select())->count()]; - $result->map(function (Model $item) use ($total, &$count) { - $this->queue->message($total, ++$count, "开始取消未支付的订单 {$item['order_no']}"); - $item->save(['status' => 0, 'cancel_status' => 1, 'cancel_datetime' => date('Y-m-d H:i:s'), 'cancel_remark' => '自动取消30分钟未完成支付']); - OrderService::stock($item['order_no']); - $this->queue->message($total, $count, "完成取消未支付的订单 {$item['order_no']}", 1); - }); - } catch (\Exception $exception) { - $this->queue->error($exception->getMessage()); - } - } - - /** - * 自动清理已经取消的订单 - * @throws Exception - */ - private function _autoRemoveOrder() - { - try { - $map = [['status', '=', 0], ['payment_status', '=', 0]]; - $map[] = ['create_at', '<', date('Y-m-d H:i:s', strtotime('-3 days'))]; - [$count, $total] = [0, ($result = ShopOrder::mk()->where($map)->select())->count()]; - $result->map(function (Model $item) use ($total, &$count) { - $this->queue->message($total, ++$count, "开始清理已取消的订单 {$item['order_no']}"); - ShopOrder::mk()->where(['order_no' => $item['order_no']])->delete(); - ShopOrderItem::mk()->where(['order_no' => $item['order_no']])->delete(); - $this->queue->message($total, $count, "完成清理已取消的订单 {$item['order_no']}", 1); - }); - } catch (\Exception $exception) { - $this->queue->error($exception->getMessage()); - } - } -} \ No newline at end of file diff --git a/app/data/command/UserAgent.php b/app/data/command/UserAgent.php deleted file mode 100644 index ee4654d5b..000000000 --- a/app/data/command/UserAgent.php +++ /dev/null @@ -1,93 +0,0 @@ - -// +---------------------------------------------------------------------- -// | 官方网站: https://thinkadmin.top -// +---------------------------------------------------------------------- -// | 免责声明 ( https://thinkadmin.top/disclaimer ) -// | 会员免费 ( https://thinkadmin.top/vip-introduce ) -// +---------------------------------------------------------------------- -// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin -// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin -// +---------------------------------------------------------------------- - -namespace app\data\command; - -use app\data\model\DataUser; -use app\data\service\UserUpgradeService; -use think\admin\Command; -use think\console\Input; -use think\console\input\Argument; -use think\console\Output; - -/** - * 更新用户代理关系 - * Class UserAgent - * @package app\data\command - */ -class UserAgent extends Command -{ - protected function configure() - { - $this->setName('xdata:UserAgent'); - $this->addArgument('uuid', Argument::OPTIONAL, '目标用户', ''); - $this->addArgument('puid', Argument::OPTIONAL, '上级代理', ''); - $this->setDescription('重新设置用户上级代理, 参数:UUID PUID'); - } - - /** - * @param Input $input - * @param Output $output - * @return void - * @throws \think\admin\Exception - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\DbException - * @throws \think\db\exception\ModelNotFoundException - */ - protected function execute(Input $input, Output $output) - { - [$uuid, $puid] = [$input->getArgument('uuid'), $input->getArgument('puid')]; - if (empty($uuid)) $this->setQueueError("参数UID无效,请传入正确的参数!"); - if (empty($puid)) $this->setQueueError("参数PID无效,请传入正确的参数!"); - - // 检查当前用户资料 - $user = DataUser::mk()->where(['id' => $uuid])->find(); - if (empty($user)) $this->setQueueError("读取用户数据失败!"); - - // 检查上级代理用户 - $parant = DataUser::mk()->where(['id' => $puid])->find(); - if (empty($parant)) $this->setQueueError('读取代理数据失败!'); - - // 检查异常关系处理 - if (stripos($parant['path'], "-{$user['id']}-")) { - $this->setQueueError('不能把下级设置为代理!'); - } - - // 更新自己的代理关系 - $path1 = rtrim($parant['path'] ?: '-', '-') . "-{$parant['id']}-"; - DataUser::mk()->where(['id' => $user['id']])->update([ - 'path' => $path1, 'layer' => substr_count($path1, '-'), - 'pid0' => $parant['id'], 'pid1' => $parant['id'], 'pid2' => $parant['pid1'], - ]); - UserUpgradeService::upgrade($user['id'], true); - $this->setQueueMessage(1, 1, "更新指定用户[{$user['id']}]代理绑定成功!"); - - // 更新下级的代理关系 - $path2 = "{$user['path']}{$user['id']}-"; - [$total, $count] = [DataUser::mk()->whereLike('path', "{$path2}%")->count(), 0]; - foreach (DataUser::mk()->whereLike('path', "{$path2}%")->order('layer desc')->select() as $vo) { - $this->setQueueMessage($total, ++$count, "开始更新下级用户[{$vo['id']}]代理绑定!"); - // 更新下级用户代理数据 - $path3 = preg_replace("#^{$path2}#", "{$path1}{$user['id']}-", $vo['path']); - $attrs = array_reverse(str2arr($path3, '-')); - DataUser::mk()->where(['id' => $vo['id']])->update([ - 'path' => $path3, 'layer' => substr_count($path3, '-'), - 'pid0' => $attrs[0] ?? 0, 'pid1' => $attrs[0] ?? 0, 'pid2' => $attrs[1] ?? 0, - ]); - $this->setQueueMessage($total, $count, "完成更新下级用户[{$vo['id']}]代理绑定!", 1); - } - } -} \ No newline at end of file diff --git a/app/data/command/UserAmount.php b/app/data/command/UserAmount.php deleted file mode 100644 index 6edb1a3b0..000000000 --- a/app/data/command/UserAmount.php +++ /dev/null @@ -1,59 +0,0 @@ - -// +---------------------------------------------------------------------- -// | 官方网站: https://thinkadmin.top -// +---------------------------------------------------------------------- -// | 免责声明 ( https://thinkadmin.top/disclaimer ) -// | 会员免费 ( https://thinkadmin.top/vip-introduce ) -// +---------------------------------------------------------------------- -// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin -// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin -// +---------------------------------------------------------------------- - -namespace app\data\command; - -use app\data\model\DataUser; -use app\data\service\UserBalanceService; -use app\data\service\UserRebateService; -use think\admin\Command; -use think\admin\Exception; -use think\console\Input; -use think\console\Output; - -/** - * 用户余额及返利重算处理 - * Class UserBalance - * @package app\data\command - */ -class UserAmount extends Command -{ - protected function configure() - { - $this->setName('xdata:UserAmount'); - $this->setDescription('批量重新计算余额返利'); - } - - /** - * @param Input $input - * @param Output $output - * @return void - * @throws Exception - */ - protected function execute(Input $input, Output $output) - { - [$total, $count, $error] = [DataUser::mk()->count(), 0, 0]; - foreach (DataUser::mk()->field('id')->cursor() as $user) try { - $this->queue->message($total, ++$count, "刷新用户 [{$user['id']}] 余额及返利开始"); - UserRebateService::amount($user['id']) && UserBalanceService::amount($user['id']); - $this->queue->message($total, $count, "刷新用户 [{$user['id']}] 余额及返利完成", 1); - } catch (\Exception $exception) { - $error++; - $this->queue->message($total, $count, "刷新用户 [{$user['id']}] 余额及返利失败, {$exception->getMessage()}", 1); - } - $this->setQueueSuccess("此次共处理 {$total} 个刷新操作, 其中有 {$error} 个刷新失败。"); - } -} \ No newline at end of file diff --git a/app/data/command/UserTransfer.php b/app/data/command/UserTransfer.php deleted file mode 100644 index cd08cbbd2..000000000 --- a/app/data/command/UserTransfer.php +++ /dev/null @@ -1,276 +0,0 @@ - -// +---------------------------------------------------------------------- -// | 官方网站: https://thinkadmin.top -// +---------------------------------------------------------------------- -// | 免责声明 ( https://thinkadmin.top/disclaimer ) -// | 会员免费 ( https://thinkadmin.top/vip-introduce ) -// +---------------------------------------------------------------------- -// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin -// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin -// +---------------------------------------------------------------------- - -namespace app\data\command; - -use app\data\model\DataUser; -use app\data\model\DataUserTransfer; -use app\data\service\UserRebateService; -use think\admin\Command; -use think\admin\Exception; -use think\admin\storage\LocalStorage; -use think\console\Input; -use think\console\Output; -use WePay\Transfers; -use WePay\TransfersBank; - -/** - * 用户提现处理 - * Class UserTransfer - * @package app\data\command - */ -class UserTransfer extends Command -{ - protected function configure() - { - $this->setName('xdata:UserTransfer'); - $this->setDescription('批量执行线上打款操作'); - } - - /** - * 执行微信提现操作 - * @param Input $input - * @param Output $output - * @return void - * @throws \think\admin\Exception - */ - protected function execute(Input $input, Output $output) - { - $map = [['type', 'in', ['wechat_banks', 'wechat_wallet']], ['status', 'in', [3, 4]]]; - [$total, $count, $error] = [DataUserTransfer::mk()->where($map)->count(), 0, 0]; - foreach (DataUserTransfer::mk()->where($map)->cursor() as $vo) try { - $this->queue->message($total, ++$count, "开始处理订单 {$vo['code']} 提现"); - if ($vo['status'] === 3) { - $this->queue->message($total, $count, "尝试处理订单 {$vo['code']} 打款", 1); - if ($vo['type'] === 'wechat_banks') { - [$config, $result] = $this->createTransferBank($vo); - } else { - [$config, $result] = $this->createTransferWallet($vo); - } - if ($result['return_code'] === 'SUCCESS' && $result['result_code'] === 'SUCCESS') { - DataUserTransfer::mk()->where(['code' => $vo['code']])->update([ - 'status' => 4, - 'appid' => $config['appid'], - 'openid' => $config['openid'], - 'trade_no' => $result['partner_trade_no'], - 'trade_time' => $result['payment_time'] ?? date('Y-m-d H:i:s'), - 'change_time' => date('Y-m-d H:i:s'), - 'change_desc' => '创建微信提现成功', - ]); - } else { - DataUserTransfer::mk()->where(['code' => $vo['code']])->update([ - 'change_time' => date('Y-m-d H:i:s'), 'change_desc' => $result['err_code_des'] ?? '线上提现失败', - ]); - } - } elseif ($vo['status'] === 4) { - $this->queue->message($total, $count, "刷新提现订单 {$vo['code']} 状态", 1); - if ($vo['type'] === 'wechat_banks') { - $this->queryTransferBank($vo); - } else { - $this->queryTransferWallet($vo); - } - } - } catch (\Exception $exception) { - $error++; - $this->queue->message($total, $count, "处理提现订单 {$vo['code']} 失败, {$exception->getMessage()}", 1); - DataUserTransfer::mk()->where(['code' => $vo['code']])->update([ - 'change_time' => date('Y-m-d H:i:s'), 'change_desc' => $exception->getMessage(), - ]); - } - $this->setQueueSuccess("此次共处理 {$total} 笔提现操作, 其中有 {$error} 笔处理失败。"); - } - - /** - * 尝试提现转账到银行卡 - * @param array $item - * @return array [config, result] - * @throws \WeChat\Exceptions\InvalidDecryptException - * @throws \WeChat\Exceptions\InvalidResponseException - * @throws \WeChat\Exceptions\LocalCacheException - * @throws \think\admin\Exception - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\DbException - * @throws \think\db\exception\ModelNotFoundException - */ - private function createTransferBank(array $item): array - { - $config = $this->getConfig($item['uuid']); - return [$config, TransfersBank::instance($config)->create([ - 'partner_trade_no' => $item['code'], - 'enc_bank_no' => $item['bank_code'], - 'enc_true_name' => $item['bank_user'], - 'bank_code' => $item['bank_wseq'], - 'amount' => intval($item['amount'] - $item['charge_amount']) * 100, - 'desc' => '微信银行卡提现', - ])]; - } - - /** - * 获取微信提现参数 - * @param int $uuid - * @return array - * @throws \think\admin\Exception - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\DbException - * @throws \think\db\exception\ModelNotFoundException - */ - private function getConfig(int $uuid): array - { - $data = sysdata('TransferWxpay'); - if (empty($data)) throw new Exception('未配置微信提现商户'); - // 商户证书文件处理 - $local = LocalStorage::instance(); - if (!$local->has($file1 = "{$data['wechat_mch_id']}_key.pem", true)) { - $local->set($file1, $data['wechat_mch_key_text'], true); - } - if (!$local->has($file2 = "{$data['wechat_mch_id']}_cert.pem", true)) { - $local->set($file2, $data['wechat_mch_cert_text'], true); - } - // 获取用户支付信息 - $result = $this->getWechatInfo($uuid, $data['wechat_type']); - if (empty($result)) throw new Exception('无法读取打款数据'); - return [ - 'appid' => $result[0], - 'openid' => $result[1], - 'mch_id' => $data['wechat_mch_id'], - 'mch_key' => $data['wechat_mch_key'], - 'ssl_key' => $local->path($file1, true), - 'ssl_cer' => $local->path($file2, true), - 'cache_path' => $this->app->getRootPath() . 'runtime' . DIRECTORY_SEPARATOR . 'wechat', - ]; - } - - /** - * 根据配置获取用户OPENID - * @param int $uuid - * @param string $type - * @return mixed|null - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\DbException - * @throws \think\db\exception\ModelNotFoundException - */ - private function getWechatInfo(int $uuid, string $type): ?array - { - $user = DataUser::mk()->where(['id' => $uuid])->find(); - if (empty($user)) return null; - $appid1 = sysconf('data.wxapp_appid'); - if (strtolower(sysconf('wechat.type')) === 'api') { - $appid2 = sysconf('wechat.appid'); - } else { - $appid2 = sysconf('wechat.thr_appid'); - } - if ($type === 'normal') { - if (!empty($user['openid1'])) return [$appid1, $user['openid1']]; - if (!empty($user['openid2'])) return [$appid2, $user['openid2']]; - } - if ($type === 'wxapp' && !empty($user['openid1'])) { - return [$appid1, $user['openid1']]; - } - if ($type === 'wechat' && !empty($user['openid2'])) { - return [$appid2, $user['openid2']]; - } - return null; - } - - /** - * 尝试提现转账到微信钱包 - * @param array $item - * @return array [config, result] - * @throws \WeChat\Exceptions\InvalidResponseException - * @throws \WeChat\Exceptions\LocalCacheException - * @throws \think\admin\Exception - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\DbException - * @throws \think\db\exception\ModelNotFoundException - */ - private function createTransferWallet(array $item): array - { - $config = $this->getConfig($item['uuid']); - return [$config, Transfers::instance($config)->create([ - 'openid' => $config['openid'], - 'amount' => intval($item['amount'] - $item['charge_amount']) * 100, - 'partner_trade_no' => $item['code'], - 'spbill_create_ip' => '127.0.0.1', - 'check_name' => 'NO_CHECK', - 'desc' => '微信余额提现', - ])]; - } - - /** - * 查询更新提现打款状态 - * @param array $item - * @throws \WeChat\Exceptions\InvalidResponseException - * @throws \WeChat\Exceptions\LocalCacheException - * @throws \think\admin\Exception - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\DbException - * @throws \think\db\exception\ModelNotFoundException - */ - private function queryTransferBank(array $item) - { - $config = $this->getConfig($item['uuid']); - [$config['appid'], $config['openid']] = [$item['appid'], $item['openid']]; - $result = TransfersBank::instance($config)->query($item['trade_no']); - if ($result['return_code'] === 'SUCCESS' && $result['result_code'] === 'SUCCESS') { - if ($result['status'] === 'SUCCESS') { - DataUserTransfer::mk()->where(['code' => $item['code']])->update([ - 'status' => 5, - 'appid' => $config['appid'], - 'openid' => $config['openid'], - 'trade_time' => $result['pay_succ_time'] ?: date('Y-m-d H:i:s'), - 'change_time' => date('Y-m-d H:i:s'), - 'change_desc' => '微信提现打款成功', - ]); - } - if (in_array($result['status'], ['FAILED', 'BANK_FAIL'])) { - DataUserTransfer::mk()->where(['code' => $item['code']])->update([ - 'status' => 0, - 'change_time' => date('Y-m-d H:i:s'), - 'change_desc' => '微信提现打款失败', - ]); - // 刷新用户可提现余额 - UserRebateService::amount($item['uuid']); - } - } - } - - /** - * 查询更新提现打款状态 - * @param array $item - * @throws \WeChat\Exceptions\InvalidResponseException - * @throws \WeChat\Exceptions\LocalCacheException - * @throws \think\admin\Exception - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\DbException - * @throws \think\db\exception\ModelNotFoundException - */ - private function queryTransferWallet(array $item) - { - $config = $this->getConfig($item['uuid']); - [$config['appid'], $config['openid']] = [$item['appid'], $item['openid']]; - $result = Transfers::instance($config)->query($item['trade_no']); - if ($result['return_code'] === 'SUCCESS' && $result['result_code'] === 'SUCCESS') { - DataUserTransfer::mk()->where(['code' => $item['code']])->update([ - 'status' => 5, - 'appid' => $config['appid'], - 'openid' => $config['openid'], - 'trade_time' => $result['payment_time'], - 'change_time' => date('Y-m-d H:i:s'), - 'change_desc' => '微信提现打款成功', - ]); - } - } -} \ No newline at end of file diff --git a/app/data/command/UserUpgrade.php b/app/data/command/UserUpgrade.php deleted file mode 100644 index a1291ca9e..000000000 --- a/app/data/command/UserUpgrade.php +++ /dev/null @@ -1,61 +0,0 @@ - -// +---------------------------------------------------------------------- -// | 官方网站: https://thinkadmin.top -// +---------------------------------------------------------------------- -// | 免责声明 ( https://thinkadmin.top/disclaimer ) -// | 会员免费 ( https://thinkadmin.top/vip-introduce ) -// +---------------------------------------------------------------------- -// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin -// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin -// +---------------------------------------------------------------------- - -namespace app\data\command; - -use app\data\model\DataUser; -use app\data\service\UserUpgradeService; -use think\admin\Command; -use think\admin\Exception; -use think\console\Input; -use think\console\Output; - -/** - * 用户等级重算处理 - * Class UserLevel - * @package app\data\command - */ -class UserUpgrade extends Command -{ - protected function configure() - { - $this->setName('xdata:UserUpgrade'); - $this->setDescription('批量重新计算用户等级'); - } - - /** - * @param Input $input - * @param Output $output - * @return void - * @throws Exception - */ - protected function execute(Input $input, Output $output) - { - try { - [$total, $count] = [DataUser::mk()->count(), 0]; - foreach (DataUser::mk()->field('id')->cursor() as $user) { - $this->queue->message($total, ++$count, "正在计算用户 [{$user['id']}] 的等级"); - UserUpgradeService::upgrade($user['id']); - $this->queue->message($total, $count, "完成计算用户 [{$user['id']}] 的等级", 1); - } - $this->setQueueSuccess("此次共重新计算 {$total} 个用户等级。"); - } catch (Exception $exception) { - throw $exception; - } catch (\Exception $exception) { - $this->setQueueError($exception->getMessage()); - } - } -} \ No newline at end of file diff --git a/app/data/controller/api/Auth.php b/app/data/controller/api/Auth.php deleted file mode 100644 index 0d717faba..000000000 --- a/app/data/controller/api/Auth.php +++ /dev/null @@ -1,110 +0,0 @@ - -// +---------------------------------------------------------------------- -// | 官方网站: https://thinkadmin.top -// +---------------------------------------------------------------------- -// | 免责声明 ( https://thinkadmin.top/disclaimer ) -// | 会员免费 ( https://thinkadmin.top/vip-introduce ) -// +---------------------------------------------------------------------- -// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin -// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin -// +---------------------------------------------------------------------- - -namespace app\data\controller\api; - -use app\data\service\UserAdminService; -use app\data\service\UserTokenService; -use Exception; -use think\admin\Controller; -use think\exception\HttpResponseException; - -/** - * 接口授权认证基类 - * Class Auth - * @package app\data\controller\api - */ -abstract class Auth extends Controller -{ - /** - * 当前接口请求终端类型 - * >>>>>>>>>>>>>>>>>>>>>> - * >>> api-name 接口类型 - * >>> api-token 接口认证 - * >>>>>>>>>>>>>>>>>>>>>> - * --- 手机浏览器访问 wap - * --- 电脑浏览器访问 web - * --- 微信小程序访问 wxapp - * --- 微信服务号访问 wechat - * --- 苹果应用接口访问 isoapp - * --- 安卓应用接口访问 android - * @var string - */ - protected $type; - - /** - * 当前用户编号 - * @var integer - */ - protected $uuid; - - /** - * 当前用户数据 - * @var array - */ - protected $user; - - /** - * 控制器初始化 - */ - protected function initialize() - { - // 检查接口类型 - $this->type = $this->request->header('api-name'); - if (empty($this->type)) $this->error("接口类型异常!"); - if (!isset(UserAdminService::TYPES[$this->type])) { - $this->error("接口类型[{$this->type}]未定义!"); - } - // 读取用户数据 - $this->user = $this->getUser(); - $this->uuid = $this->user['id'] ?? ''; - if (empty($this->uuid)) { - $this->error('用户登录失败!', '{-null-}', 401); - } - } - - /** - * 获取用户数据 - * @return array - */ - protected function getUser(): array - { - try { - if (empty($this->uuid)) { - $token = $this->request->header('api-token'); - if (empty($token)) $this->error('登录认证不能为空!'); - [$state, $info, $this->uuid] = UserTokenService::check($this->type, $token); - if (empty($state)) $this->error($info, '{-null-}', 401); - } - return UserAdminService::get($this->uuid, $this->type); - } catch (HttpResponseException $exception) { - throw $exception; - } catch (Exception $exception) { - trace_file($exception); - $this->error($exception->getMessage()); - } - } - - /** - * 显示用户禁用提示 - */ - protected function checkUserStatus() - { - if (empty($this->user['status'])) { - $this->error('账户已被冻结!'); - } - } -} \ No newline at end of file diff --git a/app/data/controller/api/Data.php b/app/data/controller/api/Data.php deleted file mode 100644 index ae1e30346..000000000 --- a/app/data/controller/api/Data.php +++ /dev/null @@ -1,78 +0,0 @@ - -// +---------------------------------------------------------------------- -// | 官方网站: https://thinkadmin.top -// +---------------------------------------------------------------------- -// | 免责声明 ( https://thinkadmin.top/disclaimer ) -// | 会员免费 ( https://thinkadmin.top/vip-introduce ) -// +---------------------------------------------------------------------- -// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin -// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin -// +---------------------------------------------------------------------- - -namespace app\data\controller\api; - -use app\data\model\BaseUserMessage; -use think\admin\Controller; -use think\admin\helper\QueryHelper; -use think\admin\model\SystemBase; - -/** - * 基础数据接口 - * Class Data - * @package app\data\controller\api - */ -class Data extends Controller -{ - - /** - * 获取指定数据 - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\DbException - * @throws \think\db\exception\ModelNotFoundException - */ - public function getData() - { - $data = $this->_vali(['name.require' => '数据名称不能为空!']); - $extra = ['about', 'slider', 'agreement', 'cropper']; // 其他数据 - if (in_array($data['name'], $extra) || isset(SystemBase::items('页面内容')[$data['name']])) { - $this->success('获取数据对象', sysdata($data['name'])); - } else { - $this->error('获取数据失败', []); - } - } - - /** - * 图片内容数据 - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\DbException - * @throws \think\db\exception\ModelNotFoundException - */ - public function getSlider() - { - $this->keys = input('keys', '首页图片'); - if (isset(SystemBase::items('图片内容')[$this->keys])) { - $this->success('获取图片内容', sysdata($this->keys)); - } else { - $this->error('获取图片失败', []); - } - } - - /** - * 系统通知数据 - */ - public function getNotify() - { - BaseUserMessage::mQuery(null, function (QueryHelper $query) { - if (($id = input('id')) > 0) { - BaseUserMessage::mk()->where(['id' => $id])->inc('num_read')->update([]); - } - $query->equal('id')->where(['status' => 1, 'deleted' => 0]); - $this->success('获取系统通知', $query->order('sort desc,id desc')->page(true, false, false, 20)); - }); - } -} \ No newline at end of file diff --git a/app/data/controller/api/Goods.php b/app/data/controller/api/Goods.php deleted file mode 100644 index 5b2be8bfa..000000000 --- a/app/data/controller/api/Goods.php +++ /dev/null @@ -1,77 +0,0 @@ - -// +---------------------------------------------------------------------- -// | 官方网站: https://thinkadmin.top -// +---------------------------------------------------------------------- -// | 免责声明 ( https://thinkadmin.top/disclaimer ) -// | 会员免费 ( https://thinkadmin.top/vip-introduce ) -// +---------------------------------------------------------------------- -// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin -// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin -// +---------------------------------------------------------------------- - -namespace app\data\controller\api; - -use app\data\model\ShopGoods; -use app\data\model\ShopGoodsCate; -use app\data\model\ShopGoodsMark; -use app\data\service\ExpressService; -use app\data\service\GoodsService; -use think\admin\Controller; - -/** - * 商品数据接口 - * Class Goods - * @package app\data\controller\api - */ -class Goods extends Controller -{ - /** - * 获取分类数据 - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\DbException - * @throws \think\db\exception\ModelNotFoundException - */ - public function getCate() - { - $this->success('获取分类成功', ShopGoodsCate::treeData()); - } - - /** - * 获取标签数据 - */ - public function getMark() - { - $this->success('获取标签成功', ShopGoodsMark::items()); - } - - /** - * 获取商品数据 - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\DbException - * @throws \think\db\exception\ModelNotFoundException - */ - public function getGoods() - { - // 更新访问统计 - $map = $this->_vali(['code.default' => '']); - if ($map['code']) ShopGoods::mk()->where($map)->inc('num_read')->update([]); - // 商品数据处理 - $query = ShopGoods::mQuery()->like('name,marks,cateids,payment')->equal('code,vip_entry'); - $result = $query->where(['deleted' => 0, 'status' => 1])->order('sort desc,id desc')->page(true, false, false, 10); - if (count($result['list']) > 0) GoodsService::bindData($result['list']); - $this->success('获取商品数据', $result); - } - - /** - * 获取配送区域 - */ - public function getRegion() - { - $this->success('获取区域成功', ExpressService::region(3, 1)); - } -} \ No newline at end of file diff --git a/app/data/controller/api/Login.php b/app/data/controller/api/Login.php deleted file mode 100644 index a2252c1e7..000000000 --- a/app/data/controller/api/Login.php +++ /dev/null @@ -1,123 +0,0 @@ - -// +---------------------------------------------------------------------- -// | 官方网站: https://thinkadmin.top -// +---------------------------------------------------------------------- -// | 免责声明 ( https://thinkadmin.top/disclaimer ) -// | 会员免费 ( https://thinkadmin.top/vip-introduce ) -// +---------------------------------------------------------------------- -// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin -// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin -// +---------------------------------------------------------------------- - -namespace app\data\controller\api; - -use app\data\model\DataUser; -use app\data\service\MessageService; -use app\data\service\UserAdminService; -use think\admin\Controller; - -/** - * 用户登录注册接口 - * Class Login - * @package app\data\controller\api - */ -class Login extends Controller -{ - /** - * 接口认证类型 - * @var string - */ - private $type; - - /** - * 控制器初始化 - */ - protected function initialize() - { - // 接收接口类型 - $this->type = $this->request->request('api'); - $this->type = $this->type ?: $this->request->header('api-name'); - $this->type = $this->type ?: $this->request->header('api-type'); - $this->type = $this->type ?: UserAdminService::API_TYPE_WAP; - if (empty(UserAdminService::TYPES[$this->type])) { - $this->error("接口支付[{$this->type}]未定义规则!"); - } - } - - /** - * 用户登录接口 - * @throws \think\admin\Exception - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\DbException - * @throws \think\db\exception\ModelNotFoundException - */ - public function in() - { - $data = $this->_vali([ - 'phone.mobile' => '手机号码格式错误!', - 'phone.require' => '手机号码不能为空!', - 'password.require' => '登录密码不能为空!', - ]); - $map = ['deleted' => 0, 'phone' => $data['phone']]; - $user = DataUser::mk()->where($map)->findOrEmpty(); - if ($user->isEmpty()) $this->error('该手机号还没有注册哦!'); - if (empty($user['status'])) $this->error('该用户账号状态异常!'); - if (md5($data['password']) === $user['password']) { - $this->success('手机登录成功!', UserAdminService::set($map, [], $this->type, true)); - } else { - $this->error('账号登录失败,请稍候再试!'); - } - } - - /** - * 用户统一注册入口 - * @throws \think\admin\Exception - * @throws \think\db\exception\DbException - */ - public function register() - { - $data = $this->_vali([ - 'region_province.default' => '', - 'region_city.default' => '', - 'region_area.default' => '', - 'username.default' => '', - 'phone.mobile' => '手机格式错误!', - 'phone.require' => '手机不能为空!', - 'verify.require' => '验证码不能为空!', - 'password.require' => '登录密码不能为空!', - ]); - if (!MessageService::instance()->checkVerifyCode($data['verify'], $data['phone'])) { - $this->error('手机短信验证失败!'); - } - $map = ['phone' => $data['phone'], 'deleted' => 0]; - if (DataUser::mk()->where($map)->count() > 0) { - $this->error('手机号已注册,请使用其它手机号!'); - } - $data['password'] = md5($data['password']); - $user = UserAdminService::set($map, $data, $this->type, true); - empty($user) ? $this->error('手机注册失败!') : $this->success('用户注册成功!', $user); - } - - /** - * 发送短信验证码 - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\DbException - * @throws \think\db\exception\ModelNotFoundException - */ - public function sendsms() - { - $data = $this->_vali([ - 'phone.mobile' => '手机号格式错误!', - 'phone.require' => '手机号不能为空!', - 'secure.require' => '安全码不能为空!', - ]); - if ($data['secure'] !== sysconf('zt.secure_code')) $this->error('接口安全码错误!'); - [$state, $message, $data] = MessageService::instance()->sendVerifyCode($data['phone']); - $state ? $this->success($message, $data) : $this->error($message, $data); - } -} \ No newline at end of file diff --git a/app/data/controller/api/News.php b/app/data/controller/api/News.php deleted file mode 100644 index 1d4a6849a..000000000 --- a/app/data/controller/api/News.php +++ /dev/null @@ -1,82 +0,0 @@ - -// +---------------------------------------------------------------------- -// | 官方网站: https://thinkadmin.top -// +---------------------------------------------------------------------- -// | 免责声明 ( https://thinkadmin.top/disclaimer ) -// | 会员免费 ( https://thinkadmin.top/vip-introduce ) -// +---------------------------------------------------------------------- -// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin -// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin -// +---------------------------------------------------------------------- - -namespace app\data\controller\api; - -use app\data\model\DataNewsItem; -use app\data\model\DataNewsMark; -use app\data\model\DataNewsXCollect; -use app\data\service\NewsService; -use think\admin\Controller; - -/** - * 文章接口控制器 - * Class News - * @package app\data\controller\api - */ -class News extends Controller -{ - /** - * 获取文章标签列表 - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\DbException - * @throws \think\db\exception\ModelNotFoundException - */ - public function getMark() - { - $query = DataNewsMark::mQuery()->like('name'); - $query->where(['status' => 1, 'deleted' => 0])->withoutField('sort,status,deleted'); - $this->success('获取文章标签', $query->order('sort desc,id desc')->page(false, false)); - } - - /** - * 获取文章内容列表 - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\DbException - * @throws \think\db\exception\ModelNotFoundException - */ - public function getItem() - { - if ($code = input('code', '')) { - DataNewsItem::mk()->where(['code' => $code])->inc('num_read')->update([]); - if (($uuid = input('uuid', 0)) > 0) { - $data = ['uuid' => $uuid, 'code' => $code, 'type' => 3, 'status' => 2]; - DataNewsXCollect::mk()->where($data)->delete(); - DataNewsXCollect::mk()->insert($data); - } - } - $query = DataNewsItem::mQuery()->like('name,mark')->equal('id,code'); - $query->where(['deleted' => 0, 'status' => 1])->withoutField('sort,status,deleted'); - $result = $query->order('sort desc,id desc')->page(true, false, false, 15); - NewsService::buildData($result['list'], input('uuid', 0)); - $this->success('获取文章内容', $result); - } - - /** - * 获取文章评论 - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\DbException - * @throws \think\db\exception\ModelNotFoundException - */ - public function getComment() - { - $map = $this->_vali(['code.require' => '文章不能为空!']); - $query = DataNewsXCollect::mQuery()->where(['type' => 4, 'status' => 2]); - $result = $query->where($map)->order('id desc')->page(true, false, false, 15); - NewsService::buildListByUidAndCode($result['list']); - $this->success('获取评论成功', $result); - } -} \ No newline at end of file diff --git a/app/data/controller/api/Notify.php b/app/data/controller/api/Notify.php deleted file mode 100644 index 427de0e95..000000000 --- a/app/data/controller/api/Notify.php +++ /dev/null @@ -1,78 +0,0 @@ - -// +---------------------------------------------------------------------- -// | 官方网站: https://thinkadmin.top -// +---------------------------------------------------------------------- -// | 免责声明 ( https://thinkadmin.top/disclaimer ) -// | 会员免费 ( https://thinkadmin.top/vip-introduce ) -// +---------------------------------------------------------------------- -// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin -// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin -// +---------------------------------------------------------------------- - -namespace app\data\controller\api; - -use app\data\service\payment\AlipayPaymentService; -use app\data\service\payment\JoinpayPaymentService; -use app\data\service\payment\WechatPaymentService; -use think\admin\Controller; - -/** - * 异步通知处理 - * Class Notify - * @package app\data\controller\api - */ -class Notify extends Controller -{ - /** - * 微信支付通知 - * @param string $scene 支付场景 - * @param string $param 支付参数 - * @return string - * @throws \think\admin\Exception - */ - public function wxpay(string $scene = 'order', string $param = ''): string - { - if (strtolower($scene) === 'order') { - return WechatPaymentService::instance($param)->notify(); - } else { - return 'success'; - } - } - - /** - * 支付宝支付通知 - * @param string $scene 支付场景 - * @param string $param 支付参数 - * @return string - * @throws \think\admin\Exception - */ - public function alipay(string $scene = 'order', string $param = ''): string - { - if (strtolower($scene) === 'order') { - return AlipayPaymentService::instance($param)->notify(); - } else { - return 'success'; - } - } - - /** - * 汇聚支付通知 - * @param string $scene 支付场景 - * @param string $param 支付参数 - * @return string - * @throws \think\admin\Exception - */ - public function joinpay(string $scene = 'order', string $param = ''): string - { - if (strtolower($scene) === 'order') { - return JoinpayPaymentService::instance($param)->notify(); - } else { - return 'success'; - } - } -} \ No newline at end of file diff --git a/app/data/controller/api/Wechat.php b/app/data/controller/api/Wechat.php deleted file mode 100644 index f28a490e7..000000000 --- a/app/data/controller/api/Wechat.php +++ /dev/null @@ -1,151 +0,0 @@ - -// +---------------------------------------------------------------------- -// | 官方网站: https://thinkadmin.top -// +---------------------------------------------------------------------- -// | 免责声明 ( https://thinkadmin.top/disclaimer ) -// | 会员免费 ( https://thinkadmin.top/vip-introduce ) -// +---------------------------------------------------------------------- -// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin -// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin -// +---------------------------------------------------------------------- - -namespace app\data\controller\api; - -use app\data\service\UserAdminService; -use app\wechat\service\WechatService; -use think\admin\Controller; -use think\Response; - -/** - * 微信服务号入口 - * Class Wechat - * @package app\data\controller\api - * @example 域名请修改为自己的地址,放到网页代码合适位置 - * - * - * - * 授权模式支持两种模块,参数 mode=0 时为静默授权,mode=1 时为完整授权 - * 注意:回跳地址默认从 Header 中的 http_referer 获取,也可以传 source 参数 - */ -class Wechat extends Controller -{ - - /** - * 接口认证类型 - * @var string - */ - private $type = UserAdminService::API_TYPE_WECHAT; - - /** - * 唯一绑定字段 - * @var string - */ - private $field; - - /** - * 控制器初始化 - * @return $this - */ - protected function initialize(): Wechat - { - if (empty(UserAdminService::TYPES[$this->type]['auth'])) { - $this->error("接口类型[{$this->type}]没有定义规则"); - } else { - $this->field = UserAdminService::TYPES[$this->type]['auth']; - } - return $this; - } - - /** - * 获取 JSSDK 签名 - * @throws \WeChat\Exceptions\InvalidResponseException - * @throws \WeChat\Exceptions\LocalCacheException - * @throws \think\admin\Exception - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\DbException - * @throws \think\db\exception\ModelNotFoundException - */ - public function jssdk() - { - $url = input('source') ?: $this->request->server('http_referer'); - $this->success('获取签名参数', WechatService::instance()->getWebJssdkSign($url)); - } - - /** - * 加载网页授权数据 - * @return Response - * @throws \WeChat\Exceptions\InvalidResponseException - * @throws \WeChat\Exceptions\LocalCacheException - * @throws \think\admin\Exception - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\DbException - * @throws \think\db\exception\ModelNotFoundException - */ - public function oauth(): Response - { - $source = input('source') ?: $this->request->server('http_referer'); - [$mode, $script, $wechat] = [input('mode', 1), [], WechatService::instance()]; - $result = $wechat->getWebOauthInfo($source ?: $this->request->url(true), $mode, false); - if (empty($result['openid'])) { - $script[] = 'alert("Wechat WebOauth failed.")'; - } else { - $data = $result['fansinfo'] ?? []; - $data[$this->field] = $data['openid']; - $data['base_sex'] = ['未知', '男', '女'][$data['sex']] ?? '未知'; - if (isset($result['unionid'])) $data['unionid'] = $result['unionid']; - if (isset($data['headimgurl'])) $data['headimg'] = $data['headimgurl']; - $map = UserAdminService::getUserUniMap($this->field, $data[$this->field], $data['unionid'] ?? ''); - $result['userinfo'] = UserAdminService::set($map, array_merge($map, $data), $this->type, true); - $script[] = "window.WeChatOpenid='{$result['openid']}'"; - $script[] = 'window.WeChatFansInfo=' . json_encode($result['fansinfo'], JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT); - $script[] = 'window.WeChatUserInfo=' . json_encode($result['userinfo'], JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT); - } - $script[] = ''; - return Response::create(join(";\n", $script))->contentType('application/x-javascript'); - } - - /** - * 网页授权测试 - * 使用网页直接访问此链接 - * @return string - */ - public function otest(): string - { - return << - - - 微信网页授权测试 - - - - - - 当前链接 - {$this->request->scheme()}://{$this->request->host()}/data/api.wechat/oauth?mode=1 - - 粉丝数据 - 待网页授权,加载粉丝数据... - - 用户数据 - 待网页授权,加载用户数据... - - - - -
{$this->request->scheme()}://{$this->request->host()}/data/api.wechat/oauth?mode=1
待网页授权,加载粉丝数据...
待网页授权,加载用户数据...