mirror of
https://github.com/getnamingo/registry.git
synced 2025-05-30 01:10:09 +02:00
95 lines
No EOL
2.6 KiB
PHP
95 lines
No EOL
2.6 KiB
PHP
<?php
|
|
|
|
use Pinga\Db\PdoDatabase;
|
|
|
|
// Include the Delight-IM/db package
|
|
require_once __DIR__ . '/../vendor/autoload.php';
|
|
|
|
// Get the table name from the user input
|
|
$tableName = readline('Enter table name: ');
|
|
|
|
// Connect to the database using the PDO driver
|
|
$pdo = new PDO('mysql:host=localhost;dbname=my_database;charset=utf8mb4', 'my_username', 'my_password');
|
|
$db = \Pinga\Db\PdoDatabase::fromPdo($pdo);
|
|
|
|
// Get the column names and types for the specified table
|
|
$columnData = $db->select('DESCRIBE ' . $tableName);
|
|
|
|
// Create the class name based on the table name (e.g. "users" -> "User")
|
|
$className = ucwords($tableName, '_');
|
|
|
|
// Generate the necessary lists outside of the heredoc
|
|
$columnFieldsList = implode(', ', array_map(function ($column) {
|
|
return $column['Field'];
|
|
}, $columnData));
|
|
|
|
$columnValuesList = implode(', ', array_map(function ($column) {
|
|
return '$' . $column['Field'];
|
|
}, $columnData));
|
|
|
|
$quotedColumnValuesList = implode(', ', array_map(function ($column) {
|
|
return '$' . $column['Field'] . ' = $this->db->quote($' . $column['Field'] . ');';
|
|
}, $columnData));
|
|
|
|
$setColumnsList = implode(', ', array_map(function ($column) {
|
|
return $column['Field'] . ' = $' . $column['Field'];
|
|
}, $columnData));
|
|
|
|
// Generate the PHP code for the CRUD model based on the column data
|
|
$modelCode = <<<PHP
|
|
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Pinga\Db\PdoDatabase;
|
|
|
|
class $className
|
|
{
|
|
private PdoDatabase \$db;
|
|
|
|
public function __construct(PdoDatabase \$db)
|
|
{
|
|
\$this->db = \$db;
|
|
}
|
|
|
|
public function getAll{$className}()
|
|
{
|
|
return \$this->db->select('SELECT * FROM $tableName');
|
|
}
|
|
|
|
public function get{$className}ById(\$id)
|
|
{
|
|
return \$this->db->select('SELECT * FROM $tableName WHERE id = ?', [\$id])->fetch();
|
|
}
|
|
|
|
public function create{$className}($columnValuesList)
|
|
{
|
|
$quotedColumnValuesList
|
|
|
|
\$this->db->insert('INSERT INTO $tableName ($columnFieldsList) VALUES ($columnValuesList)');
|
|
|
|
return \$this->db->lastInsertId();
|
|
}
|
|
|
|
public function update{$className}(\$id, $columnValuesList)
|
|
{
|
|
$quotedColumnValuesList
|
|
|
|
\$this->db->update('UPDATE $tableName SET $setColumnsList WHERE id = ?', [\$id]);
|
|
|
|
return true;
|
|
}
|
|
|
|
public function delete{$className}(\$id)
|
|
{
|
|
\$this->db->delete('DELETE FROM $tableName WHERE id = ?', [\$id]);
|
|
return true;
|
|
}
|
|
}
|
|
PHP;
|
|
|
|
// Save the generated PHP code to a file
|
|
file_put_contents(__DIR__ . "/../app/Models/$className.php", $modelCode);
|
|
|
|
// Output a success message
|
|
echo "CRUD model for table '$tableName' generated successfully.\n"; |