install.php 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398
  1. <?php
  2. function params($key, $default_value = '')
  3. {
  4. return $_POST[$key] ?? $default_value;
  5. }
  6. if (file_exists('./installed.lock')) {//如果没有安装的就提示安装
  7. header('Location: /');
  8. }
  9. // 获取当前PHP版本
  10. $phpVersion = phpversion();
  11. // 检查是否大于7.3
  12. $php_version = false;
  13. if (version_compare($phpVersion, '7.4', '>')) {
  14. $php_version = true;
  15. }
  16. $redis_ext = false;
  17. if (extension_loaded('redis')) {
  18. $redis_ext = true;
  19. }
  20. $fileinfo_ext = false;
  21. if (extension_loaded('fileinfo')) {
  22. $fileinfo_ext = true;
  23. }
  24. $zip_ext = false;
  25. if (extension_loaded('zip')) {
  26. $zip_ext = true;
  27. }
  28. $mysqli_ext = false;
  29. if (extension_loaded('mysqli')) {
  30. $mysqli_ext = true;
  31. }
  32. $curl_ext = false;
  33. if (extension_loaded('curl')) {
  34. $curl_ext = true;
  35. }
  36. // 连接数据库
  37. $servername = 'localhost';
  38. $db_username = params('db_username', false);
  39. $db_password = params('db_password', false);
  40. $db_host = params('db_host', '127.0.0.1');
  41. $db_port = params('db_port', 3306);
  42. $table_name = params('table_name', '');
  43. $admin_email = params('admin_email', '');
  44. $admin_password = params('admin_password', '');
  45. $database_type = params('database_type', 1);//1=全新安装,2=使用已存在数据库不安装数据库
  46. $redis_host = params('redis_host', '127.0.0.1');
  47. $redis_port = params('redis_port', 6379);
  48. $redis_password = params('redis_password', '');
  49. $error = false;
  50. $conn = null;
  51. $status = false;
  52. if ($db_username && $php_version && $redis_ext && $fileinfo_ext && $curl_ext && $zip_ext) {
  53. $conn = new mysqli($db_host, $db_username, $db_password, null, $db_port);
  54. if ($conn->connect_error) {
  55. $error = '数据库连接失败';
  56. } else {
  57. $redis = null;
  58. $redis = new Redis();
  59. try {
  60. $redis->connect($redis_host, $redis_port);
  61. if ($redis_password) {
  62. $redis->auth($redis_password);
  63. }
  64. $redis->close();
  65. } catch (Exception $e) {
  66. $error = 'Redis连接失败';
  67. }
  68. if (!$error) {//如果没有错误
  69. if ($database_type == 1) {//全新安装
  70. $sql = "DROP DATABASE $table_name";//删除原来的
  71. $conn->query($sql);
  72. $sql = "CREATE DATABASE $table_name";//创建新的
  73. if ($conn->query($sql) !== TRUE) {
  74. $error = '数据表创建失败';
  75. }
  76. $conn = new mysqli($db_host, $db_username, $db_password, $table_name, $db_port);
  77. $sql_file_content = file_get_contents('../install.sql');
  78. // 解析SQL文件内容并执行
  79. $sql_statements = explode(';', trim($sql_file_content));
  80. foreach ($sql_statements as $sql_statement) {
  81. if (!empty($sql_statement)) {
  82. $conn->query($sql_statement);
  83. }
  84. }
  85. $admin_password = md5($admin_password);
  86. //添加默认管理员
  87. $AdminSql = ("
  88. INSERT INTO user (mail, password, create_time, login_ip, register_ip, manager, login_fail_count, login_time)
  89. VALUES ('$admin_email', '$admin_password', null, null, null, 1, DEFAULT, null);
  90. ");
  91. $conn->query($AdminSql);
  92. $conn->close();
  93. }
  94. file_put_contents('./installed.lock', 'installed');
  95. $status = true;
  96. }
  97. }
  98. }
  99. if ($status) {
  100. $env = <<<EOF
  101. APP_DEBUG = false
  102. [APP]
  103. [DATABASE]
  104. TYPE = mysql
  105. HOSTNAME = {$db_host}
  106. DATABASE = {$table_name}
  107. USERNAME = {$db_username}
  108. PASSWORD = {$db_password}
  109. HOSTPORT = {$db_port}
  110. CHARSET = utf8mb4
  111. DEBUG = false
  112. [REDIS]
  113. HOST = {$redis_host}
  114. PORT = {$redis_port}
  115. PASSWORD = {$redis_password}
  116. SELECT = 0
  117. EOF;
  118. file_put_contents('../.env', $env);
  119. }
  120. ?>
  121. <?php if ($status === false) { ?>
  122. <!DOCTYPE html>
  123. <html lang="zh">
  124. <head>
  125. <title>Mtab安装页面</title>
  126. <meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no'>
  127. <style>
  128. body {
  129. font-family: Arial, sans-serif;
  130. background: url("static/background.jpeg") no-repeat center/cover;
  131. }
  132. form {
  133. max-width: 900px;
  134. margin: 0 auto 100px;
  135. background-color: #fff;
  136. padding: 20px 20px 30px 20px;
  137. border-radius: 12px;
  138. box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  139. }
  140. label {
  141. display: block;
  142. margin-bottom: 10px;
  143. font-weight: bold;
  144. margin-top: 15px;
  145. }
  146. input[type='text'], input[type='password'], input[type='number'] {
  147. text-indent: 15px;
  148. width: calc(100% - 8px);
  149. height: 45px;
  150. line-height: 30px;
  151. border: 2px solid transparent;
  152. border-radius: 10px;
  153. outline: none;
  154. background-color: #f3f3f3;
  155. color: #0d0c22;
  156. transition: .5s ease;
  157. font-size: 16px;
  158. }
  159. input[type='submit'] {
  160. width: 100%;
  161. background-color: rgb(255, 171, 84);
  162. color: #fff;
  163. border-radius: 0.9em;
  164. border: none;
  165. padding: 0.8em 1.2em 0.8em 1em;
  166. transition: all ease-in-out 0.2s;
  167. font-size: 16px;
  168. }
  169. .input:focus, input:hover {
  170. outline: none;
  171. border-color: rgba(255, 171, 84, 0.85);
  172. background-color: #fff;
  173. box-shadow: 0 0 0 5px rgba(253, 224, 99, 0.3);
  174. }
  175. input[type='submit']:hover {
  176. background-color: rgb(255, 171, 84);
  177. }
  178. #error-popup {
  179. position: fixed;
  180. left: 0;
  181. right: 0;
  182. top: 0;
  183. bottom: 0;
  184. margin: auto;
  185. width: 250px;
  186. height: fit-content;
  187. padding: 20px;
  188. background-color: rgb(211, 82, 0);
  189. color: #fff;
  190. border-radius: 12px;
  191. justify-content: center;
  192. z-index: 9999;
  193. }
  194. </style>
  195. <link rel='icon' href='favicon.png'>
  196. </head>
  197. <body>
  198. <?php if ($error) { ?>
  199. <div id='error-popup'>
  200. <div style='text-align: center'><b>遇到错误了!</b></div>
  201. <p style='text-align: center;font-size: 18px'><?php echo $error ?></p>
  202. </div>
  203. <script>
  204. setTimeout(function () {
  205. document.querySelector("#error-popup").style.display = "none";
  206. }, 3000);
  207. </script>
  208. }
  209. <?php } ?>
  210. <h1 style="text-align: center;color: #fff">MTAB书签安装程序</h1>
  211. <form method='post' action='install.php'>
  212. <div style="font-size: 25px;font-weight: bold;margin-bottom: 15px;">请检查并安装以下php扩展</div>
  213. <div style="margin-bottom: 30px;display: flex;flex-wrap: wrap;gap:15px 40px;">
  214. <b>
  215. php版本大于7.4
  216. <?php if ($php_version) { ?>
  217. <span style='color: limegreen'>✔</span>
  218. <?php } else { ?>
  219. <span style='color: red'>✘</span>
  220. <?php } ?>
  221. </b>
  222. <b>
  223. redis扩展
  224. <?php if ($redis_ext) { ?>
  225. <span style='color: limegreen'>✔</span>
  226. <?php } else { ?>
  227. <span style='color: red'>✘</span>
  228. <?php } ?>
  229. </b>
  230. <b>
  231. fileinfo扩展
  232. <?php if ($fileinfo_ext) { ?>
  233. <span style='color: limegreen'>✔</span>
  234. <?php } else { ?>
  235. <span style='color: red'>✘</span>
  236. <?php } ?>
  237. </b>
  238. <b>
  239. zip扩展
  240. <?php if ($zip_ext) { ?>
  241. <span style='color: limegreen'>✔</span>
  242. <?php } else { ?>
  243. <span style='color: red'>✘</span>
  244. <?php } ?>
  245. </b>
  246. <b>
  247. curl扩展
  248. <?php if ($curl_ext) { ?>
  249. <span style='color: limegreen'>✔</span>
  250. <?php } else { ?>
  251. <span style='color: red'>✘</span>
  252. <?php } ?>
  253. </b>
  254. <b>
  255. mysqli扩展
  256. <?php if ($mysqli_ext) { ?>
  257. <span style='color: limegreen'>✔</span>
  258. <?php } else { ?>
  259. <span style='color: red'>✘</span>
  260. <?php } ?>
  261. </b>
  262. </div>
  263. <label for='db_host'>mysql数据库地址:</label>
  264. <input value="<?php echo $db_host; ?>" placeholder="127.0.0.1" type='text' name='db_host' id='db_host' required><br>
  265. <label for='db_port'>mysql数据库端口号:</label>
  266. <input type='number' value="<?php echo $db_port; ?>" placeholder='默认 3306' name='db_port' id='db_port'
  267. required><br>
  268. <label for='db_username'>mysql数据库用户名:</label>
  269. <input type='text' placeholder="请输入数据库用户名" value="<?php echo $db_username; ?>" name='db_username'
  270. id='db_username' required><br>
  271. <label for='db_password'>mysql数据库密码:</label>
  272. <input type='text' name='db_password' value="<?php echo $db_password; ?>" placeholder="请输入数据库密码"
  273. id='db_password' required><br>
  274. <label for='table_name'>mysql数据表名称:</label>
  275. <input type='text' value="<?php echo $table_name; ?>" placeholder="请输入创建的数据库名称" name='table_name'
  276. id='table_name' required><br>
  277. <label for='redis_host'>Redis 地址:</label>
  278. <input type='text' value="<?php echo $redis_host; ?>" placeholder="请输入Redis地址IP/域名" name='redis_host' id='redis_host'><br>
  279. <label for='redis_password'>Redis 密码:</label>
  280. <input type='text' value="<?php echo $redis_password; ?>" name='redis_password' placeholder="没有密码请留空"
  281. id='redis_password'><br>
  282. <label for='redis_port'>Redis 端口号:</label>
  283. <input type='number' value="<?php echo $redis_port; ?>" placeholder='默认 6379' name='redis_port'
  284. id='redis_port'
  285. required><br>
  286. <label for='redis_port'>管理员邮箱账号:</label>
  287. <input type='text' value="<?php echo $admin_email; ?>" placeholder='请输入邮箱,用于默认的管理员账号登录使用'
  288. name='admin_email'
  289. id='redis_port'
  290. required><br>
  291. <label for='redis_port'>管理员密码:</label>
  292. <input type='text' value="<?php echo $admin_password; ?>" placeholder='请设置管理员账号密码'
  293. name='admin_password'
  294. id='redis_port'
  295. required><br>
  296. <label for='redis_port'>数据库安装其他选项</label>
  297. <label for='install_other'></label>
  298. <label>
  299. <input type='radio' name='database_type' value='1' required>
  300. 全新安装(如果数据库存在则删除原来的数据库,重新安装)
  301. </label>
  302. <label>
  303. <input type='radio' name='database_type' value='2' required>
  304. 使用已存在数据库(不会覆盖数据库,仅安装代码,一般用于负载均衡部署)
  305. </label>
  306. <input type='submit' value='安装' style="margin-top: 50px"></form>
  307. </body>
  308. </html>
  309. <?php } else { ?>
  310. <!DOCTYPE html>
  311. <html lang="zh">
  312. <head>
  313. <meta charset="UTF-8">
  314. <title>网站安装完毕</title>
  315. <style>
  316. body {
  317. font-family: Arial, sans-serif;
  318. background-color: #fff;
  319. text-align: center;
  320. margin: 0;
  321. padding: 0;
  322. }
  323. .container {
  324. background-color: #fff;
  325. padding: 20px;
  326. border-radius: 10px;
  327. box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  328. margin: 50px auto;
  329. max-width: 800px;
  330. }
  331. h1 {
  332. color: #333;
  333. }
  334. p {
  335. color: #666;
  336. font-size: 18px;
  337. }
  338. .btn-container {
  339. margin-top: 20px;
  340. }
  341. .btn {
  342. display: inline-block;
  343. padding: 10px 20px;
  344. margin-right: 10px;
  345. background-color: rgb(255, 171, 84);
  346. color: #fff;
  347. text-decoration: none;
  348. border-radius: 5px;
  349. transition: background-color 0.3s;
  350. }
  351. .btn:hover {
  352. background-color: rgb(255, 147, 38);
  353. }
  354. </style>
  355. <link rel='icon' href='favicon.png'>
  356. </head>
  357. <body>
  358. <div class='container'>
  359. <h1 style="align-content: center">网站安装完毕</h1>
  360. <div style="display: flex;justify-content: center">
  361. <svg style="width: 100px" t='1694607796889' class='icon' viewBox='0 0 1024 1024' version='1.1'
  362. xmlns='http://www.w3.org/2000/svg'
  363. p-id='40460' width='128' height='128'>
  364. <path d='M512 0C230.4 0 0 230.4 0 512c0 281.6 230.4 512 512 512 281.6 0 512-230.4 512-512C1024 230.4 793.6 0 512 0zM512 960c-249.6 0-448-204.8-448-448 0-249.6 204.8-448 448-448 249.6 0 448 198.4 448 448C960 761.6 761.6 960 512 960zM691.2 339.2 454.4 576 332.8 454.4c-19.2-19.2-51.2-19.2-76.8 0C243.2 480 243.2 512 262.4 531.2l153.6 153.6c19.2 19.2 51.2 19.2 70.4 0l51.2-51.2 224-224c19.2-19.2 25.6-51.2 0-70.4C742.4 320 710.4 320 691.2 339.2z'
  365. fill='#54E283' p-id='40461'></path>
  366. </svg>
  367. </div>
  368. <p>欢迎使用Mtab书签,<br>点击下方按钮跳转到首页。</p>
  369. <div class='btn-container'>
  370. <a class='btn' href='/'>进入首页</a>
  371. </div>
  372. <p>后台进入方式,需要用管理员账户登录客户端<br/> <b>进入设置->个人中心->管理后台</b></p>
  373. </div>
  374. </body>
  375. </html>
  376. <?php } ?>