1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00
invoiceninja/app/Libraries/MultiDB.php

378 lines
9.8 KiB
PHP
Raw Normal View History

<?php
2019-05-11 05:32:07 +02:00
/**
* Invoice Ninja (https://invoiceninja.com).
2019-05-11 05:32:07 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
2019-05-11 05:32:07 +02:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2019-05-11 05:32:07 +02:00
*/
namespace App\Libraries;
use App\Models\Client;
2019-07-08 02:08:57 +02:00
use App\Models\ClientContact;
use App\Models\Company;
use App\Models\CompanyToken;
2021-07-01 23:57:55 +02:00
use App\Models\Document;
use App\Models\User;
use Illuminate\Support\Facades\DB;
2020-10-19 12:59:58 +02:00
use Illuminate\Support\Str;
/**
* Class MultiDB.
*
* Caution!
*
* When we perform scans across databases,
* we need to remember that if we don't
* return a DB 'HIT' the DB connection will
* be set to the last DB in the chain,
*
* So for these cases, we need to reset the
* DB connection to the default connection.
*
* Even that may be problematic, and we
* may need to know the current DB connection
* so that we can fall back gracefully.
*/
class MultiDB
{
const DB_PREFIX = 'db-ninja-';
public static $dbs = ['db-ninja-01', 'db-ninja-02'];
/**
2020-10-28 11:10:49 +01:00
* @return array
*/
public static function getDbs() : array
{
return self::$dbs;
}
public static function checkDomainAvailable($subdomain) : bool
{
if (! config('ninja.db.multi_db_enabled'))
return Company::whereSubdomain($subdomain)->get()->count() == 0;
$current_db = config('database.default');
foreach (self::$dbs as $db) {
if (Company::on($db)->whereSubdomain($subdomain)->exists()) {
self::setDb($current_db);
return false;
}
}
self::setDb($current_db);
return true;
}
public static function checkUserEmailExists($email) : bool
{
if (! config('ninja.db.multi_db_enabled'))
return User::where(['email' => $email])->exists(); // true >= 1 emails found / false -> == emails found
$current_db = config('database.default');
foreach (self::$dbs as $db) {
if (User::on($db)->where(['email' => $email])->exists()) { // if user already exists, validation will fail
self::setDb($current_db);
return true;
}
}
self::setDb($current_db);
return false;
}
/**
* A user and company must co exists on the same database.
*
* This function will check that if a user exists on the system,
* the company is also located on the same database.
*
* If no user is found, then we also return true as this must be
* a new user request.
*
* @param string $email The user email
* @param stirng $company_key The company key
* @return bool True|False
*/
public static function checkUserAndCompanyCoExist($email, $company_key) :bool
{
$current_db = config('database.default');
foreach (self::$dbs as $db) {
2021-05-26 03:32:01 +02:00
if (User::on($db)->where(['email' => $email])->exists()) {
if (Company::on($db)->where(['company_key' => $company_key])->exists()) {
self::setDb($current_db);
return true;
} else {
self::setDb($current_db);
return false;
}
}
}
self::setDb($current_db);
return true;
}
/**
* @param array $data
2020-10-28 11:10:49 +01:00
* @return User|null
*/
public static function hasUser(array $data) : ?User
{
if (! config('ninja.db.multi_db_enabled'))
2020-03-25 00:20:42 +01:00
return User::where($data)->withTrashed()->first();
$current_db = config('database.default');
foreach (self::$dbs as $db) {
2021-05-13 08:01:12 +02:00
self::setDB($db);
if ($user = User::where($data)->withTrashed()->first()) {
return $user;
}
2021-05-13 08:01:12 +02:00
}
self::setDb($current_db);
return null;
}
/**
* @param array $data
* @return User|null
*/
public static function hasContact(string $email) : ?ClientContact
{
if (! config('ninja.db.multi_db_enabled'))
return ClientContact::where('email', $email)->withTrashed()->first();
$current_db = config('database.default');
foreach (self::$dbs as $db) {
$user = ClientContact::on($db)->where('email', $email)->withTrashed()->first();
if ($user) {
self::setDb($db);
return $user;
}
}
self::setDB($current_db);
return null;
}
2019-07-08 02:08:57 +02:00
public static function contactFindAndSetDb($token) :bool
{
$current_db = config('database.default');
foreach (self::$dbs as $db) {
if ($ct = ClientContact::on($db)->whereRaw('BINARY `token`= ?', [$token])->first()) {
self::setDb($db);
2019-07-08 02:08:57 +02:00
return true;
}
}
self::setDB($current_db);
2019-07-08 02:08:57 +02:00
return false;
}
public static function userFindAndSetDb($email) : bool
{
$current_db = config('database.default');
//multi-db active
foreach (self::$dbs as $db) {
2021-03-01 00:40:18 +01:00
if (User::on($db)->where('email', $email)->exists()){
2021-05-13 11:13:51 +02:00
self::setDb($db);
return true;
2021-05-13 11:13:51 +02:00
}
}
self::setDB($current_db);
return false;
}
2021-07-01 23:23:25 +02:00
public static function documentFindAndSetDb($hash) : bool
{
$current_db = config('database.default');
//multi-db active
foreach (self::$dbs as $db) {
if (Document::on($db)->where('hash', $hash)->exists()){
2021-07-01 23:23:25 +02:00
self::setDb($db);
return true;
}
}
self::setDB($current_db);
return false;
}
public static function findAndSetDb($token) :bool
{
$current_db = config('database.default');
foreach (self::$dbs as $db) {
if ($ct = CompanyToken::on($db)->whereRaw('BINARY `token`= ?', [$token])->first()) {
self::setDb($ct->company->db);
return true;
}
}
self::setDB($current_db);
return false;
}
public static function findAndSetDbByCompanyKey($company_key) :bool
{
$current_db = config('database.default');
foreach (self::$dbs as $db) {
if ($company = Company::on($db)->where('company_key', $company_key)->first()) {
self::setDb($company->db);
return true;
}
}
self::setDB($current_db);
return false;
}
public static function findAndSetDbByContactKey($contact_key) :bool
{
$current_db = config('database.default');
foreach (self::$dbs as $db) {
if ($client_contact = ClientContact::on($db)->where('contact_key', $contact_key)->first()) {
self::setDb($client_contact->company->db);
return true;
}
}
self::setDB($current_db);
2020-10-28 11:10:49 +01:00
return false;
}
public static function findAndSetDbByClientHash($client_hash) :bool
{
$current_db = config('database.default');
foreach (self::$dbs as $db) {
if ($client = Client::on($db)->where('client_hash', $client_hash)->first()) {
self::setDb($client->company->db);
return true;
}
}
self::setDB($current_db);
2020-10-28 11:10:49 +01:00
return false;
}
2021-05-27 01:59:12 +02:00
public static function findAndSetDbByDomain($query_array)
{
2021-04-12 14:15:34 +02:00
if (! config('ninja.db.multi_db_enabled'))
return (Company::where($query_array)->first());
2021-04-12 14:15:34 +02:00
$current_db = config('database.default');
foreach (self::$dbs as $db) {
if ($company = Company::on($db)->where($query_array)->first()) {
self::setDb($company->db);
return $company;
}
}
self::setDB($current_db);
return false;
}
public static function findAndSetDbByInvitation($entity, $invitation_key)
{
2020-10-19 12:59:58 +02:00
$class = 'App\Models\\'.ucfirst(Str::camel($entity)).'Invitation';
$current_db = config('database.default');
foreach (self::$dbs as $db) {
if ($invite = $class::on($db)->whereRaw('BINARY `key`= ?', [$invitation_key])->first()) {
self::setDb($db);
return true;
}
}
self::setDB($current_db);
return false;
}
2021-05-24 12:45:31 +02:00
public static function randomSubdomainGenerator()
2021-05-24 06:24:16 +02:00
{
$current_db = config('database.default');
do {
$length = 8;
$string = '';
$vowels = array("a","e","i","o","u");
$consonants = array(
'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm',
'n', 'p', 'r', 's', 't', 'v', 'w', 'x', 'y', 'z'
);
$max = $length / 2;
for ($i = 1; $i <= $max; $i++)
{
$string .= $consonants[rand(0,19)];
$string .= $vowels[rand(0,4)];
}
}
while(!self::checkDomainAvailable($string));
self::setDb($current_db);
return $string;
}
/**
* @param $database
*/
public static function setDB(string $database) : void
{
/* This will set the database connection for the request */
config(['database.default' => $database]);
2021-04-27 08:03:21 +02:00
// for some reason this breaks everything _hard_
2021-04-27 01:44:20 +02:00
// DB::purge($database);
// DB::reconnect($database);
}
public static function setDefaultDatabase()
{
config(['database.default' => config('ninja.db.default')]);
2021-04-27 01:44:20 +02:00
// DB::purge(config('ninja.db.default'));
// DB::reconnect(config('ninja.db.default'));
}
}