Ver Fonte

手机端(账户及地址)

wufeng há 2 anos atrás
pai
commit
010ce520f2

+ 8 - 0
app/mobile/config/validate_rules.php

@@ -29,6 +29,14 @@ return [
         'password|密码' => 'require|max:255',
     ],
 
+    //【地址】
+    //添加
+    'AddrAdd' => [
+        'addr_code|收货地址省市区编码' => 'require|array|length:3',
+        'addr|详情地址' => 'require|max:255',
+        'contactor|联系人' => 'require|max:255',
+        'mobile|联系电话' => 'require|mobile',
+    ],
 
 
 ];

+ 38 - 0
app/mobile/controller/Account.php

@@ -0,0 +1,38 @@
+<?php
+
+namespace app\mobile\controller;
+
+use app\BaseController;
+use app\mobile\logic\AccountLogic;
+use think\exception\ValidateException;
+use think\facade\Config;
+use think\facade\Validate;
+
+//账户
+class Account extends BaseController
+{
+
+    //登录
+    public function login()
+    {
+        $param = $this->request->only(['username', 'password'], 'post');
+
+        $val = Validate::rule(Config::get('validate_rules.login'));
+
+        if (!$val->check($param)) throw new ValidateException($val->getError());
+
+        return AccountLogic::login($param);
+    }
+
+    //登出
+    public function logout()
+    {
+        return AccountLogic::logout($this->request->post('token', ''));
+    }
+
+    //详情
+    public function info(){
+        return AccountLogic::info();
+    }
+
+}

+ 57 - 0
app/mobile/controller/Addr.php

@@ -0,0 +1,57 @@
+<?php
+
+namespace app\mobile\controller;
+
+//地址
+use app\BaseController;
+use app\mobile\logic\AddrLogic;
+use think\exception\ValidateException;
+use think\facade\Config;
+use think\facade\Validate;
+
+class Addr extends BaseController
+{
+    //列表
+    public function list()
+    {
+        $param = $this->request->only(['page' => 1, 'size' => 10], 'post');
+        return AddrLogic::list($param);
+    }
+
+    //添加
+    public function add()
+    {
+        $param = $this->request->only(['addr_code', 'addr', 'contactor', 'mobile'], 'post');
+
+        $val = Validate::rule(Config::get('validate_rules.AddrAdd'));
+        if (!$val->check($param)) throw new ValidateException($val->getError());
+
+        return AddrLogic::add($param);
+    }
+
+    //详情
+    public function read()
+    {
+        $id = $this->request->post('id/d', 0);
+        return AddrLogic::read($id);
+    }
+
+    //修改
+    public function edit()
+    {
+        $param = $this->request->only(['id', 'addr_code', 'addr', 'contactor', 'mobile'], 'post');
+
+        $val = Validate::rule(array_merge(Config::get('validate_rules.AddrAdd'), ['id' => 'require|number|gt:0']));
+        if (!$val->check($param)) throw new ValidateException($val->getError());
+
+        return AddrLogic::edit($param);
+    }
+
+    //删除
+    public function delete()
+    {
+        $id = $this->request->post('id/d', 0);
+        return AddrLogic::delete($id);
+    }
+
+}

+ 90 - 0
app/mobile/logic/AccountLogic.php

