<?php

/**
 * This file is part of the PHPLucidFrame library.
 * The script executes the command `php lucidframe secret:generate [options]`
 *
 * @package     PHPLucidFrame\Console
 * @since       PHPLucidFrame v 1.11.0
 * @copyright   Copyright (c), PHPLucidFrame.
 * @author      Sithu K. <*****@*****.**>
 * @link        http://phplucidframe.com
 * @license     http://www.opensource.org/licenses/mit-license.php MIT License
 *
 * This source file is subject to the MIT license that is bundled
 * with this source code in the file LICENSE
 */
_consoleCommand('secret:generate')->setDescription('Generate a secret hash key')->addOption('method', 'm', 'The hashing algorithm method (e.g. "md5", "sha256", etc..)', 'md5')->addOption('data', 'd', 'Secret text to be hashed.')->setDefinition(function (\LucidFrame\Console\Command $cmd) {
    $data = $cmd->getOption('data');
    if (!$data) {
        $data = time();
    }
    $secret = hash($cmd->getOption('method'), $data) . "\n";
    $file = INC . '.secret';
    file_put_contents($file, $secret);
})->register();
 *
 * Arguments:
 *      db      The database namespace defined in $lc_databases of config.php [default: "default"]
 *
 * @package     PHPLucidFrame\Console
 * @since       PHPLucidFrame v 1.14.0
 * @copyright   Copyright (c), PHPLucidFrame.
 * @author      Sithu K. <*****@*****.**>
 * @link        http://phplucidframe.com
 * @license     http://www.opensource.org/licenses/mit-license.php MIT License
 *
 * This source file is subject to the MIT license that is bundled
 * with this source code in the file LICENSE
 */
use LucidFrame\Core\SchemaManager;
_consoleCommand('schema:load')->setDescription('Process the schema and import the database')->addArgument('db', 'The database namespace defined in $lc_databases of config.php', 'default')->setDefinition(function (\LucidFrame\Console\Command $cmd) {
    $db = $cmd->getArgument('db');
    $schema = _schema($db);
    if ($schema === null) {
        _writeln('Failed to load schema.');
    } elseif ($schema === false) {
        _writeln('Unable to find the schema file "%s".', DB . 'schema.' . $db . '.php');
    } else {
        if ($cmd->confirm('The database will be purged. Type "y" or "yes" to continue:')) {
            $sm = new SchemaManager($schema);
            if ($sm->import($db)) {
                _writeln('Schema is successfully loaded. The database for "%s" has been imported.', $db);
            } else {
                _writeln('No schema is loaded.');
            }
        } else {
 *
 * Usage:
 *      db:seed [options] [<db>]
 *
 * Arguments:
 *      db      The database namespace defined in $lc_databases of config.php [default: "default"]
 *
 * @package     PHPLucidFrame\Console
 * @since       PHPLucidFrame v 1.14.0
 * @copyright   Copyright (c), PHPLucidFrame.
 * @author      Sithu K. <*****@*****.**>
 * @link        http://phplucidframe.com
 * @license     http://www.opensource.org/licenses/mit-license.php MIT License
 *
 * This source file is subject to the MIT license that is bundled
 * with this source code in the file LICENSE
 */
use LucidFrame\Core\Seeder;
_consoleCommand('db:seed')->setDescription('Initial seeding of your database with default data or sample data')->addArgument('db', 'The database namespace defined in $lc_databases of config.php', 'default')->setDefinition(function (\LucidFrame\Console\Command $cmd) {
    $db = $cmd->getArgument('db');
    if ($cmd->confirm('The seeding tables will be purged. Type "y" or "yes" to continue:')) {
        $seeder = new Seeder($db);
        if ($seeder->run()) {
            _writeln('Seeded for "%s".', $db);
        } else {
            _writeln('Not seeded.');
        }
    } else {
        _writeln('Aborted.');
    }
})->register();
 *
 * Arguments:
 *      db      The database namespace defined in $lc_databases of config.php [default: "default"]
 *
 * @package     PHPLucidFrame\Console
 * @since       PHPLucidFrame v 1.16.0
 * @copyright   Copyright (c), PHPLucidFrame.
 * @author      Sithu K. <*****@*****.**>
 * @link        http://phplucidframe.com
 * @license     http://www.opensource.org/licenses/mit-license.php MIT License
 *
 * This source file is subject to the MIT license that is bundled
 * with this source code in the file LICENSE
 */
use LucidFrame\Core\SchemaManager;
_consoleCommand('schema:build')->setDescription('Build the schema in /db/build/')->addArgument('db', 'The database namespace defined in $lc_databases of config.php', 'default')->setDefinition(function (\LucidFrame\Console\Command $cmd) {
    $db = $cmd->getArgument('db');
    $schema = _schema($db);
    if ($schema === null) {
        _writeln('Failed to load schema.');
    } elseif ($schema === false) {
        _writeln('Unable to find the schema file "%s".', DB . 'schema.' . $db . '.php');
    } else {
        $sm = new SchemaManager($schema);
        if ($sm->build($db)) {
            _writeln('The schema has been build at "db/build/schema.%s.inc".', $db);
        } else {
            _writeln('No schema is loaded.');
        }
    }
})->register();
<?php

/**
 * This file is part of the PHPLucidFrame library.
 * The script executes the command `php lucidframe list [options]`
 *
 * @package     PHPLucidFrame\Console
 * @since       PHPLucidFrame v 1.12.0
 * @copyright   Copyright (c), PHPLucidFrame.
 * @author      Sithu K. <*****@*****.**>
 * @link        http://phplucidframe.com
 * @license     http://www.opensource.org/licenses/mit-license.php MIT License
 *
 * This source file is subject to the MIT license that is bundled
 * with this source code in the file LICENSE
 */
_consoleCommand('list')->setDescription('List all available commands')->setDefinition(function (\LucidFrame\Console\Command $cmd) {
    $cmd->showHelp();
    _writeln();
    _writeln('Available commands:');
    $table = _consoleTable();
    $commands = _consoleCommands();
    foreach ($commands as $name => $command) {
        $table->addRow()->addColumn($name)->addColumn($command->getDescription());
    }
    $table->hideBorder();
    $table->setPadding(2);
    $table->display();
})->register();