123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- namespace crmeb\services\serve\storage;
- use crmeb\basic\BaseStorage;
- use crmeb\services\AccessTokenServeService;
- use think\exception\ValidateException;
- /**
- * Class Crmeb
- * @package crmeb\services\serve\storage
- */
- class Crmeb extends BaseStorage
- {
- protected $accessToken;
- /**
- * Crmeb constructor.
- * @param string $name
- * @param AccessTokenServeService $service
- * @param string|null $configFile
- */
- public function __construct(string $name, AccessTokenServeService $service, string $configFile = null)
- {
- $this->accessToken = $service;
- }
- /**
- * 获取用户信息
- * @param string $account
- * @param string $secret
- * @return array|mixed
- */
- public function getUser()
- {
- return $this->accessToken->httpRequest('user/info');
- }
- /**
- * 用户登录
- * @param string $account
- * @param string $secret
- * @return array|mixed
- */
- public function login(string $account, string $secret)
- {
- return $this->accessToken->httpRequest('user/login', ['account' => $account, 'secret' => $secret], 'POST', false);
- }
- /**
- * 注册平台
- * @param array $data
- * @return array|mixed
- */
- public function register(array $data)
- {
- return $this->accessToken->httpRequest('user/register', $data, 'POST', false);
- }
- /**
- * 平台用户消息记录
- * @param int $page
- * @param int $limit
- * @return array|mixed
- */
- public function userBill(int $page, int $limit)
- {
- return $this->accessToken->httpRequest('user/bill', ['page' => $page, 'limit' => $limit]);
- }
- /**
- * 找回账号
- * @param array $data
- * @return array|mixed
- */
- public function forget(array $data)
- {
- return $this->accessToken->httpRequest('user/forget', $data, 'POST', false);
- }
- /**
- * 修改密码
- * @param array $data
- * @return array|mixed
- */
- public function modify(array $data)
- {
- return $this->accessToken->httpRequest('user/modify', $data, 'POST', false);
- }
- /**
- * 获取验证码
- * @param string $phone
- * @return array|mixed
- */
- public function code(string $phone, $type = 0)
- {
- return $this->accessToken->httpRequest('user/code', ['phone' => $phone, 'types' => $type], 'POST', false);
- }
- /**
- * 验证验证码
- * @param string $phone
- * @return array|mixed
- */
- public function checkCode(string $phone, string $verify_code)
- {
- return $this->accessToken->httpRequest('user/code/verify', ['phone' => $phone, 'verify_code' => $verify_code], 'POST', false);
- }
- /**
- * 套餐列表
- * @param string $type 套餐类型:sms,短信;query,物流查询;dump,电子面单;copy,产品复制
- * @return array|mixed
- */
- public function mealList(string $type)
- {
- return $this->accessToken->httpRequest('meal/list', ['type' => $type]);
- }
- /**
- * 套餐支付
- * @param array $data
- * @return array|mixed
- */
- public function payMeal(array $data)
- {
- return $this->accessToken->httpRequest('meal/code', $data);
- }
- /**
- * 用量记录
- * @param int $page
- * @param int $limit
- * @param int $type
- * @return array|mixed
- */
- public function record(int $page, int $limit, int $type, $status = '')
- {
- $typeContent = [1 => 'sms', 2 => 'expr_dump', 3 => 'expr_query', 4 => 'copy'];
- if (!isset($typeContent[$type])) {
- throw new ValidateException('参数类型不正确');
- }
- $data = ['page' => $page, 'limit' => $limit, 'type' => $typeContent[$type]];
- if ($type == 1 && $status != '') {
- $data['status'] = $status;
- }
- return $this->accessToken->httpRequest('user/record', $data);
- }
- /**
- * 修改手机号
- * @param array $data
- * @return array|mixed
- */
- public function modifyPhone(array $data)
- {
- return $this->accessToken->httpRequest('user/modify/phone', $data);
- }
- protected function initialize(array $config)
- {
- }
- }
|