2020-07-13 14:50:46 +08:00

61 lines
1.4 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
namespace app\data\controller\api;
use think\admin\Controller;
use app\data\service\MemberService;
use think\exception\HttpResponseException;
/**
* 会员管理基类
* Class Member
* @package app\store\controller\api
*/
abstract class Member extends Controller
{
/**
* 当前会员ID
* @var integer
*/
protected $mid;
/**
* 当前会员数据
* @var array
*/
protected $member;
/**
* 控制器初始化
* @return $this
*/
protected function initialize()
{
[$this->mid, $this->token] = [input('mid', ''), input('token', '')];
if (empty($this->mid)) $this->error('请求会员MID无效');
if (empty($this->token)) $this->error('接口授权TOKEN无效');
$this->member = $this->getMember();
return $this;
}
/**
* 获取会员数据
* @return array
*/
protected function getMember()
{
try {
$this->member = MemberService::instance()->get($this->mid);
if ($this->member['token'] !== $this->token) {
$this->error('无效的授权,请重新登录授权!');
}
return $this->member;
} catch (HttpResponseException $exception) {
throw $exception;
} catch (\Exception $exception) {
$this->error($exception->getMessage());
}
}
}