CaptchaService.php 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\admin\service;
  15. use think\facade\Cache;
  16. /**
  17. * 图形验证码服务
  18. * Class CaptchaService
  19. * @package app\data\service
  20. */
  21. class CaptchaService
  22. {
  23. private $code; // 验证码
  24. private $uniqid; // 唯一序号
  25. private $charset = 'ABCDEFGHKMNPRSTUVWXYZ23456789'; // 随机因子
  26. private $codelen = 4; // 验证码长度
  27. private $width = 130; // 宽度
  28. private $height = 50; // 高度
  29. private $img; // 图形资源句柄
  30. private $font; // 指定的字体
  31. private $fontsize = 20; // 指定字体大小
  32. private $fontcolor; // 指定字体颜色
  33. /**
  34. * 构造方法初始化
  35. * CaptchaService constructor.
  36. * @param array $config
  37. */
  38. public function __construct($config = [])
  39. {
  40. // 动态配置属性
  41. foreach ($config as $k => $v) if (isset($this->$k)) $this->$k = $v;
  42. // 生成验证码序号
  43. $this->uniqid = uniqid('captcha') . mt_rand(1000, 9999);
  44. // 生成验证码字符串
  45. $length = strlen($this->charset) - 1;
  46. for ($i = 0; $i < $this->codelen; $i++) {
  47. $this->code .= $this->charset[mt_rand(0, $length)];
  48. }
  49. // 缓存验证码字符串
  50. Cache::tag('captcha')->set($this->uniqid, $this->code, 360);
  51. // 设置字体文件路径
  52. $this->font = __DIR__ . '/font/icon.ttf';
  53. }
  54. /**
  55. * 创建验证码图片
  56. * @return string
  57. */
  58. private function createImage()
  59. {
  60. // 生成背景
  61. $this->img = imagecreatetruecolor($this->width, $this->height);
  62. $color = imagecolorallocate($this->img, mt_rand(220, 255), mt_rand(220, 255), mt_rand(220, 255));
  63. imagefilledrectangle($this->img, 0, $this->height, $this->width, 0, $color);
  64. // 生成线条
  65. for ($i = 0; $i < 6; $i++) {
  66. $color = imagecolorallocate($this->img, mt_rand(0, 50), mt_rand(0, 50), mt_rand(0, 50));
  67. imageline($this->img, mt_rand(0, $this->width), mt_rand(0, $this->height), mt_rand(0, $this->width), mt_rand(0, $this->height), $color);
  68. }
  69. // 生成雪花
  70. for ($i = 0; $i < 100; $i++) {
  71. $color = imagecolorallocate($this->img, mt_rand(200, 255), mt_rand(200, 255), mt_rand(200, 255));
  72. imagestring($this->img, mt_rand(1, 5), mt_rand(0, $this->width), mt_rand(0, $this->height), '*', $color);
  73. }
  74. // 生成文字
  75. $_x = $this->width / $this->codelen;
  76. for ($i = 0; $i < $this->codelen; $i++) {
  77. $this->fontcolor = imagecolorallocate($this->img, mt_rand(0, 156), mt_rand(0, 156), mt_rand(0, 156));
  78. imagettftext($this->img, $this->fontsize, mt_rand(-30, 30), $_x * $i + mt_rand(1, 5), $this->height / 1.4, $this->fontcolor, $this->font, $this->code[$i]);
  79. }
  80. ob_start();
  81. imagepng($this->img);
  82. $data = ob_get_contents();
  83. ob_end_clean();
  84. imagedestroy($this->img);
  85. return base64_encode($data);
  86. }
  87. /**
  88. * 获取验证码
  89. * @return array
  90. */
  91. public function getAttr()
  92. {
  93. return [
  94. 'code' => $this->code,
  95. 'uniq' => $this->uniqid,
  96. 'data' => $this->getData()
  97. ];
  98. }
  99. /**
  100. * 获取验证码值
  101. * @return string
  102. */
  103. public function getCode()
  104. {
  105. return $this->code;
  106. }
  107. /**
  108. * 获取图片内容
  109. * @return string
  110. */
  111. public function getData()
  112. {
  113. return "data:image/png;base64,{$this->createImage()}";
  114. }
  115. /**
  116. * 获取验证码编号
  117. * @return string
  118. */
  119. public function getUniqid()
  120. {
  121. return $this->uniqid;
  122. }
  123. /**
  124. * 检查验证码是否正确
  125. * @param string $code 需要验证的值
  126. * @param string $uniqid 验证码编号
  127. * @return boolean
  128. */
  129. public static function check($code, $uniqid = null)
  130. {
  131. $_uni = is_string($uniqid) ? $uniqid : input('uniqid', '-');
  132. $_val = Cache::tag('captcha')->get($_uni);
  133. Cache::tag('captcha')->rm($_uni);
  134. return is_string($_val) && strtolower($_val) === strtolower($code);
  135. }
  136. }