conn.php 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356
  1. <?php
  2. session_start();
  3. header('Content-Type: text/html; charset=utf-8');
  4. header('X-Powered-By: PHP/8.0');
  5. date_default_timezone_set('Asia/Shanghai');
  6. // 数据库连接
  7. $conn = new mysqli("127.0.0.1", "crm", "Qweasdzxc", "crm_new");
  8. if ($conn->connect_error) {
  9. die("Connection failed: " . $conn->connect_error);
  10. }
  11. $conn->set_charset("utf8");
  12. // Get website settings
  13. $result = $conn->query("SELECT webname, keywords, description, indexwebname, copyright FROM inc LIMIT 1");
  14. if ($result) {
  15. $row = $result->fetch_assoc();
  16. $webname = textUncode($row['webname']);
  17. $webkeywords = textUncode($row['keywords']);
  18. $webdescription = textUncode($row['description']);
  19. $indexwebname = textUncode($row['indexwebname']);
  20. $copyright = textUncode($row['copyright']);
  21. $result->close();
  22. }
  23. // Global variables
  24. $useid = '';
  25. $usename = '';
  26. $usesex = '';
  27. $usecompany = '';
  28. $usetel = '';
  29. $useemail = '';
  30. // Session handling functions
  31. function addSession($key, $value) {
  32. $_SESSION['hjunkel.com' . $key] = $value;
  33. }
  34. function loadSession($key) {
  35. return $_SESSION['hjunkel.com' . $key] ?? '';
  36. }
  37. // Check login function
  38. function checkLogin($permission = '') {
  39. global $conn;
  40. $loginId = loadSession('loginid');
  41. $loginUser = loadSession('loginuser');
  42. $loginName = loadSession('loginname');
  43. $loginPower = loadSession('loginpower');
  44. if (empty($loginId) || empty($loginUser) || empty($loginName) || empty($loginPower)) {
  45. echo "<script>top.location.href='login.php'</script>";
  46. exit;
  47. }
  48. if (!is_numeric($loginId) || !is_numeric($loginPower)) {
  49. echo "<script>top.location.href='login.php'</script>";
  50. exit;
  51. }
  52. $loginId = $conn->real_escape_string($loginId);
  53. $loginUser = $conn->real_escape_string($loginUser);
  54. $result = $conn->query("SELECT loginstate, loginpower FROM login WHERE id=$loginId AND loginuser='$loginUser'");
  55. if ($result->num_rows === 0) {
  56. echo "<script>alert('登录超时,请重新登录');top.location.href='login.php'</script>";
  57. exit;
  58. }
  59. $row = $result->fetch_assoc();
  60. if ($row['loginstate'] == 0) {
  61. echo "<script>alert('您的帐号已被系统停用,请联系管理员');top.location.href='login.php'</script>";
  62. exit;
  63. }
  64. if ($row['loginpower'] != (int)$loginPower) {
  65. echo "<script>alert('您的权限已被更新,请重新登录');top.location.href='login.php'</script>";
  66. exit;
  67. }
  68. $result = $conn->query("SELECT powerstate, powercontent FROM power WHERE id=$loginPower");
  69. if ($result->num_rows === 0) {
  70. echo "<script>alert('您的帐号已被系统停用,请联系管理员');top.location.href='login.php'</script>";
  71. exit;
  72. }
  73. $row = $result->fetch_assoc();
  74. if ($row['powerstate'] == 0) {
  75. echo "<script>alert('您的帐号已被系统停用,请联系管理员');top.location.href='login.php'</script>";
  76. exit;
  77. }
  78. $powerContent = $row['powercontent'];
  79. if (!empty($permission) && strpos($powerContent, $permission) === false) {
  80. echo "<script>alert('Sorry,您没有操作该功能的权限');history.back();</script>";
  81. exit;
  82. }
  83. }
  84. function chkLogin($permission) {
  85. global $conn;
  86. $loginPower = loadSession('loginpower');
  87. $result = $conn->query("SELECT powercontent FROM power WHERE id=" . (int)$loginPower);
  88. if ($result->num_rows === 0) {
  89. return false;
  90. }
  91. $row = $result->fetch_assoc();
  92. if (!empty($permission) && strpos($row['powercontent'], $permission) === false) {
  93. return false;
  94. }
  95. return true;
  96. }
  97. function checkPost() {
  98. // 可以根据需要实现POST检查
  99. // if (!isset($_SERVER['HTTP_REFERER']) || parse_url($_SERVER['HTTP_REFERER'], PHP_URL_HOST) !== $_SERVER['SERVER_NAME']) {
  100. // die("<script>alert('对不起,服务器拒绝您的请求');history.back()</script>");
  101. // }
  102. }
  103. function txt2HTML($text) {
  104. if (empty($text) || is_null($text)) {
  105. return '';
  106. }
  107. return htmlspecialchars($text, ENT_QUOTES | ENT_HTML5, 'UTF-8');
  108. }
  109. function html2Txt($text) {
  110. if (empty($text) || is_null($text)) {
  111. return '';
  112. }
  113. return htmlspecialchars_decode($text, ENT_QUOTES);
  114. }
  115. function htmlEncode($text) {
  116. if (empty($text) || is_null($text)) {
  117. return '';
  118. }
  119. $chars = [
  120. '&' => '&#38;', "\t" => '&#9;', "\n" => '&#10;', "\r" => '&#13;',
  121. ' ' => '&#32;', '"' => '&#34;', '%' => '&#37;', "'" => '&#39;',
  122. '(' => '&#40;', ')' => '&#41;', '<' => '&#60;', '>' => '&#62;',
  123. '[' => '&#91;', ']' => '&#93;', '^' => '&#94;', '_' => '&#95;',
  124. '{' => '&#123;', '|' => '&#124;', '}' => '&#125;'
  125. ];
  126. return strtr($text, $chars);
  127. }
  128. function htmlUncode($text) {
  129. if (empty($text) || is_null($text)) {
  130. return '';
  131. }
  132. $chars = array_flip([
  133. '&' => '&#38;', "\t" => '&#9;', "\n" => '&#10;', "\r" => '&#13;',
  134. ' ' => '&#32;', '"' => '&#34;', '%' => '&#37;', "'" => '&#39;',
  135. '(' => '&#40;', ')' => '&#41;', '<' => '&#60;', '>' => '&#62;',
  136. '[' => '&#91;', ']' => '&#93;', '^' => '&#94;', '_' => '&#95;',
  137. '{' => '&#123;', '|' => '&#124;', '}' => '&#125;'
  138. ]);
  139. return strtr($text, $chars);
  140. }
  141. function textEncode($text) {
  142. if (empty($text) || is_null($text)) {
  143. return '';
  144. }
  145. $text = trim($text);
  146. // Remove control characters
  147. $text = preg_replace('/[\x00-\x1F\x7F]/', '', $text);
  148. return htmlEncode($text);
  149. }
  150. function textUncode($text) {
  151. if (empty($text) || is_null($text)) {
  152. return '';
  153. }
  154. return htmlUncode($text);
  155. }
  156. function htmlUncode1($text) {
  157. if (empty($text) || is_null($text)) {
  158. return '';
  159. }
  160. $replacements = [
  161. '&#9;' => "\t",
  162. '&#11;' => "\v",
  163. '&#13;&#10;' => '<br />',
  164. '&#10;' => '<br />',
  165. '&#13;' => '<br />',
  166. '&#32;' => '&nbsp;',
  167. '&#38;' => '&'
  168. ];
  169. return strtr($text, $replacements);
  170. }
  171. function strLeft($str, $length) {
  172. if (empty($str)) {
  173. return '';
  174. }
  175. $substr = mb_substr($str, 0, $length, 'UTF-8');
  176. return ($substr != $str) ? $substr . '..' : $substr;
  177. }
  178. function enMonth($m) {
  179. $months = [
  180. '1' => 'Jan', '2' => 'Feb', '3' => 'Mar',
  181. '4' => 'Apr', '5' => 'May', '6' => 'Jun',
  182. '7' => 'Jul', '8' => 'Aug', '9' => 'Sep',
  183. '10' => 'Oct', '11' => 'Nov', '12' => 'Dec'
  184. ];
  185. return $months[$m] ?? 'Dec';
  186. }
  187. function sitelinkReplace($content, $search, $replace, $limit = -1) {
  188. if (empty($content) || is_null($content)) {
  189. return '';
  190. }
  191. // 保存HTML标签内容
  192. $patterns = [
  193. '/<a[^<>]+>.+?<\/a>/is', // 链接
  194. '/<img[^<>]+>/is', // 图片
  195. '/<h[1-6]+\s*>.+?<\/h[1-6]+>/is' // 标题
  196. ];
  197. $savedTags = [];
  198. $i = 0;
  199. foreach ($patterns as $pattern) {
  200. $content = preg_replace_callback($pattern, function($match) use (&$savedTags, &$i) {
  201. $savedTags[$i] = $match[0];
  202. $placeholder = "[{$i}]";
  203. $i++;
  204. return $placeholder;
  205. }, $content);
  206. }
  207. if ($i == 0) {
  208. // 如果没有需要保护的HTML标签,直接替换
  209. return str_replace($search, $replace, $content, $limit);
  210. }
  211. // 执行替换
  212. $content = str_replace($search, $replace, $content, $limit);
  213. // 还原保存的标签
  214. for ($j = 0; $j < $i; $j++) {
  215. $content = str_replace("[{$j}]", $savedTags[$j], $content);
  216. }
  217. return $content;
  218. }
  219. function getIp() {
  220. $ip = $_SERVER['HTTP_X_FORWARDED_FOR'] ?? $_SERVER['REMOTE_ADDR'] ?? '';
  221. if (strlen($ip) > 15) {
  222. $ip = 'Unknown';
  223. }
  224. return htmlEncode($ip);
  225. }
  226. function formatTime($time, $format) {
  227. if (!strtotime($time)) {
  228. return '';
  229. }
  230. $replacements = [
  231. 'yyyy' => 'Y',
  232. 'yy' => 'y',
  233. 'mm' => 'm',
  234. 'dd' => 'd',
  235. 'hh' => 'H',
  236. 'ff' => 'i',
  237. 'ss' => 's'
  238. ];
  239. $phpFormat = strtr($format, $replacements);
  240. return date($phpFormat, strtotime($time));
  241. }
  242. function removeHTML($text) {
  243. if (empty($text) || is_null($text)) {
  244. return '';
  245. }
  246. // Remove scripts and iframes
  247. $text = preg_replace(['/<script\b[^>]*>(.*?)<\/script>/is', '/<iframe\b[^>]*>(.*?)<\/iframe>/is'], '', $text);
  248. // Convert special characters
  249. $text = str_replace(['&lt;', '&gt;'], ['<', '>'], $text);
  250. // Remove all remaining HTML tags
  251. $text = strip_tags($text);
  252. // Remove special characters and whitespace
  253. $text = str_replace(['&nbsp;', "\r", "\n", "\t", "\x09", "\x0A", "\x0D", "\x16"], '', $text);
  254. return trim($text);
  255. }
  256. function isValidEmail($email) {
  257. if (empty($email)) {
  258. return false;
  259. }
  260. $parts = explode('@', $email);
  261. if (count($parts) !== 2) {
  262. return false;
  263. }
  264. list($local, $domain) = $parts;
  265. if (empty($local) || empty($domain)) {
  266. return false;
  267. }
  268. if (!preg_match('/^[a-zA-Z0-9._-]+$/', $local)) {
  269. return false;
  270. }
  271. if (strpos($domain, '.') === false) {
  272. return false;
  273. }
  274. $tld = substr($domain, strrpos($domain, '.') + 1);
  275. if (strlen($tld) < 2 || strlen($tld) > 3) {
  276. return false;
  277. }
  278. if (strpos($email, '..') !== false) {
  279. return false;
  280. }
  281. return true;
  282. }
  283. //处理特殊字符
  284. function htmlspecialcharsFix($input_str)
  285. {
  286. return $input_str;
  287. }