1. 程式人生 > 其它 >火車採集器 wordpress 5.8 UTF8 文章釋出介面

火車採集器 wordpress 5.8 UTF8 文章釋出介面

<?php

/********密碼驗證***********/
$password='111111'; //這個密碼是登陸驗證用的.您需要在模組裡設定和這裡一樣的密碼....注意一定需要修改.
if(!isset($_GET['pw'])) exit('驗證密碼錯誤');//安全檢測,密碼不符則退出
if($password!=$_GET['pw']) exit('驗證密碼錯誤'); //安全檢測,密碼不符則退出

$post_author_default = 1;
$post_status = 'publish';
$time_interval = 1;
$post_next = 'now';
$post_ping = false;
$translate_slug = false;
$secretWord = '111111';
$checkTitle = false;
$postformat = false;

/****以下程式碼非專業人員不建議修改***************/
$ispost=false;
if($_POST) $ispost=true;
$post = $_POST;

include_once "./wp-config.php";

if($post_ping) require_once("./wp-includes/comment.php");

extract($_POST);

$post_title = trim(stripslashes($post_title));
$post_content = trim(stripslashes($post_content));
$post_category = trim(stripslashes($post_category));
$post_type = trim(stripslashes($post_type));
$post_author = trim(stripslashes($post_author));
$tag = trim(stripslashes($tag));

if(!$ispost)
{
hm_print_catogary_list();
} else {
//判斷標題是否為空
if ($post_title=='[標題]'||$post_title=='') {die('標題為空');}
//檢查標題是否重複
if($checkTitle){
$post_title = trim(hm_strip_slashes($post_title));
$sql = "SELECT `ID` FROM $wpdb->posts WHERE `post_title` = '$post_title'";
$t_row = $wpdb->query($sql);
echo $t_row;
if($t_row) {die('標題重複,釋出成功');};
}
//判斷標題是否為空
if ($post_content=='[內容]'||$post_content=='') {die('內容為空');}
//檢查自定義文章型別
if (empty($post_type) || strpos($post_type, '[') || strpos($post_type, ']')) {$post_type='post';}
//檢查自定義分類目錄
if (empty($post_taxonomy) || strpos($post_taxonomy, '[') || strpos($post_taxonomy, ']')) {$post_taxonomy='category';}
//檢查分類描述是否未設定
if (empty($category_description) || strpos($category_description, '[') || strpos($category_description, ']')) {$category_description='';}
//檢查自定義欄位
if(array_key_exists('post_meta', $post)){$post_meta = $post['post_meta'];}
//檢查自定義分類資訊
if(array_key_exists('post_cate_meta', $post)){$post_cate_meta = $post['post_cate_meta'];}
//檢查釋出時間
if (!isset($post_date) ||strlen($post_date)<8) $post_date=false;
//檢查作者
if (empty($post_author)) {
$post_author=$post_author_default;
} else {
$post_author=hm_add_author($post_author);
}

$post_content = fileHandle('fujian',$post_content);
fileHandle('thumb');

hm_do_save_post(array('post_title'=>$post_title,
'post_content'=>$post_content,
'post_category'=>$post_category,
'post_excerpt'=>$post_excerpt,
'post_type'=>$post_type,
'post_taxonomy'=>$post_taxonomy,
'tags_input'=>$tag,
'post_date'=>$post_date,
'post_author'=>$post_author,
'fujianid'=>$fujianid));
echo '釋出成功';
exit();
}

