| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 | 
							- <?php
 
- /**
 
-  * Created by PhpStorm.
 
-  * User:  NODELOG
 
-  * Date: 2016/11/6
 
-  * Time: 下午6:17
 
-  */
 
- namespace install;
 
- use Yii;
 
- class Application extends \yii\web\Application
 
- {
 
-     public $installFile = '@root/web/storage/install.txt';
 
-     public $envPath = '@root/.env';
 
-     public function beforeAction($action)
 
-     {
 
-         if (parent::beforeAction($action)) {
 
-             if ($this->checkInstalled() == true && Yii::$app instanceof \yii\web\Application) {
 
-                 Yii::$app->getResponse()->redirect('./');
 
-                 return false;
 
-             }
 
-             return true;
 
-         }
 
-     }
 
-     public function checkInstalled()
 
-     {
 
-         return file_exists(Yii::getAlias($this->installFile));
 
-     }
 
-     public function setInstalled()
 
-     {
 
-         file_put_contents(Yii::getAlias($this->installFile), time());
 
-     }
 
-     public function setKeys($file)
 
-     {
 
-         $file = Yii::getAlias($file);
 
-         $content = file_get_contents($file);
 
-         $content = preg_replace_callback('/<generated_key>/', function () {
 
-             $length = 32;
 
-             $bytes = openssl_random_pseudo_bytes(32, $cryptoStrong);
 
-             return strtr(substr(base64_encode($bytes), 0, $length), '+/', '_-');
 
-         }, $content);
 
-         file_put_contents($file, $content);
 
-     }
 
-     public function setEnv($name, $value)
 
-     {
 
-         $file = Yii::getAlias($this->envPath);
 
-         if (!file_exists($file)) {
 
-             @copy(Yii::getAlias('@root/.env.example'), $file);
 
-         }
 
-         $content = preg_replace("/({$name}\s*=)\s*(.*)/", "\${1}$value", file_get_contents($file));
 
-         file_put_contents($file, $content);
 
-     }
 
- }
 
 
  |