diff --git a/src/admin/ai_dialog.php b/src/admin/ai_dialog.php new file mode 100644 index 00000000..2ebbc971 --- /dev/null +++ b/src/admin/ai_dialog.php @@ -0,0 +1,231 @@ + + + + + + + + AI提示词对话框 + + + + + + + + + +
+
小德AI助手:内容处理
+
+
+ +
+
+ +
+
+ + +
+
+ +
+
+
+ + + + \ No newline at end of file diff --git a/src/admin/api.php b/src/admin/api.php index 7843cd86..66d89b33 100644 --- a/src/admin/api.php +++ b/src/admin/api.php @@ -16,7 +16,7 @@ require_once(DEDEINC.'/userlogin.class.php'); @set_time_limit(0); AjaxHead(); helper('cache'); -$action = isset($action) && in_array($action, array('is_need_check_code', 'has_new_version', 'get_changed_files', 'update_backup', 'get_update_versions', 'update', 'upload_image','get_ai_server')) ? $action : ''; +$action = isset($action) && in_array($action, array('is_need_check_code', 'has_new_version', 'get_changed_files', 'update_backup', 'get_update_versions', 'update', 'upload_image', 'get_ai_server', 'get_setbody_url')) ? $action : ''; $curDir = dirname(GetCurUrl());//当前目录 /** * 登录鉴权 @@ -74,7 +74,7 @@ if ($action === 'is_need_check_code') { $unQueryVer[] = "6.2.0"; } $row = $dsql->GetOne("SELECT COUNT(*) as dd FROM `#@__sysconfig` WHERE varname = 'cfg_bizcore_api'"); - if ($row['dd'] == 0) { + if (isset($row['dd']) && $row['dd'] == 0) { $unQueryVer[] = "6.2.3"; } if (!$dsql->IsTable("#@__sys_payment")) { @@ -83,6 +83,13 @@ if ($action === 'is_need_check_code') { if (!TableHasField("#@__arctype", "apienabled")) { $unQueryVer[] = "6.2.7"; } + if (!$dsql->IsTable("#@__ai")) { + $unQueryVer[] = "6.5.0"; + } + $row = $dsql->GetOne("SELECT COUNT(*) as dd FROM `#@__ai_prompt` WHERE pname = 'body_edit'"); + if (isset($row['dd']) && $row['dd'] == 0) { + $unQueryVer[] = "6.5.1"; + } if (count($unQueryVer) > 0) { $upsqls = GetUpdateSQL(); foreach ($unQueryVer as $vv) { @@ -459,5 +466,22 @@ if ($action === 'is_need_check_code') { "code" => 0, "data" => $url, )); +} else if($action === 'get_setbody_url') { + $params = $_GET; + unset($params['action']); + checkLogin(); + $params['timestamp'] = time(); // 加入时间戳 + $cuserLogin = new userLogin(); + $params['adminid'] = $cuserLogin->getUserID(); // 加入时间戳 + $params['ip'] = $_SERVER['REMOTE_ADDR'] ?? '127.0.0.1'; // 获取客户端IP + + ksort($params); // 按字典序排序 + $queryString = http_build_query($params); // 生成查询字符串 + $params['sign'] = md5($queryString . $cfg_ai_apikey); // 计算MD5签名 + $url = $cfg_ai_server . '/api/setbody?' . http_build_query($params); + echo json_encode(array( + "code" => 0, + "data" => $url, + )); } ?> \ No newline at end of file diff --git a/src/admin/archives_do.php b/src/admin/archives_do.php index 8fdb41f7..a2a416a1 100644 --- a/src/admin/archives_do.php +++ b/src/admin/archives_do.php @@ -658,7 +658,7 @@ else if ($dopost == "makekw") { if (strlen($keywords.$k) >= 60) { break; } else { - if (strlen($k) <= 2) continue; + if (strlen($k) <= 2 || $length == 3) continue; $keywords .= $k.','; } } @@ -666,7 +666,7 @@ else if ($dopost == "makekw") { if (strlen($keywords.$k) >= 60) { break; } else if (!in_array($k, $titleindexs)) { - if (strlen($k) <= 2) continue; + if (strlen($k) <= 2 || $length == 3) continue; $keywords .= $k.','; } } diff --git a/src/admin/inc/inc_archives_functions.php b/src/admin/inc/inc_archives_functions.php index d2c14263..5336edfa 100644 --- a/src/admin/inc/inc_archives_functions.php +++ b/src/admin/inc/inc_archives_functions.php @@ -560,7 +560,7 @@ function AnalyseHtmlBody($body, &$description, &$litpic, &$keywords, $dtype = '' if (strlen($keywords.$k) >= 60) { break; } else { - if (strlen($k) <= 2) continue; + if (strlen($k) <= 2 || $length == 3) continue; $keywords .= $k.','; } } @@ -568,7 +568,7 @@ function AnalyseHtmlBody($body, &$description, &$litpic, &$keywords, $dtype = '' if (strlen($keywords.$k) >= 60) { break; } else if (!in_array($k, $titleindexs)) { - if (strlen($k) <= 2) continue; + if (strlen($k) <= 2 || $length == 3) continue; $keywords .= $k.','; } } diff --git a/src/static/ckeditor/plugins/dedebizai/icons/dedebizai.png b/src/static/ckeditor/plugins/dedebizai/icons/dedebizai.png new file mode 100644 index 00000000..a6f845c6 Binary files /dev/null and b/src/static/ckeditor/plugins/dedebizai/icons/dedebizai.png differ diff --git a/src/static/ckeditor/plugins/dedebizai/plugin.js b/src/static/ckeditor/plugins/dedebizai/plugin.js new file mode 100644 index 00000000..45387826 --- /dev/null +++ b/src/static/ckeditor/plugins/dedebizai/plugin.js @@ -0,0 +1,28 @@ +CKEDITOR.plugins.add("dedebizai", { + icons: "dedebizai", + init: function (a) { + a.addCommand("openDedeBIZAi", + { + exec: function (a) { + var w = 800; + var h = 600; + var dualScreenLeft = window.screenLeft !== undefined ? window.screenLeft : window.screenX; + var dualScreenTop = window.screenTop !== undefined ? window.screenTop : window.screenY; + + var width = window.innerWidth ? window.innerWidth : document.documentElement.clientWidth ? document.documentElement.clientWidth : screen.width; + var height = window.innerHeight ? window.innerHeight : document.documentElement.clientHeight ? document.documentElement.clientHeight : screen.height; + + var systemZoom = width / window.screen.availWidth; + var posLeft = (width - w) / 2 / systemZoom + dualScreenLeft; + var posTop = (height - h) / 2 / systemZoom + dualScreenTop; + window.open("./ai_dialog.php?f=" + a.name + "&noeditor=yes", "popUpImagesWin", "scrollbars=yes,resizable=yes,statebar=no,width=800,height=460,left=" + posLeft + ", top=" + posTop); + } + }); + a.ui.addButton("DedeBIZAi", + { + label: "AI助手", + command: "openDedeBIZAi", + toolbar: "insert" + }) + } +}); \ No newline at end of file diff --git a/src/system/inc/inc_fun_funAdmin.php b/src/system/inc/inc_fun_funAdmin.php index 61d07f38..2a65efcf 100755 --- a/src/system/inc/inc_fun_funAdmin.php +++ b/src/system/inc/inc_fun_funAdmin.php @@ -146,7 +146,7 @@ function SpGetEditor($fname, $fvalue, $nheight = "350", $etype = "Basic", $gtype if ($GLOBALS['cfg_db_language'] == "utf8mb4") { $emoji = ",emoji"; } - $addConfig = ",{allowedContent:true,pasteFilter:null,filebrowserImageUploadUrl:'./dialog/select_images_post.php',filebrowserUploadUrl:'./dialog/select_media_post.php?ck=1',extraPlugins:'html5video,html5audio,dedepagebreak,ddfilebrowser,mimage,textindent,tabletools,tableresize,tableselection,codesnippet{$emoji}',codeSnippet_theme: 'default'}"; + $addConfig = ",{allowedContent:true,pasteFilter:null,filebrowserImageUploadUrl:'./dialog/select_images_post.php',filebrowserUploadUrl:'./dialog/select_media_post.php?ck=1',extraPlugins:'html5video,html5audio,dedepagebreak,ddfilebrowser,mimage,dedebizai,textindent,tabletools,tableresize,tableselection,codesnippet{$emoji}',codeSnippet_theme: 'default'}"; } if (defined('DEDEUSER')) { $addConfig = ",{filebrowserImageUploadUrl:'api.php?action=upload&type=litpic&ck=1',filebrowserUploadUrl:'api.php?action=upload&type=media&ck=1',extraPlugins:'html5video,html5audio,textindent',filebrowserImageBrowseDisabled:true}";