Created
August 18, 2022 01:02
-
-
Save bayareawebpro/f074b177a6881b5b0747617e45c30040 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php declare(strict_types=1); | |
namespace App\Tenant; | |
use App\Models\User; | |
use Illuminate\Config\Repository; | |
use Illuminate\Support\Facades\Storage; | |
use Illuminate\Support\Facades\Artisan; | |
use Illuminate\Database\Eloquent\Model; | |
use \Illuminate\Database\DatabaseManager; | |
use Illuminate\Database\ConnectionInterface; | |
use Illuminate\Contracts\Filesystem\Filesystem; | |
class Manager | |
{ | |
protected User $user; | |
protected Repository $config; | |
protected DatabaseManager $database; | |
protected string|int $tenant_id; | |
protected string|null $partition = null; | |
protected string $connectionName = "tenant"; | |
protected string $defaultDatabase = "tenant"; | |
protected string $defaultConnection = "mysql"; | |
public function __construct( | |
string|int $key, | |
Repository $config, | |
DatabaseManager $database, | |
) | |
{ | |
$this->tenant_id = $key; | |
$this->partition = "tenant_{$key}"; | |
$this->database = $database; | |
$this->config = $config; | |
} | |
public static function fromModel(Model $model): self | |
{ | |
return app(static::class, [ | |
'key' => $model->getKey() | |
]); | |
} | |
public static function tenant(string $key): self | |
{ | |
return app(static::class, [ | |
'key' => $key | |
]); | |
} | |
public function connect(bool $default = false): self | |
{ | |
$this->config->set('database.connections.tenant.database', $this->partition); | |
if ($default) { | |
$this->config->set('database.default', $this->connectionName); | |
} | |
$this->database->reconnect($this->connectionName); | |
$this->database->reconnect($this->defaultConnection); | |
return $this; | |
} | |
public function disconnect(): self | |
{ | |
$this->config->set('database.default', $this->defaultConnection); | |
$this->config->set('database.connections.tenant.database', $this->defaultDatabase); | |
$this->database->reconnect($this->connectionName); | |
$this->database->reconnect($this->defaultConnection); | |
return $this; | |
} | |
public function database(): ConnectionInterface | |
{ | |
return $this->database->connection($this->connectionName); | |
} | |
public function databaseExists(): bool | |
{ | |
return count($this->database->select(<<<SQL | |
SELECT SCHEMA_NAME FROM INFORMATION_SCHEMA.SCHEMATA WHERE SCHEMA_NAME = '{$this->partition}' | |
SQL)) > 0; | |
} | |
public function createDatabase(): self | |
{ | |
$charset = $this->config->get("database.connections.mysql.charset", 'utf8'); | |
$collate = $this->config->get("database.connections.mysql.collation", 'utf8_unicode_ci'); | |
$this->database->statement("CREATE DATABASE {$this->partition} CHARACTER SET {$charset} COLLATE {$collate}"); | |
return $this; | |
} | |
public function dropDatabase(): self | |
{ | |
$this->database->statement("DROP DATABASE {$this->partition}"); | |
return $this; | |
} | |
public function migrateDatabase(): self | |
{ | |
Artisan::call('migrate:fresh', [ | |
'--realpath' => database_path('migrations/tenant'), | |
'--database' => $this->connectionName, | |
'--force' => true, | |
]); | |
return $this; | |
} | |
public function hasStoragePartition(): bool | |
{ | |
return $this->rootStorage()->exists($this->partition); | |
} | |
public function makeStoragePartition(): bool | |
{ | |
return $this->rootStorage()->makeDirectory($this->partition); | |
} | |
public function deleteStoragePartition(): bool | |
{ | |
return $this->rootStorage()->deleteDirectory($this->partition); | |
} | |
public function storage(): Filesystem | |
{ | |
if(!$this->hasStoragePartition()){ | |
$this->makeStoragePartition(); | |
} | |
return Storage::build([ | |
'driver' => 'local', | |
'root' => storage_path("tenants/{$this->partition}"), | |
]); | |
} | |
public function rootStorage(): Filesystem | |
{ | |
return Storage::build([ | |
'driver' => 'local', | |
'root' => storage_path("tenants"), | |
]); | |
} | |
public function storagePath(string $path): string | |
{ | |
return storage_path("tenants/{$this->partition}/{$path}"); | |
} | |
public function connectionName(): string | |
{ | |
return $this->connectionName; | |
} | |
public function partitionName(): string | |
{ | |
return $this->partition; | |
} | |
public function tenantId(): string|int | |
{ | |
return $this->tenant_id; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment