mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/portal.git
synced 2026-08-19 04:23:59 +00:00
Initial commit
This commit is contained in:
@@ -0,0 +1,86 @@
|
||||
<?php
|
||||
|
||||
namespace App\Classes\CodeGenerator\Generators;
|
||||
|
||||
use App\Classes\CodeGenerator\Common\CommandData;
|
||||
use App\Classes\CodeGenerator\Utils\FileUtil;
|
||||
use Illuminate\Support\Str;
|
||||
|
||||
/**
|
||||
* Class SeederGenerator.
|
||||
*/
|
||||
class SeederGenerator extends BaseGenerator
|
||||
{
|
||||
/** @var CommandData */
|
||||
private $commandData;
|
||||
|
||||
/** @var string */
|
||||
private $path;
|
||||
private $fileName;
|
||||
|
||||
/**
|
||||
* ModelGenerator constructor.
|
||||
*
|
||||
* @param CommandData $commandData
|
||||
*/
|
||||
public function __construct(CommandData $commandData)
|
||||
{
|
||||
parent::__construct();
|
||||
|
||||
$this->commandData = $commandData;
|
||||
$this->path = $commandData->config->pathSeeder;
|
||||
$this->fileName = Str::studly($this->commandData->config->mPlural).'TableSeeder.php';
|
||||
}
|
||||
|
||||
public function generate()
|
||||
{
|
||||
$templateData = $this->generatorHelpers->get_template('Seeds.model_seeder');
|
||||
|
||||
$templateData = $this->generatorHelpers->fill_template($this->commandData->dynamicVars, $templateData);
|
||||
|
||||
FileUtil::createFile($this->path, $this->fileName, $templateData);
|
||||
|
||||
$this->commandData->commandComment("\nSeeder created: ");
|
||||
$this->commandData->commandInfo($this->fileName);
|
||||
}
|
||||
|
||||
public function updateMainSeeder()
|
||||
{
|
||||
$mainSeederContent = file_get_contents($this->commandData->config->pathDatabaseSeeder);
|
||||
|
||||
$newSeederStatement = '$this->call('.$this->commandData->config->mPlural.'TableSeeder::class);';
|
||||
|
||||
if (strpos($mainSeederContent, $newSeederStatement) != false) {
|
||||
$this->commandData->commandObj->info($this->commandData->config->mPlural.'TableSeeder entry found in DatabaseSeeder. Skipping Adjustment.');
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
$newSeederStatement = $this->generatorHelpers->generator_tabs(2).$newSeederStatement.$this->generatorHelpers->generator_nl();
|
||||
|
||||
preg_match_all('/\\$this->call\\((.*);/', $mainSeederContent, $matches);
|
||||
|
||||
$totalMatches = count($matches[0]);
|
||||
$lastSeederStatement = $matches[0][$totalMatches - 1];
|
||||
|
||||
$replacePosition = strpos($mainSeederContent, $lastSeederStatement);
|
||||
|
||||
$mainSeederContent = substr_replace($mainSeederContent, $newSeederStatement, $replacePosition + strlen($lastSeederStatement) + 1, 0);
|
||||
|
||||
file_put_contents($this->commandData->config->pathDatabaseSeeder, $mainSeederContent);
|
||||
$this->commandData->commandComment('Main Seeder file updated.');
|
||||
}
|
||||
|
||||
public function rollback()
|
||||
{
|
||||
if ($this->rollbackFile($this->path, $this->fileName)) {
|
||||
$this->commandData->commandComment('Seeder file deleted: '.$this->fileName);
|
||||
}
|
||||
|
||||
$mainSeederContent = file_get_contents($this->commandData->config->pathDatabaseSeeder);
|
||||
$mainSeederContent = str_replace('$this->call('.$this->commandData->config->mPlural.'TableSeeder::class);', '', $mainSeederContent);
|
||||
file_put_contents($this->commandData->config->pathDatabaseSeeder, $mainSeederContent);
|
||||
$this->commandData->commandComment('Main Seeder file updated.');
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user