@@ -0,0 +1,90 @@
+<?php
+
+namespace app\mobile\logic;
+
+use app\model\AccountModel;
+use app\model\AccountTokenModel;
+use app\model\CommonModel;
+use think\Exception;
+use think\facade\Config;
+use think\facade\Db;
+use think\response\Json;
+
+class AccountLogic extends BaseLogic
+{
+    //登录
+    public static function login(array $data = []): Json
+    {
+        Db::startTrans();
+        try {
+
+            $rs = AccountModel::field('id,username,name,password,salt,starttime,expiretime,status')
+                ->where(['is_del' => CommonModel::$del_normal, 'username' => $data['username']])
+                ->findOrEmpty();
+
+            if ($rs->isEmpty()) throw new Exception('该卡号不存在,请仔细核对');
+            if (getPassword($data['password'], $rs->salt) != $rs->password) throw new Exception('密码错误');
+
+            $date = date('Y-m-d H:i:s');
+
+            if (($date < $rs->starttime) || ($date > $rs->expiretime)) throw new Exception('该卡不在有效期内');
+
+
+            $update_data = ['updaterid' => $rs->id, 'updater' => $rs->name, 'updatetime' => $date];
+
+            if ($rs->status == AccountModel::$status_not_active) {
+                //处理激活信息
+                $update_data['status'] = AccountModel::$status_activated;
+                $update_data['activetime'] = $date;
+            }
+
+            //根棍账户相关信息
+            AccountModel::where(['is_del' => CommonModel::$del_normal, 'id' => $rs->id])->save($update_data);
+
+            //维护token
+            $token = base64_encode($rs->username . $rs->salt . (string)time());
+
+            $res = AccountTokenModel::field('id')
+                ->where('accountid', $rs->id)
+                ->findOrEmpty()
+                ->isEmpty();
+
+            $expire = Config::get('common.expire');
+            if ($res) AccountTokenModel::create(['token' => $token, 'expiretime' => date('Y-m-d H:i:s', time() + $expire), 'accountid' => $rs->id]);
+            else AccountTokenModel::where(['accountid' => $rs->id])->update(['token' => $token, 'expiretime' => date('Y-m-d H:i:s', time() + $expire)]);
+
+            Db::commit();
+
+            return json_show(CommonModel::$success, '登录成功', ['token' => $token]);
+
+        } catch (Exception $exception) {
+            Db::rollback();
+            return json_show(CommonModel::$error_param, $exception->getMessage());
+        }
+
+    }
+
+    //登出
+    public static function logout(string $token = ''): Json
+    {
+
+        $info = AccountTokenModel::where(['accountid' => self::$aid])->save(['token' => '', 'expiretime' => date('Y-m-d H:i:s')]);
+
+        return $info ? json_show(CommonModel::$success, '登出成功') : json_show(CommonModel::$error_param, '登出失败');
+
+    }
+
+    //详情
+    public static function info(): Json
+    {
+
+        $info = AccountModel::where(['id' => self::$aid])
+            ->field('id,username,mobile,name,starttime,expiretime')
+            ->findOrEmpty()
+            ->toArray();
+
+        return $info ? json_show(CommonModel::$success, '获取账户详情成功', $info) : json_show(CommonModel::$error_param, '账户为空');
+
+    }
+
+}

+ 97 - 0
app/mobile/logic/AddrLogic.php

@@ -0,0 +1,97 @@
+<?php
+
+namespace app\mobile\logic;
+
+use app\model\AddrModel;
+use app\model\CommonModel;
+use think\response\Json;
+
+
+class AddrLogic extends BaseLogic
+{
+
+    //列表
+    public static function list(array $data = []): Json
+    {
+
+        $db = AddrModel::where('is_del', CommonModel::$del_normal);
+
+        $count = $db->count('id');
+
+        $list = $db
+            ->field('id,addr_code,addr,contactor,mobile')
+            ->page($data['page'], $data['size'])
+            ->withAttr('addr_code', function ($val) {
+                return explode(',', $val);
+            })
+            ->order('id', 'desc')
+            ->select()
+            ->toArray();
+
+        return json_show(CommonModel::$success, '获取列表成功', ['count' => $count, 'list' => $list]);
+
+    }
+
+    //添加
+    public static function add(array $data = []): Json
+    {
+        $rs = AddrModel::create(array_merge($data, [
+            'uid' => self::$aid,
+            'addr_code' => implode(',', $data['addr_code']),
+            'is_del' => CommonModel::$del_normal,
+            'addtime' => date('Y-m-d H:i:s'),
+            'updatetime' => date('Y-m-d H:i:s'),
+        ]))->save();
+
+        return $rs ? json_show(CommonModel::$success, '添加地址成功') : json_show(CommonModel::$error_param, '添加地址失败');
+
+    }
+
+    //详情
+    public static function read(int $id = 0): Json
+    {
+        $rs = AddrModel::field(true)
+            ->where(['id' => $id, 'is_del' => CommonModel::$del_normal])
+            ->withAttr('addr_code', function ($val) {
+                return explode(',', $val);
+            })
+            ->findOrEmpty()
+            ->toArray();
+        return json_show(CommonModel::$success, '获取收货地址详情成功', $rs);
+    }
+
+    //修改
+    public static function edit(array $data = []): Json
+    {
+
+        $res = AddrModel::field('id')
+            ->where(['id' => $data['id'], 'is_del' => CommonModel::$del_normal])
+            ->findOrEmpty()
+            ->isEmpty();
+        if ($res) return json_show(CommonModel::$error_param, '该地址不存在');
+
+        $rs = AddrModel::where(['id' => $data['id'], 'is_del' => CommonModel::$del_normal])
+            ->save(array_merge($data, [
+                'addr_code' => implode(',', $data['addr_code']),
+                'updatetime' => date('Y-m-d H:i:s'),
+            ]));
+
+        return $rs ? json_show(CommonModel::$success, '修改地址成功') : json_show(CommonModel::$error_param, '修改地址失败');
+
+    }
+
+    //删除
+    public static function delete(int $id = 0): Json
+    {
+        $rs = AddrModel::where(['id' => $id, 'is_del' => CommonModel::$del_normal])
+            ->save([
+                'is_del' => CommonModel::$del_deleted,
+                'updatetime' => date('Y-m-d H:i:s'),
+            ]);
+
+        return $rs ? json_show(CommonModel::$success, '删除地址成功') : json_show(CommonModel::$error_param, '该地址不存在');
+
+    }
+
+
+}

+ 20 - 0
app/mobile/logic/BaseLogic.php

@@ -0,0 +1,20 @@
+<?php
+
+namespace app\mobile\logic;
+
+class BaseLogic
+{
+    protected static $aid = 0;//当前操作的账户id
+    protected static $aname = '';//当前操作的账户名
+    protected static $company_id = '';//企业id
+    protected static $card_id = '';//卡类型id
+
+    //设置用户信息
+    public static function setUserInfo(int $aid = 0, string $aname = '', int $company_id = 0, int $card_id = 0)
+    {
+        self::$aid = $aid;
+        self::$aname = $aname;
+        self::$company_id = $company_id;
+        self::$card_id = $card_id;
+    }
+}

+ 7 - 0
app/mobile/middleware.php

@@ -0,0 +1,7 @@
+<?php
+
+//中间件定义
+
+return [
+    app\mobile\middleware\mobileMiddleware::class
+];

+ 96 - 0
app/mobile/middleware/mobileMiddleware.php

