post.php 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. <?php
  2. define('EmpireCMSAdmin', '1');
  3. require('../../class/connect.php'); //引入数据库配置文件和公共函数文件
  4. require('../../class/db_sql.php'); //引入数据库操作文件
  5. require('../../class/functions.php');
  6. $link = db_connect(); //连接MYSQL
  7. $empire = new mysqlquery(); //声明数据库操作类
  8. $editor = 9; //声明目录层次
  9. require_once 'skycaiji2cms/skycaiji2cms.php';
  10. $scj2cms = new skycaiji2cms(
  11. dirname(__FILE__),
  12. $public_r['newsurl'] . 'e/extend/skycaijidg',
  13. $ecms_config['db']['dbchar'],
  14. false
  15. );
  16. if (stripos($ecms_config['sets']['pagechar'], 'gb') === 0) {
  17. //gbk编码
  18. $scj2cms->pluginLang = include 'data/lang_gbk.php';
  19. } else {
  20. $scj2cms->pluginLang = include 'data/lang_utf8.php';
  21. }
  22. $scjConfig = ECMS_PATH . 'd/file/skycaijidg_config.php';
  23. $pluginConfig = null;
  24. if (file_exists($scjConfig)) {
  25. $pluginConfig = include $scjConfig;
  26. $pluginConfig = unserialize(base64_decode($pluginConfig));
  27. }
  28. $scj2cms->pluginConfig = is_array($pluginConfig) ? $pluginConfig : array();
  29. $scj2cms->funcApiPost = '_scjFuncApiPost';
  30. //载入文章模块
  31. $ecms_config['esafe']['ckhash'] = 2;//关闭HASH模式
  32. chdir(ECMS_PATH . 'e/admin');
  33. require LoadLang("pub/fun.php");
  34. require("../class/delpath.php");
  35. require("../class/copypath.php");
  36. require("../class/t_functions.php");
  37. require("../data/dbcache/class.php");
  38. require("../data/dbcache/MemberLevel.php");
  39. require("../member/class/user.php");
  40. require("../class/hinfofun.php");
  41. ob_clean();
  42. ob_start();
  43. register_shutdown_function('_scjExit');
  44. $scj2cms->apiPost();//发布
  45. function _scjFuncApiPost()
  46. {
  47. global $scj2cms;
  48. global $empire, $class_r, $class_zr, $bclassid, $public_r, $dbtbpre, $emod_r, $lur;
  49. if (empty($_POST['title'])) {
  50. $scj2cms->returnJson(0, $scj2cms->pluginLang['dg_error_title']);
  51. }
  52. if (empty($_POST['newstext'])) {
  53. $scj2cms->returnJson(0, $scj2cms->pluginLang['dg_error_newstext']);
  54. }
  55. //栏目
  56. $classid = $_POST['classid'];
  57. if (empty($classid)) {
  58. $scj2cms->returnJson(0, $scj2cms->pluginLang['dg_error_classid']);
  59. }
  60. $classData = null;
  61. if (is_numeric($classid)) {
  62. $classid = intval($classid);
  63. $classData = $empire->fetch1("select * from {$dbtbpre}enewsclass where classid='{$classid}'");
  64. } else {
  65. $classid = addslashes($classid);
  66. $classData = $empire->fetch1("select * from {$dbtbpre}enewsclass where classname='{$classid}'");
  67. }
  68. if (empty($classData)) {
  69. $scj2cms->returnJson(0, $scj2cms->pluginLang['dg_error_class'] . $classid);
  70. }
  71. $_POST['classid'] = $classid = $classData['classid'];
  72. $_POST['bclassid'] = $classData['bclassid'];
  73. //作者
  74. $author = $scj2cms->randLine($scj2cms->pluginConfig['author']);
  75. $userData = null;
  76. if (is_numeric($author)) {
  77. $author = intval($author);
  78. $userData = $empire->fetch1("select * from {$dbtbpre}enewsuser where userid='{$author}'");
  79. } else {
  80. $author = addslashes($author);
  81. $userData = $empire->fetch1("select * from {$dbtbpre}enewsuser where username='{$author}'");
  82. }
  83. if (empty($userData)) {
  84. $scj2cms->returnJson(0, $scj2cms->pluginLang['dg_error_user'] . $author);
  85. }
  86. //发布到多个栏目
  87. $copyclassid = $_POST['copyclassid'];
  88. if (isset($copyclassid)) {
  89. $copyclassid = explode(',', $copyclassid);
  90. foreach ($copyclassid as $k => $v) {
  91. $classData = null;
  92. if (is_numeric($v)) {
  93. $v = intval($v);
  94. $classData = $empire->fetch1("select * from {$dbtbpre}enewsclass where classid='{$v}'");
  95. } else {
  96. $v = addslashes($v);
  97. $classData = $empire->fetch1("select * from {$dbtbpre}enewsclass where classname='{$v}'");
  98. }
  99. if (empty($classData)) {
  100. unset($copyclassid[$k]);
  101. } else {
  102. $copyclassid[$k] = $classData['classid'];
  103. }
  104. }
  105. $copyclassid = array_unique($copyclassid);
  106. $copyclassid = array_values($copyclassid);
  107. $_POST['copyclassid'] = $copyclassid;
  108. }
  109. //标题属性
  110. $titlefont = $_POST['titlefont'];
  111. if (isset($titlefont)) {
  112. $titlefont = explode(',', $titlefont);
  113. foreach ($titlefont as $k => $v) {
  114. unset($titlefont[$v]);
  115. $titlefont[$v] = $v;
  116. }
  117. $_POST['titlefont'] = $titlefont;
  118. }
  119. //默认参数
  120. $defaParams = array('checked' => 1, 'isgood' => 0, 'firsttitle' => 0, 'newstime' => date('Y-m-d H:i:s'), 'dokey' => 1, 'autosize' => 5000, 'getfirsttitlespicw' => 105, 'getfirsttitlespich' => 118, 'istop' => 0, 'groupid' => 0, 'info_diyotherlink' => 0, 'newspath' => date('Y-m-d'));
  121. foreach ($defaParams as $k => $v) {
  122. if (!isset($_POST[$k])) {
  123. $_POST[$k] = $v;
  124. }
  125. }
  126. $GLOBALS['_empire'] = $empire;
  127. $GLOBALS['_return_url'] = ($scj2cms->isSsl() ? 'https' : 'http') . '://' . $scj2cms->getHost() . $public_r['newsurl'] . 'e/action/ShowInfo.php?classid=' . $_POST['classid'] . '&id=';
  128. $ecms_config['esafe']['thedolog'] = 1;//关闭日志
  129. AddNews($_POST, $userData['userid'], $userData['username']);
  130. }
  131. function urlxx()
  132. {
  133. $url = '';
  134. if (isset($_SERVER['HTTP_X_REWRITE_URL'])) {
  135. $url = $_SERVER['HTTP_X_REWRITE_URL'];
  136. } elseif (isset($_SERVER['REQUEST_URI'])) {
  137. $url = $_SERVER['REQUEST_URI'];
  138. } elseif (isset($_SERVER['ORIG_PATH_INFO'])) {
  139. $url = $_SERVER['ORIG_PATH_INFO'] . (!empty($_SERVER['QUERY_STRING']) ? '?' . $_SERVER['QUERY_STRING'] : '');
  140. } else {
  141. $url = '';
  142. }
  143. return $url;
  144. }
  145. function _scjExit()
  146. {
  147. global $scj2cms;
  148. $html = ob_get_contents();
  149. ob_clean();
  150. if (strpos($html, '{') === 0) {
  151. //json
  152. exit($html);
  153. } else {
  154. $return = array('id' => 0, 'target' => '', 'desc' => '', 'error' => '');
  155. if (stripos($html, 'AddNews.php?enews=AddNews') !== false) {
  156. //添加成功
  157. $return['id'] = $GLOBALS['_empire']->id;
  158. $return['target'] = $GLOBALS['_return_url'] . $return['id'];
  159. } elseif (preg_match('/<div align="center">\s*<br>\s*<b>([\s\S]*?)<\/b>\s*<br>/i', $html, $error)) {
  160. //失败信息
  161. $return['error'] = $error[1];
  162. }
  163. $scj2cms->returnJson($return['id'], $return['error'], $return['target'], $return['desc']);
  164. }
  165. }