Files
librenms-librenms/LibreNMS/Validations/Database/CheckMysqlEngine.php
Jellyfrog 2b3575a5e9 Laravel 10.x Shift (#14995)
* Apply code style

* Remove explicit call to register policies

* Shift core files

* Shift config files

* Default config files

In an effort to make upgrading the constantly changing config files
easier, Shift defaulted them and merged your true customizations -
where ENV variables may not be used.

* Bump Laravel dependencies

* Add type hints for Laravel 10

* Shift cleanup

* wip

* wip

* sync translation

* Sync back config

* Public Path Binding

* QueryException

* monolog

* db::raw

* monolog

* db::raw

* fix larastan collections

* fix phpstan bug looping forever

* larastan errors

* larastan: fix column type

* styleci

* initialize array

* fixes

* fixes

---------

Co-authored-by: Shift <shift@laravelshift.com>
2023-05-24 22:21:54 +02:00

96 lines
2.7 KiB
PHP

<?php
/*
* CheckMysqlEngine.php
*
* -Description-
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @package LibreNMS
* @link http://librenms.org
* @copyright 2022 Tony Murray
* @author Tony Murray <murraytony@gmail.com>
*/
namespace LibreNMS\Validations\Database;
use Illuminate\Database\QueryException;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\DB;
use LibreNMS\DB\Eloquent;
use LibreNMS\Interfaces\Validation;
use LibreNMS\Interfaces\ValidationFixer;
use LibreNMS\ValidationResult;
class CheckMysqlEngine implements Validation, ValidationFixer
{
/**
* @inheritDoc
*/
public function validate(): ValidationResult
{
$tables = $this->findNonInnodbTables();
if ($tables->isNotEmpty()) {
return ValidationResult::warn(trans('validation.validations.database.CheckMysqlEngine.fail'))
->setFixer(__CLASS__)
->setList(trans('validation.validations.database.CheckMysqlEngine.tables'), $tables->all());
}
return ValidationResult::ok(trans('validation.validations.database.CheckMysqlEngine.ok'));
}
/**
* @inheritDoc
*/
public function enabled(): bool
{
return Eloquent::isConnected();
}
/**
* @inheritDoc
*/
public function fix(): bool
{
try {
$db = $this->databaseName();
$tables = $this->findNonInnodbTables();
foreach ($tables as $table) {
DB::statement("ALTER TABLE $db.$table ENGINE=InnoDB;");
}
} catch (QueryException $e) {
return false;
}
return true;
}
private function databaseName(): string
{
return \config('database.connections.' . \config('database.default') . '.database');
}
private function findNonInnodbTables(): Collection
{
$db = $this->databaseName();
return DB::table('information_schema.tables')
->where('TABLE_SCHEMA', $db)
->where('ENGINE', '!=', 'InnoDB')
->pluck('TABLE_NAME');
}
}