Files
librenms-librenms/app/Http/Controllers/Install/UsesDatabase.php

48 lines
1.4 KiB
PHP
Raw Normal View History

2020-06-06 17:03:32 -05:00
<?php
/**
* UsesDatabase.php
*
* 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 2020 Tony Murray
* @author Tony Murray <murraytony@gmail.com>
*/
namespace App\Http\Controllers\Install;
use LibreNMS\DB\Eloquent;
trait UsesDatabase
{
protected $connection = 'setup';
protected function setDB()
{
Eloquent::setConnection(
$this->connection,
session('db.host', 'localhost'),
session('db.username', 'librenms'),
session('db.password'),
session('db.database', 'librenms'),
session('db.port', 3306),
session('db.socket')
);
config(['database.default', $this->connection]);
return \DB::connection($this->connection);
}
}