//附件處理
//$filename 附件名稱
//$content 標籤內容,為空返回首張圖片ID
function fileHandle($filesnames, $content = null)
{
global $thumbid;
if (!empty($_FILES[$filesnames.'0']['name'])) {
require_once('./wp-load.php');
require_once('./wp-admin/includes/file.php');
require_once('./wp-admin/includes/image.php');
$i = 0;
while (isset($_FILES[$filesnames.$i])) {
$fujian[$i] = $_FILES[$filesnames.$i];
$filename = $fujian[$i]['name'];
$fileExt=array_pop(explode(".", $filename));
//附件儲存格式【時間】
$upFileTime=date("YmdHis");
//更改上傳檔案的檔名為時間+隨機數+字尾
$fujian[$i]['name'] = $upFileTime."-".uniqid().".".$fileExt;
$uploaded_file = wp_handle_upload($fujian[$i], array('test_form' => false));
$content = str_replace("\'".$filename."\'", "\"".$uploaded_file[url]."\"", $content);
$content = str_replace($filename, $uploaded_file[url], $content);
if (isset($uploaded_file['error'])) {
echo "檔案上傳失敗";
wp_die($uploaded_file['error']);
}
$file = $uploaded_file['file'];
$new_file = iconv('GBK', 'UTF-8', $file);
$url = iconv('GBK', 'UTF-8', $uploaded_file['url']);
$type = $uploaded_file['type'];
$attachment = array(
'guid' => $url,
'post_mime_type' => $type,
'post_title' => $filename,
'post_content' => '',
'post_status' => 'inherit'
);
$attach_id = wp_insert_attachment($attachment, $new_file);
if (strpos($fujian[$i]['type'], 'image') !== false) {
if(empty($thumbid) || $filesnames == 'thumb') $thumbid = $attach_id;
$attach_data = wp_generate_attachment_metadata($attach_id, $file);
$attach_data['file'] = iconv('GBK', 'UTF-8', $attach_data['file']);
foreach ($attach_data['sizes'] as $key => $sizes) {
$sizes['file'] = iconv('GBK', 'UTF-8', $sizes['file']);
$attach_data['sizes'][$key]['file'] = $sizes['file'];
}
wp_update_attachment_metadata($attach_id, $attach_data);
}
$i++;
}
}
return $content;
}

function hm_tranlate($text)
{
global $translate_slug;
$pattern = '/[^\x00-\x80]/';
if (preg_match($pattern,$text)) {
$htmlret = substr(md5($text),0,$translate_slug);
} else {
$htmlret = $text;
}
return $htmlret;
}

function hm_print_catogary_list()
{
echo "<select name='list'>";

$cats = get_categories("hierarchical=0&hide_empty=0");
foreach ((array) $cats as $cat) {
echo "<option value='". $cat->cat_ID ."'>{{$cat->cat_name}</option>";
}
echo '</select>';
exit();
}

function hm_get_post_time($post_next="normal")
{
global $time_interval;
global $wpdb;

$time_difference = absint(get_option('gmt_offset')) * 3600;
$tm_now = time()+$time_difference;

if ($post_next=='now') {
$tm=time()+$time_difference;
} else { //if ($post_next=='next')
$tm = time()+$time_difference;
$posts = $wpdb->get_results( "SELECT post_date FROM $wpdb->posts ORDER BY post_date DESC limit 0,1" );
foreach ( $posts as $post ) {
$tm=strtotime($post->post_date);
}
}
return $tm+$time_interval;
}

function hm_publish_pending_post()
{
global $wpdb;
$tm_now = time()+absint(get_option('gmt_offset')) * 3600;
$now_date=date("Y-m-d H:i:s",$tm_now);
$wpdb->get_results( "UPDATE $wpdb->posts set `post_status`='publish' WHERE `post_status`='pending' and `post_date`<'$now_date'" );
}

function hm_add_category($post_category, $post_taxonomy = 'category')
{
if (!function_exists('wp_insert_category')) {include_once "./wp-admin/includes/taxonomy.php";}
global $wpdb,$post_cate_meta,$post_parent_cate,$category_description;
$post_category_new=array();
$post_category_list= array_unique(explode(",", $post_category));
foreach ($post_category_list as $category) {
$cat_ID =$category;
if (!isInteger($cat_ID) || $cat_ID < 1) {
$category = $wpdb->escape($category);
$term = get_term_by('name',$category,$post_taxonomy,'ARRAY_A');
$cat_ID = $term['term_id'];
if($cat_ID == 0){
//檢查父分類是否存在和建立父分類->start
if(!empty($post_parent_cate) && $post_parent_cate != '[父分類]')
{
$parent = intval($post_parent_cate);
if($parent == 0){
$post_parent_cate = $wpdb->escape($post_parent_cate);
$term = get_term_by('name',$post_parent_cate,$post_taxonomy,'ARRAY_A');
$cat_ID = $term['term_id'];
if($parent == 0){
$parent = wp_insert_category(array('cat_name'=>$post_parent_cate, 'taxonomy'=>$post_taxonomy));
}
}
$cat_ID = wp_insert_category(array('cat_name'=>$category, 'category_description'=>$category_description, 'category_parent'=>$parent, 'taxonomy'=>$post_taxonomy));

}else{
$cat_ID = wp_insert_category(array('cat_name'=>$category, 'category_description'=>$category_description, 'taxonomy'=>$post_taxonomy));
}
//檢查父分類是否存在和建立父分類->end
//定義分類資訊->start
if (!empty($post_cate_meta)) {
foreach(array_unique(array_filter($post_cate_meta)) as $key => $value) {
$value = strtoarray($value);
add_term_meta($cat_ID, $key, $value);
}
}
//定義分類資訊->end
}
}
array_push($post_category_new, $cat_ID);
}
return $post_category_new;
}