@@ -0,0 +1,96 @@
+<?php
+
+namespace app\mobile\middleware;
+
+
+use app\mobile\logic\BaseLogic;
+use app\model\AccountModel;
+use app\model\AccountTokenModel;
+use app\model\CommonModel;
+use think\exception\ValidateException;
+use think\facade\Config;
+use think\facade\Validate;
+use think\Response;
+use app\model\AccountLogModel;
+
+//中间件
+class mobileMiddleware
+{
+
+    //白名单
+    private $white_list = ['login'];
+
+    //请求入口
+    public function handle($request, \Closure $next)
+    {
+
+        //请求的唯一标识
+        $request->request_id = date('YmdHis') . mt_rand(100000, 999999);
+
+        //接收参数
+        $param = $request->post();
+
+        //记录日志
+        AccountLogModel::add($request->request_id, $param);
+
+        //判断白名单
+        if (!in_array(request()->pathinfo(), $this->white_list)) {
+            $val = Validate::rule(['token' => 'require']);
+
+            if (!$val->check($param)) throw new ValidateException($val->getError());
+
+            //获取用户信息
+            $account = $this->verifyMobileToken($param['token']);
+            BaseLogic::setUserInfo($account['aid'], $account['aname'], $account['company_id'], $account['card_id']);
+
+            $request->aid = $account['aid'];
+            $request->aname = $account['aname'];
+            $request->company_id = $account['company_id'];
+            $request->card_id = $account['card_id'];
+
+        }
+
+        return $next($request);
+
+    }
+
+
+    //请求结束的回调(如果返回数据用的是app_show/error_show,即直接echo,则不会触发该方法)
+    public function end(Response $response)
+    {
+        //只做记录,不做输出
+        AccountLogModel::where('request_id', request()->request_id)->save([
+            'response' => $response->getContent(),
+            'uid' => request()->uid ?? 0,
+            'uname' => request()->uname ?? '',
+            'updatetime' => date('Y-m-d H:i:s')
+        ]);
+    }
+
+    //校验手机端token
+    private function verifyMobileToken(string $token = '')
+    {
+        $has = AccountTokenModel::where(['token' => $token])->findOrEmpty();
+        if ($has->isEmpty()) throw new ValidateException('token不存在');
+
+        if (strtotime($has->expiretime) <= time()) throw new ValidateException('token已失效');
+
+        $account = AccountModel::where(['id' => $has->accountid, 'is_del' => CommonModel::$del_normal])
+            ->field('id,status,username,salt,company_id,card_id')
+            ->findOrEmpty();
+        if ($account->isEmpty()) throw new ValidateException('未找到账户');
+
+        if ($account->status != AccountModel::$status_activated) throw new ValidateException('账户不在激活状态,无法使用');
+
+        $token_str = base64_decode($token);
+
+        $account_str = substr($token_str, 0, -10);
+        if ($account_str == $account->username . $account->salt) {
+            AccountTokenModel::where(['token' => $token])
+                ->save(['expiretime' => date('Y-m-d H:i:s', time() + Config::get('common.expire'))]);
+            return ['aid' => $account->id, 'aname' => $account->username, 'company_id' => $account->company_id, 'card_id' => $account->card_id];
+        } else throw new ValidateException('账户token无效');
+
+    }
+
+}

+ 14 - 0
app/mobile/route/app.php

@@ -0,0 +1,14 @@
+<?php
+
+use think\facade\Route;
+
+Route::rule('login', 'mobile/Account/login');//登录
+Route::rule('logout', 'mobile/Account/logout');//登出
+Route::rule('info', 'mobile/Account/info');//账户详情
+
+//【地址】
+Route::rule('addrList', 'mobile/Addr/list');//列表
+Route::rule('addrAdd', 'mobile/Addr/add');//添加
+Route::rule('addrRead', 'mobile/Addr/read');//读取
+Route::rule('addrEdit', 'mobile/Addr/edit');//修改
+Route::rule('addrDelete', 'mobile/Addr/delete');//删除

+ 28 - 0
app/model/AccountLogModel.php

@@ -0,0 +1,28 @@
+<?php
+
+
+namespace app\model;
+
+use think\Model;
+
+//请求日志模型(手机端)
+class AccountLogModel extends Model
+{
+    protected $table = 'fc_account_log';
+    protected $pk = 'id';
+    protected $autoWriteTimestamp = 'datetime';
+
+    //添加一条请求记录
+    public static function add(string $request_id = '', array $param = [])
+    {
+        return self::create([
+            'request_id' => $request_id,
+            'ipaddr' => request()->ip(),
+            'action' => request()->pathinfo(),
+            'param' => json_encode($param, JSON_UNESCAPED_UNICODE),
+            'addtime' => date('Y-m-d H:i:s'),
+            'updatetime' => date('Y-m-d H:i:s'),
+        ])->save();
+    }
+}
+

+ 13 - 0
app/model/AccountTokenModel.php

@@ -0,0 +1,13 @@
+<?php
+
+namespace app\model;
+
+use think\Model;
+
+class AccountTokenModel extends Model
+{
+    protected $table = 'fc_account_token';
+    protected $pk = 'id';
+
+
+}

+ 15 - 0
app/model/AddrModel.php

@@ -0,0 +1,15 @@
+<?php
+
+
+namespace app\model;
+
+use think\Model;
+
+//收货地址
+class AddrModel extends Model
+{
+    protected $table = 'fc_addr';
+    protected $pk = 'id';
+
+}
+