CRMEB/crmeb/app/api/controller/v1/user/UserRechargeController.php
2021-07-13 16:49:21 +08:00

115 lines
4.3 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
namespace app\api\controller\v1\user;
use app\Request;
use app\services\user\UserRechargeServices;
/**
* 充值类
* Class UserRechargeController
* @package app\api\controller\user
*/
class UserRechargeController
{
protected $services = NUll;
/**
* UserRechargeController constructor.
* @param UserRechargeServices $services
*/
public function __construct(UserRechargeServices $services)
{
$this->services = $services;
}
public function recharge(Request $request)
{
[$price, $recharId, $type, $from] = $request->postMore([
['price', 0],
['rechar_id', 0],
['type', 0],
['from', 'weixin']
], true);
if (!$price || $price <= 0) return app('json')->fail('充值金额不能为0元!');
if (!in_array($type, [0, 1])) return app('json')->fail('充值方式不支持!');
if (!in_array($from, ['weixin', 'weixinh5', 'routine'])) return app('json')->fail('充值方式不支持');
$storeMinRecharge = sys_config('store_user_min_recharge');
if ($price < $storeMinRecharge) return app('json')->fail('充值金额不能低于' . $storeMinRecharge);
$uid = (int)$request->uid();
$re = $this->services->recharge($uid, $price, $recharId, $type, $from);
if ($re) {
$msg = $re['msg'];
unset($re['msg']);
return app('json')->successful($msg, $re);
}
return app('json')->fail('充值失败');
}
/**
* 小程序充值
*
* @param Request $request
* @return mixed
*/
public function routine(Request $request)
{
list($price, $recharId, $type) = $request->postMore([['price', 0], ['rechar_id', 0], ['type', 0]], true);
if (!$price || $price <= 0) return app('json')->fail('充值金额不能为0元!');
$storeMinRecharge = sys_config('store_user_min_recharge');
if ($price < $storeMinRecharge) return app('json')->fail('充值金额不能低于' . $storeMinRecharge);
$from = 'routine';
$uid = (int)$request->uid();
$re = $this->services->recharge($uid, $price, $recharId, $type, $from);
if ($re) {
$msg = $re['msg'];
unset($re['msg']);
return app('json')->successful($msg, $re['data']);
}
return app('json')->fail('充值失败');
}
/**
* 公众号充值
* @param Request $request
* @return mixed
*/
public function wechat(Request $request)
{
list($price, $recharId, $from, $type) = $request->postMore([['price', 0], ['rechar_id', 0], ['from', 'weixin'], ['type', 0]], true);
if (!$price || $price <= 0) return app('json')->fail('充值金额不能为0元!');
$storeMinRecharge = sys_config('store_user_min_recharge');
if ($price < $storeMinRecharge) return app('json')->fail('充值金额不能低于' . $storeMinRecharge);
$uid = (int)$request->uid();
$re = $this->services->recharge($uid, $price, $recharId, $type, $from);
if ($re) {
$msg = $re['msg'];
unset($re['msg']);
return app('json')->successful($msg, $re);
}
return app('json')->fail('充值失败');
}
/**
* 充值额度选择
* @return mixed
*/
public function index()
{
$rechargeQuota = sys_data('user_recharge_quota') ?? [];
$data['recharge_quota'] = $rechargeQuota;
$recharge_attention = sys_config('recharge_attention');
$recharge_attention = explode("\n", $recharge_attention);
$data['recharge_attention'] = $recharge_attention;
return app('json')->successful($data);
}
}