网上找到的Typecho验证码在删除Num元素后,就不需要输入验证码也能评论了,所以我给他加强了一下。
修改内容
- 增加 判断
num1、num2
元素是否为空 若为空则提示验证码异常 - 增加 提示信息
<p>
标签 使提示信息字体增大 - 增加 验证码编辑框自适应宽度 根据屏幕大小自动变化宽度
- 修改 部分提示文案 警告信息简洁明了
- 修改 降低计算难度至30以内加法 心算更快
在你的主题function.php文件内添加如下函数
function themeInit($comment) {
$comment = spam_protection_pre($comment, $post, $result);
}
function spam_protection_math() {
$num1 = rand(1, 15);
$num2 = rand(1, 15);
echo "<div style=\"display:flex;align-items: center;\"><p for=\"math\" id=\"Verification_code\" style=\"margin-bottom:0\">请输入<code>$num1</code>+<code>$num2</code>的计算结果:</p><input type=\"text\" name=\"sum\" class=\"text\" value=\"\" size=\"25\" id=\"sum\" tabindex=\"4\" style=\"flex:1\" placeholder=\"\">\n</div>";
echo "<input type=\"hidden\" name=\"num1\" value=\"$num1\">\n";
echo "<input type=\"hidden\" name=\"num2\" value=\"$num2\">";
}
function spam_protection_pre($comment, $post, $result) {
if ($_REQUEST['text'] != null) {
If($_POST['num1'] == null || $_POST['num2'] == null) {
throw new Typecho_Widget_Exception(_t('验证码异常.', '评论失败'));
} else {
$sum = $_POST['sum'];
switch ($sum) {
case $_POST['num1'] + $_POST['num2'] : break;
case null:
throw new Typecho_Widget_Exception(_t('请输入验证码.', '评论失败'));
break;
default:
throw new Typecho_Widget_Exception(_t('验证码错误.', '评论失败'));
}
}
}
return $comment;
}
在你的主题comments.php文件内的合适位置添加如下函数
<?php spam_protection_math();?>
错误解决
若你在你的主题function.php文件内themeInit函数已被使用,请将如下函数加入至themeInit函数代码块的最末端
$comment = spam_protection_pre($comment, $post, $result);
}
function spam_protection_math() {
$num1 = rand(1, 15);
$num2 = rand(1, 15);
echo "<div style=\"display:flex;align-items: center;\"><p for=\"math\" id=\"Verification_code\" style=\"margin-bottom:0\">请输入<code>$num1</code>+<code>$num2</code>的计算结果:</p><input type=\"text\" name=\"sum\" class=\"text\" value=\"\" size=\"25\" id=\"sum\" tabindex=\"4\" style=\"flex:1\" placeholder=\"\">\n</div>";
echo "<input type=\"hidden\" name=\"num1\" value=\"$num1\">\n";
echo "<input type=\"hidden\" name=\"num2\" value=\"$num2\">";
}
function spam_protection_pre($comment, $post, $result) {
if ($_REQUEST['text'] != null) {
If($_POST['num1'] == null || $_POST['num2'] == null) {
throw new Typecho_Widget_Exception(_t('验证码异常.', '评论失败'));
} else {
$sum = $_POST['sum'];
switch ($sum) {
case $_POST['num1'] + $_POST['num2'] : break;
case null:
throw new Typecho_Widget_Exception(_t('请输入验证码.', '评论失败'));
break;
default:
throw new Typecho_Widget_Exception(_t('验证码错误.', '评论失败'));
}
}
}
return $comment;