OpenSource CLI-App to install and handle stuff related to Web-Server
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

78 lines
1.9 KiB

<?php
namespace App\Commands;
use Illuminate\Console\Scheduling\Schedule;
use LaravelZero\Framework\Commands\Command;
use Illuminate\Support\Facades\File;
use App\Facades\Install;
use Hackzilla\PasswordGenerator\Generator\ComputerPasswordGenerator;
use Hackzilla\PasswordGenerator\RandomGenerator\Php7RandomGenerator;
/**
* Remove database
*
* @author Björn Hase, Tentakelfabrik
* @license http://opensource.org/licenses/MIT The MIT License
* @link https://gitea.tentakelfabrik.de/Tentakelfabrik/mcp
*
*/
class MariadbRemoveCommand extends Command
{
/**
* The signature of the command.
*
* @var string
*/
protected $signature = 'mariadb:remove {database}';
/**
* The description of the command.
*
* @var string
*/
protected $description = 'Remove Mariadb Database and User';
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
$this->info('Mariadb Remove Database...');
// getting root password
$password = $this->secret('Enter root password');
// connect database
try {
$mysqli = new \mysqli('127.0.0.1', 'root', $password);
} catch(\ErrorException $exception) {
$this->error('Failed! '.$exception->getMessage());
exit();
}
$database = $this->argument('database');
// check for user of database
$result = $mysqli->query("SELECT User FROM mysql.db WHERE Db = '$database'");
while ($row = $result->fetch_assoc()) {
// get user from row
$user = $row['User'];
// remove if exists
$mysqli->query("DROP USER IF EXISTS $user@localhost");
$mysqli->query("DROP USER IS EXISTS $user@'%'");
}
// drop database
$mysqli->query("DROP DATABASE IF EXISTS $database");
$mysqli->close();
$this->info('Success! \o/ ');
}
}