PHP建站技术分享-从入门到精通PHP建站技术分享-从入门到精通PHP建站技术分享-从入门到精通

QQ:420220301 微信/手机:150-3210-7690
当前位置:首页 > CMS教程 > Fastadmin

uniapp人机验证

管理员 2024-12-14
Fastadmin
5

参考图:
image.png

uniapp代码:

<template>    <view class="page-wrap">        <!-- 图形验证 start -->        <view class="graphic-verification-wrap" v-if="clicaptchaShow">            <view class="graphic-verification-wrap__body u-flex-col u-col-center u-row-center">                <view class="graphic-verification-wrap__body__close" @tap="onClicaptchaClose">                    <u-icon size="40" name="close-circle-fill" color="#c0c4cc"/>                </view>                <view class="graphic-verification-wrap__body__box">                    <image :src="clicaptchaData.url" class="graphic-verification-wrap__body__box__image" v-if="clicaptchaData && clicaptchaData.url" @tap="onAddXy"></image>                    <view class="graphic-verification-wrap__body__box__index u-flex u-row-center" v-for="(item, index) in clicaptchaQuery.xys" :key="index" :style="{ left: `calc(${item.x}px - 25rpx)`, top: `calc(${item.y}px - 25rpx)` }" @tap.stop="onDelXy(index)">                        <text class="u-font-10">{{ index + 1 }}</text>                    </view>                </view>                <view class="u-m-t-20 u-font-14 u-flex u-row-center">                    <view class="u-flex" v-if="clicaptchaQuery.state !== -1">                        <text>请依次点击</text>                        <view class="u-font-16 u-type-error" v-for="(text, index) in clicaptchaData.texts" :key="index" v-if="clicaptchaData.texts">                            <text :class="{ 'u-type-success': clicaptchaQuery.xys[index] }">“{{ text }}”</text>                            <text v-if="index < clicaptchaData.texts.length - 1">、</text>                        </view>                    </view>                    <text v-else>未击中正确区域,请重试!</text>                </view>                <view class="u-m-t-10 u-flex u-row-center s-w-full">                    <view class="u-flex-1 graphic-verification-wrap__body__line"></view>                    <view class="u-p-x-20" @tap="onClicaptchaCreate">                        <u-icon name="reload" size="40" color="#909399" bold></u-icon>                    </view>                    <view class="u-flex-1 graphic-verification-wrap__body__line"></view>                </view>            </view>        </view>        <!-- 图形验证 start -->    </view></template><script>export default {    name: 'test',    data () {        return {            clicaptchaShow: true,            clicaptchaQuery: {                xys: [],                width: 0,                height: 0,                state: 0,                key: ''            },            clicaptchaData: {            }        }    },    onLoad () {        this.initPage();        this.initData();    },    methods: {        // 初始化页面        initPage () {            this.onClicaptchaCreate();        },        // 初始化数据        initData () {        },        // 添加坐标        onAddXy(event) {            let that = this;            if ((that?.clicaptchaQuery?.xys?.length || 0) >= (that?.clicaptchaData?.texts?.length || 0) || that?.clicaptchaQuery?.state === 1) {                return false;            }            uni.createSelectorQuery().in(this).select('.graphic-verification-wrap__body__box__image').boundingClientRect((data) => {                let x = event.touches[0].clientX - data.left;                let y = event.touches[0].clientY - data.top;                that.clicaptchaQuery.xys.push({                    x: x,                    y: y                });                if (that.clicaptchaQuery.xys.length === (that?.clicaptchaData?.texts?.length || 0)) {                    that.clicaptchaQuery.width = data.width;                    that.clicaptchaQuery.height = data.height;                    that.onClicaptchaCheck();                }            }).exec();        },        // 删除坐标        onDelXy(index) {            if (this?.clicaptchaQuery?.state === 1) {                return false;            }            this.clicaptchaQuery.xys.splice(index, 1);        },        // 图形创建        onClicaptchaCreate() {            let that = this;            that.clicaptchaShow = true;            this.$http('clicaptcha.create', {}).then(res => {                that.clicaptchaQuery.xys = [];                that.clicaptchaQuery.key = res?.data?.key || '';                that.clicaptchaQuery.width = res?.data?.width || 0;                that.clicaptchaQuery.height = res?.data?.height || 0;                that.clicaptchaQuery.state = 0;                that.clicaptchaData = res.data;            });        },        // 图形验证        onClicaptchaCheck() {            let that = this;            let xys = [];            if (!that?.clicaptchaQuery?.xys) {                that.$u.toast('请先点击图形验证');                return false;            }            for (let xy of that.clicaptchaQuery.xys) {                xys.push(xy.x + ',' + xy.y)            }            that.clicaptchaQuery.state = 1;            uni.showLoading({                mask: true            });            that.$http('clicaptcha.check', {                event: 'register',                key: that.clicaptchaQuery.key,                width: that.clicaptchaQuery.width,                height: that.clicaptchaQuery.height,                info: [xys.join('-'), that.clicaptchaQuery.width, that.clicaptchaQuery.height].join(';')            }, '', false).then(res => {                if (res.code === 1) {                    that.$u.toast('验证成功,可在此处写上业务逻辑');                } else {                    that.clicaptchaQuery.state = -1;                    setTimeout(() => {                        that.onClicaptchaCreate();                    }, 1000);                }            }).finally(() => {                uni.hideLoading();            });        },        // 关闭图形验证        onClicaptchaClose() {            this.clicaptchaShow = false;        }    }}</script><style scoped lang="scss">.graphic-verification-wrap {    padding: 30rpx;}.graphic-verification-wrap__body {    background-color: #f5f6f7;    box-shadow: 0 0 0 1px hsla(0, 0%, 100%, .3) inset, 0 0.5em 1em rgba(0, 0, 0, 0.6);    border-radius: 20rpx;    padding: 35rpx;    position: relative;}.graphic-verification-wrap__body__close {    position: absolute;    top: -20rpx;    right: -20rpx;}.graphic-verification-wrap__body__box {    width: 100%;    background-color: red;    position: relative;}.graphic-verification-wrap__body__box__image {    vertical-align: middle;    width: 100%;}.graphic-verification-wrap__body__box__index {    width: 50rpx;    height: 50rpx;    border-radius: 50%;    background-color: #009fe8;    border: 4rpx solid #fff;    position: absolute;    color: #fff;}.graphic-verification-wrap__body__line {    height: 2rpx;    background-color: #c8c9cc;}</style>

php代码

<?php// ==========================================================// | 图形验证// ==========================================================// | Time: 2024/3/22 11:53// ==========================================================// | Website: https://www.swphp.net// ==========================================================// | Author: 神威无敌大将军 <swphp@icloud.com>// ==========================================================// | Copyright (c) 2024 www.swphp.net All rights reserved.// ==========================================================namespace xxxApicontroller;use thinkCache;class Clicaptcha extends Base{    protected $noNeedLogin = ['*'];    protected $noNeedRight = ['*'];    /**     * 预览     *     * Name: preview     * User: 神威无敌大将军     * Date: 2024/3/22 11:59     */    public function preview()    {        $key = $this->request->get('key');        $data = Cache::get("clicaptcha:data|{$key}");        if (empty($data['text_data']) || empty($data['image_path']) || empty($data['font_path'])) {            $imagePathArr = array('1.jpg', '2.jpg', '3.jpg');            $imagePath = ROOT_PATH . 'public' . DS . 'assets' . DS . 'addons' . DS . 'clicaptcha' . DS . 'img' . DS . $imagePathArr[rand(0, count($imagePathArr) - 1)];        } else {            $imagePath = $data['image_path'] ?? '';            $fontPath = $data['font_path'] ?? '';            $textArr = $data['text_data'] ?? [];        }        //图片宽高和类型        list($imageWidth, $imageHeight, $imageType) = getimagesize($imagePath);        //创建图片的实例        $image = imagecreatefromstring(file_get_contents($imagePath));        if (!empty($textArr['text']) && !empty($fontPath)) {            foreach ($textArr['text'] as $v) {                list($r, $g, $b) = $this->getImageColor($imagePath, $v['x'] + $v['width'] / 2, $v['y'] - $v['height'] / 2);                //字体颜色                $color = imagecolorallocate($image, $r, $g, $b);                //阴影字体颜色                $r = $r > 127 ? 0 : 255;                $g = $g > 127 ? 0 : 255;                $b = $b > 127 ? 0 : 255;                $shadowColor = imagecolorallocate($image, $r, $g, $b);                //绘画阴影                imagettftext($image, $v['size'], 0, $v['x'] + 1, $v['y'], $shadowColor, $fontPath, $v['text']);                imagettftext($image, $v['size'], 0, $v['x'], $v['y'] + 1, $shadowColor, $fontPath, $v['text']);                imagettftext($image, $v['size'], 0, $v['x'] - 1, $v['y'], $shadowColor, $fontPath, $v['text']);                imagettftext($image, $v['size'], 0, $v['x'], $v['y'] - 1, $shadowColor, $fontPath, $v['text']);                imagettftext($image, $v['size'], 0, $v['x'] + 1, $v['y'] + 1, $shadowColor, $fontPath, $v['text']);                imagettftext($image, $v['size'], 0, $v['x'] + 1, $v['y'] - 1, $shadowColor, $fontPath, $v['text']);                imagettftext($image, $v['size'], 0, $v['x'] - 1, $v['y'] - 1, $shadowColor, $fontPath, $v['text']);                imagettftext($image, $v['size'], 0, $v['x'] - 1, $v['y'] + 1, $shadowColor, $fontPath, $v['text']);                //绘画文字                imagettftext($image, $v['size'], 0, $v['x'], $v['y'], $color, $fontPath, $v['text']);            }        }        //生成图片        switch ($imageType) {            case 1://GIF                header('Content-Type: image/gif');                imagegif($image);                break;            case 2://JPG                header('Content-Type: image/jpeg');                imagejpeg($image);                break;            case 3://PNG                header('Content-Type: image/png');                imagepng($image);                break;            default:                break;        }        imagedestroy($image);    }    /**     * 创建     *     * Name: create     * User: 神威无敌大将军     * Date: 2024/3/22 11:59     */    public function create()    {        $imagePathArr = array('1.jpg', '2.jpg', '3.jpg');        $imagePath = ROOT_PATH . 'public' . DS . 'assets' . DS . 'addons' . DS . 'clicaptcha' . DS . 'img' . DS . $imagePathArr[rand(0, count($imagePathArr) - 1)];        $fontPath = ROOT_PATH . 'public' . DS . 'assets' . DS . 'fonts' . DS . 'SourceHanSansK-Regular.ttf';        $text = $this->randChars();        foreach ($text as $v) {            $fontSize = rand(20, 30);            //字符串文本框宽度和长度            $fontarea = imagettfbbox($fontSize, 0, $fontPath, $v);            $textWidth = $fontarea[2] - $fontarea[0];            $textHeight = $fontarea[1] - $fontarea[7];            $tmp['text'] = $v;            $tmp['size'] = $fontSize;            $tmp['width'] = $textWidth;            $tmp['height'] = $textHeight;            $textArr['text'][] = $tmp;        }        //图片宽高和类型        list($imageWidth, $imageHeight, $imageType) = getimagesize($imagePath);        $textArr['width'] = $imageWidth;        $textArr['height'] = $imageHeight;        $text = [];        //随机生成汉字位置        foreach ($textArr['text'] as &$v) {            list($x, $y) = $this->randPosition($textArr['text'], $imageWidth, $imageHeight, $v['width'], $v['height']);            $v['x'] = $x;            $v['y'] = $y;            $text[] = $v['text'];        }        unset($v);        $key = md5(implode(',', $text) . time());        Cache::set("clicaptcha:data|{$key}", ['text_data'=>$textArr, 'image_path'=>$imagePath, 'font_path'=>$fontPath], 180);        $data = [            'url'       => addon_url('shopro/clicaptcha/preview', ['key'=>$key], false, true),            'key'       => $key,            'asdas'     => $textArr,            'texts'     => $text,            'width'     => $imageWidth,            'height'    => $imageHeight        ];        $this->success('验证生成成功', $data);    }    /**     * 验证     *     * Name: check     * User: 神威无敌大将军     * Date: 2024/3/22 11:59     */    public function check()    {        $key = $this->request->param('key');        $event = $this->request->param('event');        $info = $this->request->param('info');        $data = Cache::get("clicaptcha:data|{$key}");        // 频率限制        $cacheKey = "clicaptcha:frequency|{$key}";        $count = Cache::get($cacheKey, 0);        if ($count && $count >= 10) {            Cache::rm("clicaptcha:data|{$key}");            $this->error('操作频繁,请稍后再试');        }        $flag = true;        if (!empty($data['text_data'])) {            $textArr = $data['text_data'];            list($xy, $w, $h) = explode(';', $info);            $xyArr = explode('-', $xy);            $xpro = $w / $textArr['width'];//宽度比例            $ypro = $h / $textArr['height'];//高度比例            foreach ($xyArr as $k => $v) {                $xy = explode(',', $v);                $x = $xy[0];                $y = $xy[1];                if ($x / $xpro < $textArr['text'][$k]['x'] || $x / $xpro > $textArr['text'][$k]['x'] + $textArr['text'][$k]['width']) {                    $flag = false;                    break;                }                if ($y / $ypro < $textArr['text'][$k]['y'] - $textArr['text'][$k]['height'] || $y / $ypro > $textArr['text'][$k]['y']) {                    $flag = false;                    break;                }            }            Cache::rm("clicaptcha:data|{$key}");        } else {            $flag = false;        }        // 频率限制        Cache::set($cacheKey, ++$count, 120);        if ($flag) {            // 场景            switch ($event) {                case 'smsLogin':                    // 如:注册发送验证码操作                    $mobile = $this->request->param('mobile');                    // 发送短信                    break;            }            $this->success('验证成功');        }        $this->error('验证失败');    }    //随机生成中文汉字    private function randChars($length = 4)    {        /**         * 字符串截取,支持中文和其他编码         * @static         * @access public         * @param string $str     需要转换的字符串         * @param int    $start   开始位置         * @param int    $length  截取长度         * @param string $charset 编码格式         * @param bool   $suffix  截断显示字符         * @return string         */        function msubstr($str, $start = 0, $length = 1, $charset = 'utf-8', $suffix = true)        {            if (function_exists('mb_substr')) {                $slice = mb_substr($str, $start, $length, $charset);            } else if (function_exists('iconv_substr')) {                $slice = iconv_substr($str, $start, $length, $charset);            } else {                $re['utf-8'] = '/[x01-x7f]|[xc2-xdf][x80-xbf]|[xe0-xef][x80-xbf]{2}|[xf0-xff][x80-xbf]{3}/';                $re['gb2312'] = '/[x01-x7f]|[xb0-xf7][xa0-xfe]/';                $re['gbk'] = '/[x01-x7f]|[x81-xfe][x40-xfe]/';                $re['big5'] = '/[x01-x7f]|[x81-xfe]([x40-x7e]|xa1-xfe])/';                preg_match_all($re[$charset], $str, $match);                $slice = join('', array_slice($match[0], $start, $length));            }            return $suffix ? $slice . '...' : $slice;        }        $return = [];        $chars = '们以我到他会作时要动国产的一是工就年阶义发成部民可出能方进在了不和有大这主中人上为来分生对于学下级地个用同行面说种过命度革而多子后自社加小机也经力线本电高量长党得实家定深法表着水理化争现所二起政三好十战无农使性前等反体合斗路图把结第里正新开论之物从当两些还天资事队批点育重其思与间内去因件日利相由压员气业代全组数果期导平各基或月毛然如应形想制心样干都向变关问比展那它最及外没看治提五解系林者米群头意只明四道马认次文通但条较克又公孔领军流入接席位情运器并飞原油放立题质指建区验活众很教决特此常石强极土少已根共直团统式转别造切九你取西持总料连任志观调七么山程百报更见必真保热委手改管处己将修支识病象几先老光专什六型具示复安带每东增则完风回南广劳轮科北打积车计给节做务被整联步类集号列温装即毫知轴研单色坚据速防史拉世设达尔场织历花受求传口断况采精金界品判参层止边清至万确究书术状厂须离再目海交权且儿青才证低越际八试规斯近注办布门铁需走议县兵固除般引齿千胜细影济白格效置推空配刀叶率述今选养德话查差半敌始片施响收华觉备名红续均药标记难存测士身紧液派准斤角降维板许破述技消底床田势端感往神便贺村构照容非搞亚磨族火段算适讲按值美态黄易彪服早班麦削信排台声该击素张密害侯草何树肥继右属市严径螺检左页抗苏显苦英快称坏移约巴材省黑武培著河帝仅针怎植京助升王眼她抓含苗副杂普谈围食射源例致酸旧却充足短划剂宣环落首尺波承粉践府鱼随考刻靠够满夫失包住促枝局菌杆周护岩师举曲春元超负砂封换太模贫减阳扬江析亩木言球朝医校古呢稻宋听唯输滑站另卫字鼓刚写刘微略范供阿块某功套友限项余倒卷创律雨让骨远帮初皮播优占死毒圈伟季训控激找叫云互跟裂粮粒母练塞钢顶策双留误础吸阻故寸盾晚丝女散焊功株亲院冷彻弹错散商视艺灭版烈零室轻血倍缺厘泵察绝富城冲喷壤简否柱李望盘磁雄似困巩益洲脱投送奴侧润盖挥距触星松送获兴独官混纪依未突架宽冬章湿偏纹吃执阀矿寨责熟稳夺硬价努翻奇甲预职评读背协损棉侵灰虽矛厚罗泥辟告卵箱掌氧恩爱停曾溶营终纲孟钱待尽俄缩沙退陈讨奋械载胞幼哪剥迫旋征槽倒握担仍呀鲜吧卡粗介钻逐弱脚怕盐末阴丰雾冠丙街莱贝辐肠付吉渗瑞惊顿挤秒悬姆烂森糖圣凹陶词迟蚕亿矩康遵牧遭幅园腔订香肉弟屋敏恢忘编印蜂急拿扩伤飞露核缘游振操央伍域甚迅辉异序免纸夜乡久隶缸夹念兰映沟乙吗儒杀汽磷艰晶插埃燃欢铁补咱芽永瓦倾阵碳演威附牙芽永瓦斜灌欧献顺猪洋腐请透司危括脉宜笑若尾束壮暴企菜穗楚汉愈绿拖牛份染既秋遍锻玉夏疗尖殖井费州访吹荣铜沿替滚客召旱悟刺脑措贯藏敢令隙炉壳硫煤迎铸粘探临薄旬善福纵择礼愿伏残雷延烟句纯渐耕跑泽慢栽鲁赤繁境潮横掉锥希池败船假亮谓托伙哲怀割摆贡呈劲财仪沉炼麻罪祖息车穿货销齐鼠抽画饲龙库守筑房歌寒喜哥洗蚀废纳腹乎录镜妇恶脂庄擦险赞钟摇典柄辩竹谷卖乱虚桥奥伯赶垂途额壁网截野遗静谋弄挂课镇妄盛耐援扎虑键归符庆聚绕摩忙舞遇索顾胶羊湖钉仁音迹碎伸灯避泛亡答勇频皇柳哈揭甘诺概宪浓岛袭谁洪谢炮浇斑讯懂灵蛋闭孩释乳巨徒私银伊景坦累匀霉杜乐勒隔弯绩招绍胡呼痛峰零柴簧午跳居尚丁秦稍追梁折耗碱殊岗挖氏刃剧堆赫荷胸衡勤膜篇登驻案刊秧缓凸役剪川雪链渔啦脸户洛孢勃盟买杨宗焦赛旗滤硅炭股坐蒸凝竟陷枪黎救冒暗洞犯筒您宋弧爆谬涂味津臂障褐陆啊健尊豆拔莫抵桑坡缝警挑污冰柬嘴啥饭塑寄赵喊垫丹渡耳刨虎笔稀昆浪萨茶滴浅拥穴覆伦娘吨浸袖珠雌妈紫戏塔锤震岁貌洁剖牢锋疑霸闪埔猛诉刷狠忽灾闹乔唐漏闻沈熔氯荒茎男凡抢像浆旁玻亦忠唱蒙予纷捕锁尤乘乌智淡允叛畜俘摸锈扫毕璃宝芯爷鉴秘净蒋钙肩腾枯抛轨堂拌爸循诱祝励肯酒绳穷塘燥泡袋朗喂铝软渠颗惯贸粪综墙趋彼届墨碍启逆卸航衣孙龄岭休借';        for ($i = 0; $i < $length; $i++) {            $return[] = msubstr($chars, floor(mt_rand(0, mb_strlen($chars, 'utf-8') - 1)), 1, 'utf-8', false);        }        return $return;    }    //随机生成位置布局    private function randPosition($textArr, $imgW, $imgH, $fontW, $fontH)    {        $return = array();        $x = rand(0, $imgW - $fontW);        $y = rand($fontH, $imgH);        //碰撞验证        if (!$this->checkPosition($textArr, $x, $y, $fontW, $fontH)) {            $return = $this->randPosition($textArr, $imgW, $imgH, $fontW, $fontH);        } else {            $return = array($x, $y);        }        return $return;    }    private function checkPosition($textArr, $x, $y, $w, $h)    {        $flag = true;        foreach ($textArr as $v) {            if (isset($v['x']) && isset($v['y'])) {                //分别判断X和Y是否都有交集,如果都有交集,则判断为覆盖                $flagX = true;                if ($v['x'] > $x) {                    if ($x + $w > $v['x']) {                        $flagX = false;                    }                } else if ($x > $v['x']) {                    if ($v['x'] + $v['width'] > $x) {                        $flagX = false;                    }                } else {                    $flagX = false;                }                $flagY = true;                if ($v['y'] > $y) {                    if ($y + $h > $v['y']) {                        $flagY = false;                    }                } else if ($y > $v['y']) {                    if ($v['y'] + $v['height'] > $y) {                        $flagY = false;                    }                } else {                    $flagY = false;                }                if (!$flagX && !$flagY) {                    $flag = false;                }            }        }        return $flag;    }    //获取图片某个定点上的主要色    private function getImageColor($img, $x, $y)    {        list($imageWidth, $imageHeight, $imageType) = getimagesize($img);        switch ($imageType) {            case 1://GIF                $im = imagecreatefromgif($img);                break;            case 2://JPG                $im = imagecreatefromjpeg($img);                break;            case 3://PNG                $im = imagecreatefrompng($img);                break;        }        $rgb = imagecolorat($im, $x, $y);        $r = ($rgb >> 16) & 0xFF;        $g = ($rgb >> 8) & 0xFF;        $b = $rgb & 0xFF;        return array($r, $g, $b);    }}

希望以上内容对你有所帮助!如果还有其他问题,请随时提问。 各类知识收集 拥有多年CMS企业建站经验,对 iCMS, Fastadmin, ClassCMS, LeCMS, PbootCMS, PHPCMS, 易优CMS, YzmCMS, 讯睿CMS, 极致CMS, Wordpress, HkCMS, YznCMS, WellCMS, ThinkCMF, 等各类cms的相互转化,程序开发,网站制作,bug修复,程序杀毒,插件定制都可以提供最佳解决方案。

相关推荐

扫码关注

qrcode

QQ交谈

回顶部