```
~~~
<?php
namespace app\program\controller; //命名空间
use think\App;
use think\facade\Db;
class ProgramService //类名(可自定义)
{
private $table = "数据库表名"; //我的数据库表名 取你自己的表名或者表名写在SQL语句中
~~~
~~~
private $authorization_uri = "https://api.weixin.qq.com/sns/jscode2session"; //微信授权获取openID以及session_key的地址
//自定义变量
private $AppID;
private $Secret;
private $session_key;
private $openid;
private $unionid;
public function __construct()
{
//构造方法,用于变量赋值 也可以在定义变量时直接赋值 注, 类变量不能直接调用方法
$this -> AppID = sysconf("program.app_id");
$this -> Secret = sysconf("program.secret");
}
/**
* 小程序授权入口
* 接收小程序传过来的code值获取openID及sessionkey
* @param $code
* @param $rawData
* @param $session_key
* @param $signature
* @param $iv
* @param $encryptedData
* @return \think\response\Json
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function authorization($code,$rawData,$signature,$iv,$encryptedData,$from_id = ''){
if(empty($code)) return json(returnData(1,'小程序授权参数code不存在'));
//拼接url地址
$url = $this -> authorization_uri . "?appid=" . $this -> AppID . "&secret=" . $this -> Secret . "&js_code=" . $code . "&grant_type=authorization_code";
//自己封装的请求 composer 安装php-curl 直接调用curl 请求即可 封装是为了简化代码
$res = json_decode(requestGetData($url),true);
// dump($res);die;
if(isset($res['errcode'])) return json(returnData(1,'授权失败',$res['errmsg']));
//变量赋值
$this -> session_key = $res['session_key'];
$this -> openid = $res['openid'];
// $this -> unionid = $res['unionid'];
//验证签名。判断数据真实性
$signature2 = sha1(htmlspecialchars_decode($rawData) . $this -> session_key);
if($signature != $signature2) return json(returnData(1,'授权失败',"签名认证失败"));
//检查用户登录状态
return $this -> changeLoginStatus($this -> session_key,$iv,$encryptedData,$from_id);
}
/**
* 检查用户登录状态
* @param $session_key
* @param $iv
* @param $encryptedData
* @return \think\response\Json
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function changeLoginStatus($session_key,$iv,$encryptedData,$from_id){
//根据openID判断数据库是否存在该用户。存在即直接返回用户数据
$user = Db::name($this -> table) -> where("openid",$this -> openid) -> find();
if($user) {
//是否被人邀请 如无需此功能可删除
if($from_id != '' && $user['from_id'] == 0){
Db::name($this -> table) -> where("id",$user['id']) -> update(['form_id' => $from_id]);
}
return json(returnData(99,'登录成功',$user['openid']));
}
//用户未授权,调用微信授权解密参数并存入数据库
return $result = $this -> decryptionEncryptedData($session_key,$iv,$encryptedData,$from_id);
}
/**
* 解密参数,保存用户数据
* @param $session_key
* @param $iv
* @param $encryptedData
* @return \think\response\Json
*/
public function decryptionEncryptedData($session_key,$iv,$encryptedData,$from_id){
if (strlen($session_key) != 24) return json(returnData(1,'授权失败',"解密后得到的sessionKey非法"));
if (strlen($iv) != 24) return json(returnData(1,'授权失败',"解密后得到的iv非法"));
$aesKey = base64_decode($session_key);
$aesIV = base64_decode($iv);
$aesCipher = base64_decode($encryptedData);
$result = openssl_decrypt( $aesCipher, "AES-128-CBC", $aesKey, 1, $aesIV);
$result = json_decode($result,true);
// dump($result);die;
if(empty($result)) return json(returnData(1,'授权失败',"解密后得到的Buffer非法"));
//确认小程序AppID是否为同一个
if($result['watermark']['appid'] != $this -> AppID ) return json(returnData(1,'授权失败',"解密后得到的AppID非法"));
//需保存的用户数组 请改成你自己的数据库字段
$customer['openid'] = $this -> openid;
//开放平台标识,如无需开放平台 请注释或删除
$customer['unionid'] = $result['unionId'];
//用户昵称可能包含特殊字符,需处理
$customer['nickname'] = $this->removeEmoji($result['nickName']);
$customer['sex'] = $result['gender'];
$customer['city'] = $result['city'];
$customer['level'] = $this -> setCustomerLevel();
$customer['from_id'] = $from_id;
$customer['province'] = $result['province'];
$customer['country'] = $result['country'];
$customer['headimgurl'] = $result['avatarUrl'];
$customer['appid'] = $result['watermark']['appid'];
$customer['authorization_time'] = $result['watermark']['timestamp'];
$id = Db::name($this -> table) -> insertGetId($customer);
if($id) return json(returnData(99,'授权成功',$this -> openid));
return json(returnData(1,'授权失败',"保存用户信息出错".Db::name($this -> table) -> getLastSql()));
}
/**
* 处理特殊字符
* @param $text
* @return string|string[]|null
*/
public function removeEmoji($text) {
$clean_text = "";
preg_match_all("/[\x{4e00}-\x{9fa5}|0-9|a-z|A-Z|_]/u", $text, $matches);
$clean_text = isset($matches[0]) ? implode('', $matches[0]) : '';
// Match Emoticons
$regexEmoticons = '/[\x{1F600}-\x{1F64F}]/u';
$clean_text = preg_replace($regexEmoticons, '', $text);
// Match Miscellaneous Symbols and Pictographs
$regexSymbols = '/[\x{1F300}-\x{1F5FF}]/u';
$clean_text = preg_replace($regexSymbols, '', $clean_text);
// Match Transport And Map Symbols
$regexTransport = '/[\x{1F680}-\x{1F6FF}]/u';
$clean_text = preg_replace($regexTransport, '', $clean_text);
// Match Miscellaneous Symbols
$regexMisc = '/[\x{2600}-\x{26FF}]/u';
$clean_text = preg_replace($regexMisc, '', $clean_text);
// Match Dingbats
$regexDingbats = '/[\x{2700}-\x{27BF}]/u';
$clean_text = preg_replace($regexDingbats, '', $clean_text);
return $clean_text;
}
?>
~~~
```
- thinkphp6执行流程(一)
- php中use关键字用法详解
- Thinkphp6使用腾讯云发送短信步骤
- 路由配置
- Thinkphp6,static静态资源访问路径问题
- ThinkPHP6.0+ 使用Redis 原始用法
- smarty在thinkphp6.0中的最佳实践
- Thinkphp6.0 搜索器使用方法
- 从已有安装包(vendor)恢复 composer.json
- tp6with的用法,表间关联查询
- thinkphp6.x多对多如何添加中间表限制条件
- thinkphp6 安装JWT
- 缓存类型
- 请求信息和HTTP头信息
- 模型事件用法
- 助手函数汇总
- tp6集成Alipay 手机和电脑端支付的方法
- thinkphp6使用jwt
- 6.0session cookie cache
- tp6笔记
- TP6(thinkphp6)队列与延时队列
- thinkphp6 command(自定义指令)
- command(自定义指令)
- 本地文件上传
- 缓存
- 响应
- 公共函数配置
- 七牛云+文件上传
- thinkphp6:访问多个redis数据源(thinkphp6.0.5 / php 7.4.9)
- 富文本编辑器wangEditor3
- IP黑名单
- 增删改查 +文件上传
- workerman 定时器操作控制器的方法
- 上传文件到阿里云oss
- 短信或者邮箱验证码防刷代码
- thinkphp6:访问redis6(thinkphp 6.0.9/php 8.0.14)
- 实现关联多个id以逗号分开查询数据
- thinkphp6实现邮箱注册功能的细节和代码(点击链接激活方式)
- 用mpdf生成pdf文件(php 8.1.1 / thinkphp v6.0.10LTS )
- 生成带logo的二维码(php 8.1.1 / thinkphp v6.0.10LTS )
- mysql数据库使用事务(php 8.1.1 / thinkphp v6.0.10LTS)
- 一,创建过滤IP的中间件
- 源码解析请求流程
- 验证码生成
- 权限管理
- 自定义异常类
- 事件监听event-listene
- 安装与使用think-addons
- 事件与多应用
- Workerman 基本使用
- 查询用户列表按拼音字母排序
- 扩展包合集
- 查询用户数据,但是可以通过输入用户昵称来搜索用户同时还要统计用户的文章和粉丝数
- 根据图片的minetype类型获取文件真实拓展名思路
- 到处excel
- 用imagemagick库生成缩略图
- 生成zip压缩包并下载
- API 多版本控制
- 用redis+lua做限流(php 8.1.1 / thinkphp v6.0.10LTS )
- 【thinkphp6源码分析三】 APP类之父, 容器Container类
- thinkphp6表单重复提交解决办法
- 小程序授权
- 最简单的thinkphp6导出Excel
- 根据访问设备不同访问不同模块
- 服务系统
- 前置/后置中间件
- 给接口api做签名验证(php 8.1.1 / thinkphp v6.0.10LTS )
- 6实现邮箱注册功能的细节和代码(点击链接激活方式)
- 使用前后端分离的验证码(thinkphp 6.0.9/php 8.0.14/vue 3.2.26)
- 前后端分离:用jwt+middleware做用户登录验证(php 8.1.1 / thinkphp v6.0.10LTS )
- vue前后端分离多图上传
- thinkphp 分组、页面跳转与ajax
- thinkphp6 常用方法文档
- 手册里没有的一些用法
- Swagger 3 API 注释
- PHP 秒级定时任务
- thinkphp6集成gatewayWorker(workerman)实现实时监听
- thinkphp6按月新增数据表
- 使用redis 实现消息队列
- api接口 统一结果返回处理类
- 使用swoole+thinkphp6.0+redis 结合开发的登录模块
- 给接口api做签名验证
- ThinkPHP6.0 + UniApp 实现小程序的 微信登录
- ThinkPHP6.0 + Vue + ElementUI + axios 的环境安装到实现 CURD 操作!
- 异常$e
- 参数请求验证自定义和异常错误自定义