123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227 |
- <?php
- /**
- * 易优CMS
- * ============================================================================
- * 版权所有 2016-2028 海口快推科技有限公司,并保留所有权利。
- * 网站地址: http://www.eyoucms.com
- * ----------------------------------------------------------------------------
- * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
- * ============================================================================
- * Author: 小虎哥 <1105415366@qq.com>
- * Date: 2018-4-3
- */
-
- namespace app\api\controller\v1;
-
- use think\Db;
- use think\Request;
-
- class Users extends Base
- {
- public $users;
- public $users_id;
-
- /**
- * 初始化操作
- */
- public function _initialize()
- {
- parent::_initialize();
- $this->users = $this->getUser(); // 用户信息
- $this->users_id = !empty($this->users['users_id']) ? intval($this->users['users_id']) : null;
- if (empty($this->users_id)) $this->error('请先登录');
- }
-
- /**
- * 我的订单列表
- * @param $dataType
- * @return array
- * @throws \think\exception\DbException
- */
- public function order_lists($dataType)
- {
- $list = model('v1.Shop')->getOrderList($this->users_id, $dataType);
- return $this->renderSuccess(compact('list'));
- }
-
- //获取留言列表
- public function guestbook_list()
- {
- if (IS_AJAX) {
- $list = model('v1.User')->guestbookList();
- return $this->renderSuccess(compact('list'));
- }
- $this->error('请求错误!');
-
-
- }
-
- //获取我的预约详情
- public function get_book_detail()
- {
- if (IS_AJAX) {
- $param = input('param.');
- $list = model('v1.User')->GetMyBookDetail($param);
-
- return $this->renderSuccess(compact('list'));
- }
- $this->error('请求错误!');
- }
-
- //取消预约
- public function cancel_book()
- {
- if (IS_AJAX) {
- $aid = input('param.aid/d',0);
- if (empty($aid)){
- $this->error('缺少参数aid!');
- }
- $r = Db::name('guestbook')
- ->where(['aid'=>$aid,'users_id'=>$this->users_id])
- ->delete();
- if (false !== $r){
- Db::name('guestbook_attr')->where('aid',$aid)->delete();
- $this->success('取消成功!');
- }else{
- $this->error('取消失败!');
- }
- }
- $this->error('请求错误!');
- }
-
-
- /**
- * 取消订单
- * @param $order_id
- * @return array
- * @throws \Exception
- * @throws \app\common\exception\BaseException
- * @throws \think\exception\DbException
- */
- public function order_cancel($order_id)
- {
- if (IS_AJAX_POST && !empty($order_id)) {
- model('v1.Shop')->orderCancel($order_id, $this->users_id);
- }
- $this->error('订单取消失败!');
- }
-
- /**
- * 订单提醒发货
- * @param $order_id
- * @return array
- * @throws \Exception
- * @throws \app\common\exception\BaseException
- * @throws \think\exception\DbException
- */
- public function order_remind($order_id)
- {
- if (IS_AJAX_POST && !empty($order_id)) {
- model('v1.Shop')->orderRemind($order_id, $this->users_id);
- }
- $this->error('订单取消失败!');
- }
-
- /**
- * 订单详情信息
- * @param $order_id
- * @return array
- * @throws \app\common\exception\BaseException
- * @throws \think\exception\DbException
- */
- public function order_detail($order_id)
- {
- if (IS_AJAX) {
- // 是否安装使用快递100查询插件
- $is_querykd = 0;
- if (is_dir('./weapp/Querykd/')) {
- $count = Db::name('weapp')->where(['code'=>'Querykd', 'status'=>1])->count();
- $is_querykd = empty($count) ? $is_querykd : 1;
- }
- // 订单详情
- $detail = model('v1.Shop')->getOrderDetail($order_id, $this->users_id);
- return $this->renderSuccess([
- 'order' => $detail, // 订单详情
- 'is_querykd' => $is_querykd,
- 'setting' => [],
- ]);
- }
- $this->error('订单读取失败!');
- }
-
- /**
- * 订单支付
- * @param int $order_id 订单id
- * @param int $payType 支付方式
- * @return array
- * @throws \app\common\exception\BaseException
- * @throws \think\Exception
- * @throws \think\exception\DbException
- */
- public function order_pay($order_id, $payType = 20)
- {
- // 订单支付事件
- $order = model('v1.Shop')->getOrderDetail($order_id, $this->users_id);
- // 判断订单状态
- if (!isset($order['order_status']) || $order['order_status'] != 0) {
- $this->error('很抱歉,当前订单不合法,无法支付');
- }
- // 构建微信支付请求
- $payment = model('v.Shop')->onOrderPayment($this->users, $order, $payType);
- if (isset($payment['code']) && empty($payment['code'])) {
- $this->error($payment['msg'] ?: '订单支付失败');
- }
- // 支付状态提醒
- $this->renderSuccess([
- 'order_id' => $order['order_id'], // 订单id
- 'pay_type' => $payType, // 支付方式
- 'payment' => $payment // 微信支付参数
- ], ['success' => '支付成功', 'error' => '订单未支付']);
- }
-
- /**
- * 获取物流信息
- * @param $order_id
- * @return array
- * @throws \app\common\exception\BaseException
- * @throws \think\exception\DbException
- */
- public function order_express($order_id, $timestamp = '')
- {
- // 订单详情
- $detail = model('v1.Shop')->getOrderDetail($order_id, $this->users_id);
- if (empty($detail['express_order'])) {
- return $this->error('没有物流信息');
- }
- // 获取物流信息
- /* @var \app\store\model\Express $model */
- $express = model('v1.Shop')->orderExpress($detail['express_name'], $detail['express_code'], $detail['express_order'], $timestamp);
- if (!empty($express)) {
- return $this->renderSuccess(compact('express'));
- }
- $this->error('没有找到物流信息!');
- }
-
- /**
- * 确认收货
- * @param $order_id
- * @return array
- * @throws \Exception
- * @throws \app\common\exception\BaseException
- * @throws \think\exception\DbException
- */
- public function order_receipt($order_id)
- {
- if (IS_AJAX_POST && !empty($order_id)) {
- model('v1.Shop')->orderReceipt($order_id, $this->users_id);
- }
- $this->error('确认收货失败!');
- }
-
-
- /* -------------陈风任------------- */
- /**
- * 添加商品到购物车
- */
- public function shop_add_cart()
- {
- if (IS_AJAX_POST) {
- $post = input('post.');
- // 数量判断
- if (empty($post['product_num']) || 0 > $post['product_num']) $this->error('请输入数量');
-
- // 默认会员ID
- $post['users_id'] = $this->users_id;
-
- // 商城模型
- $ShopModel = model('v1.Shop');
-
- // 商品是否已售罄
- $ShopModel->IsSoldOut($post);
-
- // 添加购物车
- $ShopModel->ShopAddCart($post);
- }
- }
-
- /**
- * 添加商品到购物车
- */
- public function shop_page_add_cart()
- {
- if (IS_AJAX_POST) {
- $post = input('post.');
- // 数量判断
- if (empty($post['product_num']) || 0 > $post['product_num']) $this->error('请输入数量');
- // 默认会员ID
- $post['users_id'] = $this->users_id;
-
- // 商城模型
- $ShopModel = model('v1.Shop');
-
- // 添加购物车
- $ShopModel->ShopPageAddCart($post);
- }
- }
-
- /**
- * 立即购买
- */
- public function shop_buy_now()
- {
- if (IS_AJAX_POST) {
- $post = input('post.');
- // 数量判断
- if (empty($post['product_num']) || 0 > $post['product_num']) $this->error('请输入数量');
-
- // 默认会员ID
- $post['users_id'] = $this->users_id;
-
- // 商城模型
- $ShopModel = model('v1.Shop');
-
- // 商品是否已售罄
- $ShopModel->IsSoldOut($post);
-
- // 立即购买
- $ShopModel->ShopBuyNow($post);
- }
- }
-
- /**
- * 产品购买
- */
- public function shop_product_buy()
- {
- if (IS_AJAX_POST) {
- // 获取解析数据
- $querystr = input('param.querystr/s');
- if (empty($querystr)) $this->error('无效链接!');
-
- // 商城模型
- $ShopModel = model('v1.Shop');
-
- // 获取商品信息进行展示
- $post = input('post.');
- $ShopModel->GetProductData($querystr, $this->users_id, $this->users['level_discount'], $this->users, $post);
- }
- }
-
- /**
- * 订单结算
- */
- public function shop_order_pay()
- {
- if (IS_AJAX_POST) {
- $post = input('post.');
- $post['action'] = !empty($post['action']) ? $post['action'] : 'CreatePay';
-
- // 默认会员ID
- $post['users_id'] = $this->users_id;
- $post['openid'] = Db::name('wx_users')->where('users_id', $this->users_id)->getField('openid');
-
- // 商城模型
- $ShopModel = model('v1.Shop');
-
- // 操作分发
- if ('DirectPay' == $post['action']) {
- // 订单直接支付
- $ShopModel->OrderDirectPay($post);
- } else if ('CreatePay' == $post['action']) {
- // 获取解析数据
- if (empty($post['querystr'])) $this->error('无效链接!');
-
- // 获取商品信息生成订单并支付
- $ShopModel->ShopOrderPay($post, $this->users['level_discount'], $this->users['level_id'], $this->users);
- }
- }
- }
-
- /**
- * 商城订单支付后续处理
- */
- public function shop_order_pay_deal_with()
- {
- if (IS_AJAX_POST) {
- $post = input('post.');
-
- // 默认会员ID
- $post['users_id'] = $this->users_id;
- $post['openid'] = Db::name('wx_users')->where('users_id', $this->users_id)->getField('openid');
-
- // 订单支付后续处理
- if (9 === intval($post['curPayType'])) {
- // 抖音支付
- model('TikTok')->tikTokAppletsPayDealWith($post);
- } else {
- // 微信支付
- model('v1.Shop')->WechatAppletsPayDealWith($post);
- }
- }
- }
-
- /**
- * 购物车操作(改变数量、选中状态、删除)
- */
- public function shop_cart_action()
- {
- if (IS_AJAX) {
- $param = input('param.');
- if (empty($param['action'])) $param['action'] = null;
- $param['users_id'] = $this->users_id;
-
- // 商城模型
- $ShopModel = model('v1.Shop');
-
- /* 购物车操作 */
- if ('add' == $param['action']) {
- // 数量 + 1
- $ShopModel->ShopCartNumAdd($param);
- } else if ('less' == $param['action']) {
- // 数量 - 1
- $ShopModel->ShopCartNumLess($param);
- } else if ('selected' == $param['action']) {
- // 是否选中
- $ShopModel->ShopCartSelected($param);
- } else if ('all_selected' == $param['action']) {
- // 是否全部选中
- $ShopModel->ShopCartAllSelected($param);
- } else if ('del' == $param['action']) {
- // 删除购物车商品
- $ShopModel->ShopCartDelete($param);
- } else {
- $this->error('请正确操作');
- }
- /* END */
-
- }
- }
-
- /**
- * 收货地址列表
- */
- public function shop_address_list()
- {
- if (IS_AJAX) {
- // 商城模型
- $ShopModel = model('v1.Shop');
-
- // 收货地址列表
- $ReturnData = $ShopModel->GetAllAddressList($this->users);
- }
- }
-
- /**
- * 收货地址操作分发
- */
- public function shop_address_action()
- {
- if (IS_AJAX_POST) {
- $post = input('post.');
- // 商城模型
- $ShopModel = model('v1.Shop');
-
- // 操作分发
- if ('find_add' == $post['action']) {
- // 添加单条收货地址
- $ShopModel->FindAddAddr($post, $this->users_id);
- } else if ('find_edit' == $post['action']) {
- // 设置默认收货地址
- $ShopModel->FindEditAddr($post, $this->users_id);
- } else if ('default' == $post['action']) {
- // 设置默认收货地址
- $ShopModel->SetDefaultAddr($post, $this->users_id);
- } else if ('find_detail' == $post['action']) {
- // 获取单条收货地址
- $ShopModel->GetFindAddrDetail($post, $this->users);
- } else if ('find_del' == $post['action']) {
- // 删除单条收货地址
- $ShopModel->FindDelAddr($post, $this->users_id);
- } else {
- $this->error('请正确操作');
- }
- }
- }
- /* -------------END------------- */
-
- /**
- * 获取评价订单商品列表
- * @param $order_id
- * @return array
- * @throws \Exception
- * @throws \app\common\exception\BaseException
- * @throws \think\exception\DbException
- */
- public function order_comment($order_id)
- {
- if (IS_AJAX) {
- $data = model('v1.Shop')->getOrderComment($order_id, $this->users_id);
- return $this->renderSuccess([
- 'goods' => $data, // 订单详情
- ]);
- }
- $this->error('读取失败!');
- }
-
- /**
- * 保存评价
- * @return array
- */
- public function save_comment()
- {
- if (IS_AJAX_POST) {
- $post = input('post.');
- return model('v1.Shop')->getSaveComment($post,$this->users_id);
- }
- $this->error('评价失败!');
- }
-
- /**
- * 用户领取优惠券
- */
- public function get_coupon($coupon_id)
- {
- if (IS_AJAX) {
- $where = [
- 'coupon_id' => $coupon_id,
- ];
- //查询优惠券信息,结束发放时间/库存
- $coupon = Db::name('shop_coupon')->where($where)->find();
- if (!empty($coupon)) {
- if (1 > $coupon['coupon_stock']) {
- $this->error('优惠券库存不足!');
- }
- if (getTime() > $coupon['end_date']) {
- $this->error('优惠券发放已结束!');
- }
- $where['users_id'] = $this->users_id;
- $where['use_status'] = 0;
- $where['start_time'] = ['<=',getTime()];
- $where['end_time'] = ['>=',getTime()];
-
- $count = Db::name('shop_coupon_use')->where($where)->find();
-
- if (!empty($count)) {
- $this->error('请勿重复领取!');
- } else {
- $insert['coupon_id'] = $coupon_id;
- $insert['coupon_code'] = $coupon['coupon_code'];
- $insert['users_id'] = $this->users_id;
- $insert['use_status'] = 0;
- $insert['get_time'] = getTime();
- $insert['add_time'] = getTime();
- $insert['update_time'] = getTime();
- //根据使用期限不同插入开始/结束使用时间
- if (1 == $coupon['use_type']) {//固定期限
- $insert['start_time'] = $coupon['use_start_time'];
- $insert['end_time'] = $coupon['use_end_time'];
- } else if (2 == $coupon['use_type']) {//当日开始N天有效
- $insert['start_time'] = strtotime(date("Y-m-d", time()));
- $insert['end_time'] = $insert['start_time'] + $coupon['valid_days'] * 86400;
- } else if (3 == $coupon['use_type']) {//次日开始N天有效
- $insert['start_time'] = strtotime(date("Y-m-d", time())) + 86400;
- $insert['end_time'] = $insert['start_time'] + $coupon['valid_days'] * 86400;
- }
- if (!empty($insert)) {
- $use_insert = Db::name('shop_coupon_use')->insert($insert);
- if (!empty($use_insert)) {
- //减库存
- Db::name('shop_coupon')->where('coupon_id', $coupon_id)->setDec('coupon_stock');
- $this->success('领取成功!');
- }
- }
- }
- }
- }
- $this->error('优惠券领取失败!');
- }
-
- /**
- * 获取我的优惠券
- */
- public function get_my_coupon($dataType)
- {
- $list = model('v1.Shop')->GetMyCouponList($this->users_id, $dataType);
-
- return $this->renderSuccess(compact('list'));
- }
- /**
- * 领券中心
- */
- public function get_coupon_center()
- {
- $list = model('v1.Shop')->GetCouponCenter($this->users_id);
-
- return $this->renderSuccess(compact('list'));
- }
-
- /**
- * 收藏(喜欢)/取消
- * 收藏 type users_collection
- * 喜欢 type users_like
- */
- public function get_collect()
- {
- if (IS_AJAX_POST) {
- $aid = input('param.aid/d');
- $type = input('param.type/s','users_collection');
- $success = '已收藏';
- $cancel = '已取消';
- if ('users_collection' != $type){
- $success = 'success';
- }else{
- $cancel = 'cancel';
- }
- if(empty($aid)){
- $this->error('缺少文档ID!');
- }
- $count = Db::name($type)->where([
- 'aid' => $aid,
- 'users_id' => $this->users_id,
- ])->count();
- if (empty($count)) {
- $addSave = Db::name('archives')->field('aid,channel,typeid,lang,title,litpic')->where('aid',$aid)->find();
- if(empty($addSave)){
- $this->error('文档不存在!');
- }
- $addSave['lang'] = $this->home_lang;
- $addSave['add_time'] = getTime();
- $addSave['users_id'] = $this->users_id;
- $r = Db::name($type)->insert($addSave);
- if ($r !== false){
- Db::name('archives')->where('aid', $aid)->setInc('collection');
- if ('users_collection' == $type){
- $ret_data = ['is_collect'=>1];
- }else if ('users_like' == $type){
- $ret_data = ['is_like'=>1];
- }
- $this->success($success, null, $ret_data);
- }
- }else{
- $r = Db::name($type)->where(['aid'=>$aid,'users_id'=>$this->users_id])->delete();
- if ($r !== false){
- Db::name('archives')->where('aid', $aid)->setDec('collection');
- if ('users_collection' == $type){
- $ret_data = ['is_collect'=>0];
- }else if ('users_like' == $type){
- $ret_data = ['is_like'=>0];
- }
- $this->success($cancel, null,$ret_data);
- }
- }
- }
- $this->error('请求错误!');
- }
-
- //获取收藏列表
- public function get_collect_list()
- {
- if (IS_AJAX) {
- $param = input('param.');
- $list = model('v1.User')->GetMyCollectList($param);
-
- return $this->renderSuccess(compact('list'));
- }
- $this->error('请求错误!');
- }
-
- //修改头像/昵称/手机号
- public function save_user_info()
- {
- if (IS_AJAX_POST) {
- $head_pic = input('param.head_pic/s');
- $nickname = input('param.nickname/s');
- $nickname = !empty($nickname) ? filterNickname($nickname) : '';
- $mobile = input('param.mobile/s');
- if(!empty($head_pic) || !empty($nickname) || !empty($mobile)){
- $update = ['update_time'=>getTime()];
- if (!empty($head_pic)){
- $update['head_pic'] = $head_pic;
- }
- if (!empty($nickname)){
- $update['nickname'] = $nickname;
- }
- if (!empty($mobile)){
- $is_mobile = check_mobile($mobile);
- if (!$is_mobile){
- $this->error('手机号格式不正确!');
- }
- $update['mobile'] = $mobile;
- $update['is_mobile'] = 1;
- }
- $r = Db::name('users')->where(['users_id'=>$this->users_id])->update($update);
- if (!empty($r)){
- if(!empty($update['mobile'])){
- $para_mobile = Db::name('users_list')->where(['users_id'=>$this->users_id,'para_id'=>1])->find();
- if (!empty($para_mobile)){
- Db::name('users_list')->where(['users_id'=>$this->users_id,'para_id'=>1])->update(['']);
- }else{
-
- }
- }
-
- $this->success('保存成功');
- }
- }
- $this->error('保存失败');
- }
- }
-
- // 会员充值套餐操作处理
- public function usersRechargePackAction()
- {
- if (IS_AJAX_POST) {
- // 处理传入的参数
- $param = input('param.');
- $param['terminal'] = 'applets';
- $param['action'] = !empty($param['action']) ? strval($param['action']) : '';
-
- // 会员充值套餐全局模型
- $packModel = new \app\common\model\UsersRechargePack($param, $this->users);
-
- // 会员余额中心
- if ('moneyCenter' == $param['action']) {
- $packModel->usersMoneyCenter();
- }
- // 会员充值套餐页面
- else if ('recharge' == $param['action']) {
- $packModel->usersRechargePackPage();
- }
- // 会员余额充值记录
- else if ('rechargeLog' == $param['action']) {
- $packModel->usersMoneyRechargeLog();
- }
- // 会员充值套餐充值记录
- else if ('orderList' == $param['action']) {
- $packModel->usersRechargePackOrder();
- }
- // 会员充值套餐订单创建
- else if ('orderCreate' == $param['action']) {
- // 会员充值套餐下单
- if (!empty($param['pack_id'])) {
- $packModel->usersRechargePackOrderCreate();
- }
- // 会员充值余额下单
- else if (!empty($param['users_money'])) {
- $packModel->usersRechargeMoneyOrderCreate();
- }
- // 错误提示
- else {
- $this->error('请选择充值套餐或输入充值金额');
- }
- }
- // 会员充值套餐订单支付后续处理
- else if ('orderPayHandle' == $param['action']) {
- $packModel->usersRechargePackOrderPayHandle();
- }
- }
- }
-
- // 执行会员每日签到送积分
- public function usersCheckIns()
- {
- // 执行会员每日签到送积分
- $result = model('ShopPublicHandle')->executeUsersDailyCheckIns($this->users_id);
- if (isset($result['code']) && 1 === intval($result['code'])) {
- $this->success($result['msg'], null, ['scores' => $result['scores'], 'checkInsPoints' => $result['checkInsPoints']]);
- } else {
- $this->error($result['msg']);
- }
- }
-
- public function usersPointsList()
- {
- $param = input('param.');
- // 执行会员每日签到送积分
- $result = model('ShopPublicHandle')->getBaseUsersPointsDetails($this->users_id, $param);
- // 会员信息
- $result['users'] = $this->users;
- $this->success('查询成功', null, $result);
- }
-
- //获取手机号
- public function get_phone()
- {
- if (IS_AJAX_POST) {
- $code = input('param.code/s');
- model('v1.User')->getPhone($code);
- }
- }
-
- // 处理会员余额方法(集合方法)
- public function HandleUserMoneyAction()
- {
- if (IS_AJAX) {
- // 传入参数
- $param = input('param.');
-
- // 处理传入的参数
- $param['users_id'] = intval($this->users_id);
- $param['moneyid'] = !empty($param['moneyid']) ? intval($param['moneyid']) : 0;
- $param['usersMoney'] = !empty($param['usersMoney']) ? strval($param['usersMoney']) : 0;
- $param['order_number'] = !empty($param['order_number']) ? strval($param['order_number']) : '';
-
- $v1ShopModel = model('v1.Shop');
- // 判断执行操作
- $action = !empty($param['action']) ? strval($param['action']) : '';
- if ('details' == $action) {
- $v1ShopModel->getUsersMoneyDetails($this->users, $param);
- } else if ('recharge' == $action) {
- // 会员余额充值
- $v1ShopModel->getUsersMoneyRecharge($param);
- } else if ('rechargePay' == $action) {
- // 会员余额充值后续处理
- $v1ShopModel->getUsersMoneyRechargePay($param);
- }
- }
- }
-
- // 处理订单服务方法(集合方法)
- public function handleOrderServiceAction()
- {
- if (IS_AJAX) {
- // 传入参数
- $param = input('param.');
-
- // 处理传入的参数
- $param['users_id'] = intval($this->users_id);
- $param['order_id'] = !empty($param['order_id']) ? intval($param['order_id']) : 0;
- $param['product_id'] = !empty($param['product_id']) ? intval($param['product_id']) : 0;
- $param['details_id'] = !empty($param['details_id']) ? intval($param['details_id']) : 0;
- $param['service_id'] = !empty($param['service_id']) ? intval($param['service_id']) : 0;
-
- $v1ShopModel = model('v1.Shop');
- // 判断执行操作
- $action = !empty($param['action']) ? strval($param['action']) : '';
- if ('goodsDetect' == $action) {
- // 查询订单内的指定的某个商品,判断是否已申请售后或已评价商品
- $v1ShopModel->getOrderGoodsDetect($param);
- } else if ('getServiceList' == $action) {
- // 查询售后服务单列表
- $v1ShopModel->getOrderGoodsServiceList($param);
- } else if ('getService' == $action) {
- // 查询申请售后的订单商品
- $v1ShopModel->getOrderGoodsService($param);
- } else if ('addService' == $action) {
- $v1ShopModel->addOrderGoodsService($param);
- } else if ('cancelService' == $action) {
- // 取消售后订单会员邮寄物流信息
- $v1ShopModel->cancelOrderGoodsService($param);
- } else if ('addUsersDelivery' == $action) {
- // 添加售后订单会员邮寄物流信息
- $v1ShopModel->addServiceUsersDelivery($param);
- }
- }
- }
-
- // 分销商操作(集合方法)
- public function dealer_action()
- {
- if (IS_AJAX) {
- // 如果安装了分销插件则执行
- if (is_dir('./weapp/DealerPlugin/')) {
- // 开启分销插件则执行
- $data = model('Weapp')->getWeappList('DealerPlugin');
- if (!empty($data['status']) && 1 == $data['status']) {
- // 调用分销逻辑层方法
- $dealerPluginLogic = new \app\plugins\logic\DealerPluginLogic($this->users);
- $dealerPluginLogic->dealerAction('', '', 'openSource');
- } else {
- $this->error('请先启用分销插件!');
- }
- } else {
- $this->error('请先安装分销插件!');
- }
- }
- $this->error('请求错误!');
- }
-
- //获取我的足迹列表
- public function get_footprint_list()
- {
- if (IS_AJAX) {
- $param = input('param.');
- $list = model('v1.User')->GetMyFootprintList($param);
-
- return $this->renderSuccess(compact('list'));
- }
- $this->error('请求错误!');
- }
-
- /**
- * 添加转发记录
- */
- public function set_forward()
- {
- if (IS_AJAX) {
- $users_id = $this->users_id;
- $aid = input('param.aid/d');
- if (empty($aid)){
- $this->error('缺少文档ID!');
- }
- //查询标题模型缩略图信息
- $arc = Db::name('archives')
- ->field('aid,channel,typeid,title,litpic')
- ->find($aid);
- if (!empty($arc)) {
- $arc['users_id'] = $users_id;
- $arc['lang'] = $this->home_lang;
- $arc['add_time'] = getTime();
- $arc['update_time'] = getTime();
- Db::name('users_forward')->insert($arc);
- $this->success('保存成功');
- }
- }
- $this->error('请求错误!');
- }
- /**
- * 留言栏目
- */
- public function guestbook($typeid = '')
- {
- $param = input('param.');
- if (IS_POST && !isset($param['apiGuestbookform'])) {
- $post = input('post.');
- $typeid = !empty($post['typeid']) ? intval($post['typeid']) : $typeid;
- if (empty($typeid)) {
- $this->error('post接口缺少typeid的参数与值!');
- }
-
- /*留言间隔限制*/
- $channel_guestbook_interval = tpSetting('channel_guestbook.channel_guestbook_interval');
- $channel_guestbook_interval = is_numeric($channel_guestbook_interval) ? intval($channel_guestbook_interval) : 60;
- if (0 < $channel_guestbook_interval) {
- $map = array(
- 'ip' => clientIP(),
- 'typeid' => $typeid,
- 'add_time' => array('gt', getTime() - $channel_guestbook_interval),
- );
- $count = Db::name('guestbook')->where($map)->count('aid');
- if (!empty($count)) {
- $this->error("同一个IP在{$channel_guestbook_interval}秒之内不能重复提交!");
- }
- }
- /*end*/
-
- // 提取表单令牌的token变量名
- $token = '__token__';
- foreach ($post as $key => $val) {
- if (preg_match('/^__token__/i', $key)) {
- $token = $key;
- continue;
- }
- }
-
- //判断必填项
- foreach ($post as $key => $value) {
- if (stripos($key, "attr_") !== false) {
- //处理得到自定义属性id
- $attr_id = substr($key, 5);
- $attr_id = intval($attr_id);
- $ga_data = Db::name('guestbook_attribute')->where([
- 'attr_id' => $attr_id,
- ])->find();
- if ($ga_data['required'] == 1 && empty($value)) {
- $this->error($ga_data['attr_name'] . '不能为空!');
- }
-
- if ($ga_data['validate_type'] == 6 && !empty($value)) {
- $pattern = "/^1\d{10}$/";
- if (!preg_match($pattern, $value)) {
- $this->error($ga_data['attr_name'] . '格式不正确!');
- }
- } elseif ($ga_data['validate_type'] == 7 && !empty($value)) {
- $pattern = "/^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,})$/i";
- if (preg_match($pattern, $value) == false) {
- $this->error($ga_data['attr_name'] . '格式不正确!');
- }
- }
- }
- }
-
- $newData = array(
- 'typeid' => $typeid,
- 'users_id' => $this->users_id,
- 'channel' => 8,
- 'ip' => clientIP(),
- 'lang' => get_main_lang(),
- 'add_time' => getTime(),
- 'update_time' => getTime(),
- );
- $data = array_merge($post, $newData);
-
- /*表单令牌*/
- $token_value = !empty($data[$token]) ? $data[$token] : '';
- $session_path = \think\Config::get('session.path');
- $session_file = ROOT_PATH . $session_path . "/sess_".str_replace('__token__', '', $token);
- $filesize = @filesize($session_file);
- if(file_exists($session_file) && !empty($filesize)) {
- $fp = fopen($session_file, 'r');
- $token_v = fread($fp, $filesize);
- fclose($fp);
- if ($token_v != $token_value) {
- $this->error('表单令牌无效!');
- }
- } else {
- $this->error('表单令牌无效!');
- }
- /*end*/
-
- $guestbookRow = [];
- /*处理是否重复表单数据的提交*/
- $formdata = $data;
- foreach ($formdata as $key => $val) {
- if (in_array($key, ['typeid', 'lang']) || preg_match('/^attr_(\d+)$/i', $key)) {
- continue;
- }
- unset($formdata[$key]);
- }
- $md5data = md5(serialize($formdata));
- $data['md5data'] = $md5data;
- $guestbookRow = M('guestbook')->field('aid')->where(['md5data' => $md5data])->find();
- /*--end*/
-
- $aid = !empty($guestbookRow['aid']) ? $guestbookRow['aid'] : 0;
- if (empty($guestbookRow)) { // 非重复表单的才能写入数据库
- $aid = M('guestbook')->insertGetId($data);
- if ($aid > 0) {
- $res = model('v1.Api')->saveGuestbookAttr($post, $aid, $typeid);
- if ($res){
- $this->error($res);
- }
- }
- } else {
- // 存在重复数据的表单,将在后台显示在最前面
- Db::name('guestbook')->where('aid', $aid)->update([
- 'add_time' => getTime(),
- 'update_time' => getTime(),
- ]);
- }
- @unlink($session_file);
- $this->renderSuccess(['aid'=>$aid], '提交成功');
- }
- $this->error('请求错误!');
- }
- //点赞
- public function ask_like(){
- model('v1.Ask')->askLike($this->users);
- }
- //提交问题
- public function add_ask(){
- model('v1.Ask')->addAsk($this->users);
- }
- //提交回答
- public function add_answer(){
- model('v1.Ask')->addAnswer($this->users);
- }
-
- //视频订单列表
- public function media_order_list()
- {
- if (IS_AJAX) {
- $list = model('v1.Order')->mediaOrderList();
- return $this->renderSuccess(compact('list'));
- }
- $this->error('请求错误!');
- }
-
- //播放记录列表
- public function media_play_list()
- {
- if (IS_AJAX) {
- $list = model('v1.Order')->playList();
- return $this->renderSuccess(compact('list'));
- }
- $this->error('请求错误!');
- }
-
- //视频订单详情
- public function media_order_detial()
- {
- if (IS_AJAX) {
- $list = model('v1.Order')->mediaOrderDetails();
- return $this->renderSuccess(compact('list'));
- }
- $this->error('请求错误!');
- }
-
- // 处理会员升级方法(集合方法)
- public function HandleUserLevelAction()
- {
- if (IS_AJAX) {
- // 传入参数
- $param = input('param.');
-
- // 处理传入的参数
- $param['users_id'] = intval($this->users_id);
- $param['type_id'] = !empty($param['type_id']) ? intval($param['type_id']) : 0;
-
- $v1ShopModel = model('v1.Shop');
- // 判断执行操作
- $action = !empty($param['action']) ? strval($param['action']) : '';
- if ('upgrade_level' == $action) {
- // 会员升级
- $v1ShopModel->upgradeUserLevel($param);
- } else if ('upgrade_level_pay' == $action) {
- //会员升级后续处理
- $v1ShopModel->handleUpgradeUserLevel($param);
- }
- }
- }
-
- // 处理视频购买方法(集合方法)
- public function HandleBuyMediaAction()
- {
- if (IS_AJAX) {
- // 传入参数
- $param = input('param.');
-
- // 处理传入的参数
- $param['users_id'] = intval($this->users_id);
- $param['aid'] = !empty($param['aid']) ? intval($param['aid']) : 0;
-
- $v1ShopModel = model('v1.Shop');
- // 判断执行操作
- $action = !empty($param['action']) ? strval($param['action']) : '';
- if ('media' == $action) {
- // 会员升级
- $v1ShopModel->buyMedia($param);
- } else if ('media_pay' == $action) {
- //会员升级后续处理
- $v1ShopModel->handleBuyMedia($param);
- }
- }
- }
-
- public function verify_action()
- {
- if (IS_AJAX) {
- // 是否安装核销插件
- $weappInfo = model('ShopPublicHandle')->getWeappVerifyInfo();
- if (!empty($weappInfo) && 1 === intval($weappInfo['status'])) {
- // 调用分销逻辑层方法
- $verifyLogic = new \app\plugins\logic\VerifyLogic($this->users);
- $verifyLogic->verifyAction($weappInfo);
- }
- }
- $this->error('请求错误!');
- }
-
- /**
- * 注销账号(目前仅App端使用,使用手机号注销)
- */
- public function log_off()
- {
- $res = Db::name('users')->where('users_id',$this->users_id)->update(['is_del'=>1,'update_time'=>getTime()]);
- if ($res !== false){
- $this->success('注销成功!');
- }
- $this->error('注销失败!');
- }
-
- /**
- * 秒杀插件 立即购买
- */
- public function seckill_shop_buy_now()
- {
- //检测是否安装秒杀插件
- if (is_dir('./weapp/Seckill/')) {
- $SeckillRow = model('Weapp')->getWeappList('Seckill');
- if (!empty($SeckillRow) && 1 != intval($SeckillRow['status'])) {
- $this->error('请先安装并启用秒杀抢购插件!');
- }
- } else {
- $this->error('请先安装并启用秒杀抢购插件!');
- }
-
- if (IS_AJAX_POST) {
- $post = input('post.');
- // 数量判断
- if (empty($post['product_num']) || 0 > $post['product_num']) $this->error('请输入数量');
-
- // 默认会员ID
- $post['users_id'] = $this->users_id;
-
- // 商城模型
- $WeappSeckillModel = model('v1.WeappSeckill');
-
- // 商品是否已售罄
- $WeappSeckillModel->IsSaledOut($post);
-
- //限购
- $WeappSeckillModel->LimitBuy($post,$this->users);
-
- // 立即购买
- $WeappSeckillModel->ShopBuyNow($post);
- }
- }
-
- /**
- * 秒杀插件 产品购买
- */
- public function seckill_shop_product_buy()
- {
- //检测是否安装秒杀插件
- if (is_dir('./weapp/Seckill/')) {
- $SeckillRow = model('Weapp')->getWeappList('Seckill');
- if (!empty($SeckillRow) && 1 != intval($SeckillRow['status'])) {
- $this->error('请先安装并启用秒杀抢购插件!');
- }
- } else {
- $this->error('请先安装并启用秒杀抢购插件!');
- }
-
- if (IS_AJAX_POST) {
- // 获取解析数据
- $querystr = input('param.querystr/s');
- if (empty($querystr)) $this->error('无效链接!');
-
- // 商城模型
- $ShopModel = model('v1.WeappSeckill');
-
- // 获取商品信息进行展示
- $ShopModel->GetProductData($querystr,$this->users);
- }
- }
-
- /**
- * 秒杀插件 订单结算
- */
- public function seckill_shop_order_pay()
- {
- //检测是否安装秒杀插件
- if (is_dir('./weapp/Seckill/')) {
- $SeckillRow = model('Weapp')->getWeappList('Seckill');
- if (!empty($SeckillRow) && 1 != intval($SeckillRow['status'])) {
- $this->error('请先安装并启用秒杀抢购插件!');
- }
- } else {
- $this->error('请先安装并启用秒杀抢购插件!');
- }
-
- if (IS_AJAX_POST) {
- $post = input('post.');
- $post['action'] = !empty($post['action']) ? $post['action'] : 'CreatePay';
-
- // 默认会员ID
- $post['users_id'] = $this->users_id;
- $post['openid'] = Db::name('wx_users')->where('users_id', $this->users_id)->getField('openid');
-
- // 商城模型
- $ShopModel = model('v1.WeappSeckill');
-
- // 操作分发
- if ('DirectPay' == $post['action']) {
- // 订单直接支付
- $ShopModel->OrderDirectPay($post);
- } else if ('CreatePay' == $post['action']) {
- // 获取解析数据
- if (empty($post['querystr'])) $this->error('无效链接!');
-
- // 获取商品信息生成订单并支付
- $ShopModel->ShopOrderPay($post, $this->users);
- }
- }
- }
-
- }
|