1.1.1releasedConsole

Provides access to the Symphony core from the command line.

Clone URLhttps://github.com/pointybeard/console.git

Add as a submodulegit submodule add https://github.com/pointybeard/console.git extensions/console --recursive

Compatibility

2.x.x2.1.x2.2.x2.3.x2.4.x2.5.x2.6.x2.7.02.7.12.7.22.7.32.7.42.7.52.7.62.7.72.7.82.7.92.7.10
NoNoNoNoNoNoNo1.1.01.1.01.1.01.1.01.1.01.1.01.1.01.1.01.1.01.1.01.1.1

Readme

Console Extension for Symphony CMS

A Symphony CMS extension that provides access to the Symphony core from the command-line.

Developers can include commands in their extensions, allowing for operations not suited to a web frontend. The command API gives straightforward access to the Symphony core framework, including database, config, authentication, and logs.

Installation

This is an extension for Symphony CMS. Add it to the /extensions folder of your Symphony CMS installation, then enable it though the interface.

Requirements

This extension requires PHP7.2 or later.

Optional Setup

To simply accessing Symphony commands on the command line, it is recommend to do the following:

  1. Make the bin/symphony script executable with chmod +x extensions/console/bin/symphony
  2. Add extensions/console/bin/symphony to your PATH or create a symbolic link in a location that resides in the PATH e.g. /usr/local/sbin. This will allow you to call the Symphony command from anywhere.

Usage

From the console, you can run the following command

php -f /path/to/extensions/console/bin/symphony -- [args]

For help information, use --help or -h. E.G.

php -f /path/to/extensions/console/bin/symphony -- --help

or, if you followed the "Optional Setup" above, just

symphony --help

This remainder of this document assumes you have set up the extension using the "Optional Setup" steps above.

Getting Started

The Console extension looks for commands in the bin/ folder of extensions you have installed, and also in workspace/bin/. You can see a list of commands by running symphony without any arguments. A list like this will be displayed:

The following commands are avaialble (try `--help` for individual command usage information):

* console
  - token
  - hello

At any time you can use --help to get detailed usage information. If you have also specified a command (see below), you will get help for that particular command instead.

Use the EXTENSION and COMMAND arguments to run a particular command. This extension comes with two commands out of the box: hello and token.

To run the hello command use the following:

bin/symphony console hello --nope

You should see output like this:

Hello! Here are the arguments & options available

ARGUMENTS
 1: extension => console
 2: command => hello

OPTIONS & FLAGS

UNRECOGNISED
nope => true

Authentication

Some commands may require you are authenticated before you use them. To do this, either provide the name of the user you want to authenticate as with -u <username> or the auth token of that user with -t <token>. When using -u, you will be prompted to enter your password.

Writing a custom command

To write a command, create a class that extends pointybeardSymphonyExtensionsConsoleAbstractCommand and place it into workspace/commands/. Alternatively, put it into the commands/ folder of any Extension.

Any command you write must have a namespace starting with pointybeardSymphonyExtensionsConsoleCommands followed by the name of your extension (e.g. namespace pointybeardSymphonyExtensionsConsoleCommandsMyExtension) or workspace (i.e. namespace pointybeardSymphonyExtensionsConsoleCommandsWorkspace).

Here is an example of a very basic Command called test.php placed in workspace/commands/:

```php <?php

declare(strict_types=1);

namespace pointybeardSymphonyExtensionsConsoleCommandsWorkspace;

use pointybeardSymphonyExtensionsConsole; use pointybeardHelpersCli; use pointybeardHelpersCliInput;

class Test extends ConsoleAbstractCommand { public function construct() { parent::construct(); $this ->description('a really simple test command') ->version('1.0.0') ->example( 'symphony workspace test' ) ; }

public function execute(InputInterfacesInputHandlerInterface $input): bool
{
    (new CliMessageMessage())
        ->message('Greetings. This is the test command!')
        ->display()
    ;

    return true;
}

}

```

From within the execute() method, you have full access to the Symphony core framework. For example, to get the database object, use Symphony::Database(). Anything you would normally do in an extension, you can do here (e.g. triggering delegates, accessing sections or fields).

Requiring Authentication

You can secure your commands so that anyone using it must provide valid Symphony author credentials. To do this, in addition to extending pointybeardSymphonyExtensionsConsoleAbstractCommand, implement the pointybeardSymphonyExtensionsConsoleInterfacesAuthenticatedCommandInterface interface. When your command is run, Console will notice and force the user to provide a authentication with -u or -t.

When implementing AuthenticatedCommandInterface, you must provide an authenticate() method in your command. The simplest way is to use the hasCommandRequiresAuthenticateTrait trait. It includes a boilerplate authenticate() method and generally is perfectly adequate. It will check if the user is logged in and throw an AuthenticationFailedException if not.

Here is the same 'test.php' command from above, but this time it requires authentication:

```php <?php

declare(strict_types=1);

namespace pointybeardSymphonyExtensionsConsoleCommandsWorkspace;

use pointybeardSymphonyExtensionsConsole; use pointybeardHelpersCli; use pointybeardHelpersCliInput;

class Test extends ConsoleAbstractCommand implements ConsoleInterfacesAuthenticatedCommandInterface { use ConsoleTraitshasCommandRequiresAuthenticateTrait;

public function __construct()
{
    parent::__construct();
    $this
        ->description('a really simple test command')
        ->version('1.0.0')
        ->example(
            'symphony workspace test'
        )
    ;
}

public function execute(InputInterfacesInputHandlerInterface $input): bool
{
    (new CliMessageMessage())
        ->message('Greetings. This is the test command!')
        ->display()
    ;

    return true;
}

}

```

Multiple Symphony installations on the same Host

Note that if you follow the "Optional Steps" above, running symphony will always be in the context of that one particular installation.

If you run multiple sites across multiple installations of Symphony, remember that the Console extension will work with only the installation of Symphony it itself was installed and enabled on.

A solution is to place the Console extension folder outside of the Symphony CMS install, symlink the it into each extensions/ folder per install of Symphony, and provide the path to Symphony at run-time with $SYMPHONY_DOCROOT.

E.g.

One install of Symphony is called banana and another called apple. The same Console extension folder, which is in ~/source, is symlink'd accordingly into the extensions folder. ``` ## ln -s ~/source/console /var/www/symphony-banana/extensions/ SYMPHONY_DOCROOT=/var/www/symphony-banana symphony

## ln -s ~/source/console /var/www/symphony-apple/extensions/
SYMPHONY_DOCROOT=/var/www/symphony-apple symphony

```

Using SYMPHONY_DOCROOT like this gives the Console extension context and will load up the correct install of Symphony at run-time.

Support

If you believe you have found a bug, please report it using the GitHub issue tracker, or better yet, fork the library and submit a pull request.

Contributing

We encourage you to contribute to this project. Please check out the Contributing documentation for guidelines about how to get involved.

License

"Console Extension for Symphony CMS" is released under the MIT License.

Version history

Requires Symphony 2.7.10

Requires Symphony 2.7

Requires Symphony 2.7

Requires Symphony 2.7