function add_category($post_category, $post_taxonomy = 'category')
{
if (!function_exists('wp_insert_category')) {include_once "./wp-admin/includes/taxonomy.php";}
global $wpdb;
$post_category_new=array();
$post_category_list= array_unique(explode(",", $post_category));
foreach ($post_category_list as $category) {
$cat_ID =$category;
if (!isInteger($cat_ID) || $cat_ID < 1) {
$category = $wpdb->escape($category);
$term = get_term_by('name',$category,$post_taxonomy,'ARRAY_A');
$cat_ID = $term['term_id'];
if($cat_ID == 0){
$cat_ID = wp_insert_category(array('cat_name'=>$category, 'taxonomy'=>$post_taxonomy));
}
}
array_push($post_category_new, $cat_ID);
}
return $post_category_new;
}

function isInteger($value){
return is_numeric($value) && is_int($value+0);
}

function hm_add_author($post_author)
{
global $wpdb,$post_author_default;
$User_ID =intval($post_author);
if ($User_ID == 0) {
$pattern = '/[^\x00-\x80]/';
if (preg_match($pattern,$post_author)) {
$LoginName = substr(md5($post_author),0,10);
} else {
$LoginName = $post_author;
}
$User_ID = $wpdb->get_col("SELECT ID FROM $wpdb->users WHERE user_login = '$LoginName' ORDER BY ID");
$User_ID = $User_ID[0];
if (empty($User_ID)) {
$website = 'http://'.$_SERVER['HTTP_HOST'];
$userdata = array(
'user_login' => "$LoginName",
'first_name' => $post_author,
'user_nicename' => $post_author,
'display_name' => $post_author,
'nickname' => $post_author,
'user_url' => $website,
'role' => 'contributor',
'user_pass' => NULL);
$User_ID = wp_insert_user( $userdata );
}
$post_author = $User_ID;
} else {
$post_author = $post_author_default;
}
return $post_author;
}

function hm_strip_slashes($str)
{
if (get_magic_quotes_gpc()) {
return stripslashes($str);
} else {
return $str;
}
}
function checkDatetime($str){
$date = strtotime($str);
if($date > 31500000){
return true;
}else{
return false;
}
}

function formatdate($date){
$d = date('Y-m-d');
if(strpos($date, 'today') !== false){
return str_replace('today at', $d, $date);
}

if(strpos($date, 'Today') !== false){
return str_replace('Today at', $d, $date);
}

$dd = date('Y-m-d', time()-84600);
if(strpos($date, 'yesterday') !== false){
return str_replace('yesterday at', $d, $date);
}

if(strpos($date, 'Yesterday') !== false){
return str_replace('yesterday at', $d, $date);
}
}

//字串轉換為陣列
//字串的格式必須為 //$str = 'eo_description$$seo_description|||seo_keywords$$seo_keywords|||seo_title$$seo_title';

function strtoarray($str){
if(strpos($str, '|||') !== false){
$str = explode('|||', $str);
if(strpos($str[0],'$$') !== false){
foreach($str as $k => $v){
$v = explode('$$', $v);
$r[$v[0]] = $v[1];
}
$str = $r;
}
}
return $str;
}

