Jony/core/factory.php

60 lines
2.6 KiB
PHP
Raw Normal View History

2021-01-28 11:30:39 +00:00
<?php
2021-02-16 12:26:00 +00:00
/* 加强评论拦截功能 */
Typecho_Plugin::factory('Widget_Feedback')->comment = array('Intercept', 'message');
class Intercept
{
public static function message($comment)
{
2021-03-16 02:55:03 +00:00
/* 如果用户输入内容画图模式 */
if (preg_match('/\{!\{(.*)\}!\}/', $comment['text'], $matches)) {
/* 如果判断是否有双引号,如果有双引号,则禁止评论 */
if (strpos($matches[1], '"') !== false || _checkXSS($matches[1])) {
$comment['status'] = 'waiting';
2021-02-16 12:26:00 +00:00
}
2021-03-16 02:55:03 +00:00
} else {
/* 判断评论内容是否包含敏感词 */
if (Helper::options()->JSensitiveWords) {
if (_checkSensitiveWords(Helper::options()->JSensitiveWords, $comment['text'])) {
$comment['status'] = 'waiting';
}
}
/* 判断评论是否至少包含一个中文 */
if (Helper::options()->JLimitOneChinese === "on") {
if (preg_match("/[\x{4e00}-\x{9fa5}]/u", $comment['text']) == 0) {
$comment['status'] = 'waiting';
}
2021-02-16 12:26:00 +00:00
}
}
2021-03-16 02:55:03 +00:00
Typecho_Cookie::delete('__typecho_remember_text');
2021-02-16 12:26:00 +00:00
return $comment;
}
}
2021-03-14 11:20:25 +00:00
/* 加强后台编辑器功能 */
2021-03-16 13:44:38 +00:00
if (Helper::options()->JEditor !== 'off') {
Typecho_Plugin::factory('admin/write-post.php')->richEditor = array('Editor', 'Edit');
Typecho_Plugin::factory('admin/write-page.php')->richEditor = array('Editor', 'Edit');
}
2021-03-14 11:20:25 +00:00
class Editor
{
public static function Edit()
2021-03-25 09:05:46 +00:00
{
?>
2021-03-28 07:40:48 +00:00
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/prismjs@1.23.0/themes/prism-tomorrow.min.css">
2021-03-30 07:03:37 +00:00
<link rel="stylesheet" href="<?php Helper::options()->themeUrl('typecho/write/css/joe.write.min.css?v=6.2.0') ?>">
2021-03-28 05:34:27 +00:00
<script>
window.JoeConfig = {
uploadAPI: '<?php Helper::security()->index('/action/upload'); ?>',
emojiAPI: '<?php Helper::options()->themeUrl('typecho/write/json/emoji.json') ?>',
characterAPI: '<?php Helper::options()->themeUrl('typecho/write/json/character.json') ?>',
}
</script>
2021-03-28 07:40:48 +00:00
<script src="https://cdn.jsdelivr.net/npm/typecho-joe-next@6.0.0/plugin/prism/prism.js"></script>
2021-03-30 07:03:37 +00:00
<script src="<?php Helper::options()->themeUrl('typecho/write/js/joe.short.min.js?v=6.2.0') ?>"></script>
<script src="<?php Helper::options()->themeUrl('typecho/write/js/joe.parse.min.js?v=6.2.0') ?>"></script>
<script src="<?php Helper::options()->themeUrl('typecho/write/js/joe.write.chunk.js?v=6.2.0') ?>"></script>
2021-03-14 11:20:25 +00:00
<?php
}
}