Install.php 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <?php
  2. namespace app\admin\command;
  3. use PDO;
  4. use think\Config;
  5. use think\console\Command;
  6. use think\console\Input;
  7. use think\console\input\Option;
  8. use think\console\Output;
  9. use think\Db;
  10. use think\Exception;
  11. class Install extends Command
  12. {
  13. protected $model = null;
  14. protected function configure()
  15. {
  16. $config = Config::get('database');
  17. $this
  18. ->setName('install')
  19. ->addOption('hostname', 'a', Option::VALUE_OPTIONAL, 'mysql hostname', $config['hostname'])
  20. ->addOption('hostport', 'o', Option::VALUE_OPTIONAL, 'mysql hostport', $config['hostport'])
  21. ->addOption('database', 'd', Option::VALUE_OPTIONAL, 'mysql database', $config['database'])
  22. ->addOption('prefix', 'r', Option::VALUE_OPTIONAL, 'table prefix', $config['prefix'])
  23. ->addOption('username', 'u', Option::VALUE_OPTIONAL, 'mysql username', $config['username'])
  24. ->addOption('password', 'p', Option::VALUE_OPTIONAL, 'mysql password', $config['password'])
  25. ->addOption('force', 'f', Option::VALUE_OPTIONAL, 'force override', false)
  26. ->setDescription('New installation of FastAdmin');
  27. }
  28. protected function execute(Input $input, Output $output)
  29. {
  30. // 覆盖安装
  31. $force = $input->getOption('force');
  32. $hostname = $input->getOption('hostname');
  33. $hostport = $input->getOption('hostport');
  34. $database = $input->getOption('database');
  35. $prefix = $input->getOption('prefix');
  36. $username = $input->getOption('username');
  37. $password = $input->getOption('password');
  38. $installLockFile = __DIR__ . "/Install/install.lock";
  39. if (is_file($installLockFile) && !$force) {
  40. throw new Exception("\nFastAdmin already installed!\nIf you need to reinstall again, use the parameter --force=true ");
  41. }
  42. $sql = file_get_contents(__DIR__ . '/Install/fastadmin.sql');
  43. $sql = str_replace("`fa_", "`{$prefix}", $sql);
  44. // 先尝试能否自动创建数据库
  45. $config = Config::get('database');
  46. $pdo = new PDO("{$config['type']}:host={$hostname}" . ($hostport ? ";port={$hostport}" : ''), $username, $password);
  47. $pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
  48. $pdo->query("CREATE DATABASE IF NOT EXISTS `{$database}` CHARACTER SET utf8 COLLATE utf8_general_ci;");
  49. // 连接install命令中指定的数据库
  50. $instance = Db::connect([
  51. 'type' => "{$config['type']}",
  52. 'hostname' => "{$hostname}",
  53. 'hostport' => "{$hostport}",
  54. 'database' => "{$database}",
  55. 'username' => "{$username}",
  56. 'password' => "{$password}",
  57. ]);
  58. // 查询一次SQL,判断连接是否正常
  59. $instance->execute("SELECT 1");
  60. // 调用原生PDO对象进行批量查询
  61. $instance->getPdo()->exec($sql);
  62. file_put_contents($installLockFile, 1);
  63. //后台入口文件
  64. $adminFile = ROOT_PATH . 'public' . DS . 'admin.php';
  65. $dbConfigFile = APP_PATH . 'database.php';
  66. $config = @file_get_contents($dbConfigFile);
  67. $callback = function ($matches) use ($hostname, $hostport, $username, $password, $database, $prefix) {
  68. $field = $matches[1];
  69. $replace = $$field;
  70. if ($matches[1] == 'hostport' && $hostport == 3306) {
  71. $replace = '';
  72. }
  73. return "'{$matches[1]}'{$matches[2]}=>{$matches[3]}Env::get('database.{$matches[1]}', '{$replace}'),";
  74. };
  75. $config = preg_replace_callback("/'(hostname|database|username|password|hostport|prefix)'(\s+)=>(\s+)Env::get\((.*)\)\,/", $callback, $config);
  76. // 写入数据库配置
  77. file_put_contents($dbConfigFile, $config);
  78. // 修改后台入口
  79. if (is_file($adminFile)) {
  80. $x = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
  81. $adminName = substr(str_shuffle(str_repeat($x, ceil(10 / strlen($x)))), 1, 10) . '.php';
  82. rename($adminFile, ROOT_PATH . 'public' . DS . $adminName);
  83. $output->highlight("Admin url:http://www.yoursite.com/{$adminName}");
  84. }
  85. $output->highlight("Admin username:admin");
  86. $output->highlight("Admin password:123456");
  87. \think\Cache::rm('__menu__');
  88. $output->info("Install Successed!");
  89. }
  90. }