function hm_do_save_post($post_detail)
{
global $post,$post_author,$post_ping,$post_status,$translate_slug,$post_next,$post_meta,$comment,$commentdate,$commentauthor,$wpdb,$postformat,$post_format,$post_taxonomy_list,$thumbid;
extract($post_detail);
$post_title=trim(hm_strip_slashes($post_title));
$post_name=$post_title;
if ($translate_slug) $post_name=hm_tranlate($post_name);
$post_name=sanitize_title( $post_name);
if ( strlen($post_name) < 2 ) $post_name="";
$post_content=hm_strip_slashes($post_content);
$tags_input=str_replace("|||",",",$tags_input);

$tags_input = trim(stripslashes($tags_input));


if (isset($post_date) && $post_date && checkDatetime($post_date)) {
$tm=strtotime($post_date);
$time_difference = absint(get_option('gmt_offset')) * 3600;
$post_date=date("Y-m-d H:i:s",$tm);
$post_date_gmt = gmdate('Y-m-d H:i:s', $tm-$time_difference);
} else {
$tm=hm_get_post_time($post_next);
$time_difference = absint(get_option('gmt_offset')) * 3600;
$post_date=date("Y-m-d H:i:s",$tm);
$post_date_gmt = gmdate('Y-m-d H:i:s', $tm-$time_difference);
if ($post_status=='next') $post_status='publish';
}
$post_category=hm_add_category($post_category, $post_taxonomy);
$post_data = compact('post_author', 'post_date', 'post_date_gmt', 'post_content', 'post_type', 'post_title', 'post_category', 'post_status', 'post_excerpt', 'post_name','tags_input');
$post_data = add_magic_quotes($post_data);
$postID = wp_insert_post($post_data);
//設定縮圖
set_post_thumbnail( $postID, $thumbid );

//自定義分類方式(taxonomy)
if($post_taxonomy != 'category' && !empty($post_taxonomy)){
wp_set_object_terms($postID, $post_category, $post_taxonomy);
}

//多個自定義分類方式(taxonomy)
if(!empty($post_taxonomy_list)){
foreach($post_taxonomy_list as $k => $v){
$v = strtoarray($v);
if(is_array($v)){
foreach($v as $kk => $vv){
$vv = add_category($vv, $k);
wp_set_object_terms($postID, $vv, $k);
}
}else{
$v = add_category($v,$k);
wp_set_object_terms($postID, $v, $k);
}
}
}

//歸檔文章形式->start
if(!empty($post_format) && $postformat == true){
if($post_format == 'post-format-image' || $post_format == 'post-format-video' || $post_format == 'post-format-aside'){
wp_set_post_terms($postID, $post_format, 'post_format');
}
}
//歸檔文章形式->end

//釋出自定義欄目
if (!empty($post_meta)) {
foreach($post_meta as $key => $value) {
$ret = add_post_meta($postID,$key,$value,true);
if(!$ret){
delete_post_meta($postID, $key);
add_post_meta($postID,$key,$value,true);
}
}
}

//釋出評論->start
if(!empty($comment)){
//格式化評論內容
$comment = str_replace(array("\r\n", "\r", "\n"), "", $comment);
$arraycomment = explode('|||', $comment);
//格式化評論時間
$commentdate = str_replace(array("\r\n", "\r", "\n"), "", $commentdate);
$arraycommentdate = explode('|||', $commentdate);
//格式化評論作者
$commentauthor = str_replace(' ','',$commentauthor);
$commentauthor = str_replace(array("\r\n", "\r", "\n"), "", $commentauthor);
$arraycommentauthor = explode('|||', $commentauthor);
//評論計數
$comment_count = count($arraycomment) -1 ;
//更新文章評論數
$wpdb->get_results("UPDATE $wpdb->posts set `comment_count` = $comment_count WHERE `ID` = $postID");
//寫入評論
foreach($arraycommentauthor as $k => $v){
//判斷評論時間
if($v != ''){
$format="Y-m-d H:i:s";
$d = formatdate($arraycommentdate[$k]);
$d = strtotime($d);
if($d != ''){
$date = date($format,$d);
$gmtdate = gmdate($format, $d);
}else{
$date = date($format);
$gmtdate = gmdate($format);
}
//寫入資料庫
$res = $wpdb->get_results("INSERT INTO $wpdb->comments (`comment_post_ID`,`comment_author`,`comment_date`,`comment_date_gmt`,`comment_content`,`user_id`) VALUES ($postID,'$v','$date','$gmtdate','$arraycomment[$k]',1)");
}
}
}
//釋出評論->end

// 自定PING,需要再網站後臺設定->撰寫->更新伺服器 下面填寫PING地址
if ($post_ping) generic_ping();
}
?>