Skip to content

Access composer and Symfony console tool remotely without terminal/SSH access

License

Notifications You must be signed in to change notification settings

eugenmihailescu/symfony-shell

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 

Repository files navigation

symfony-shell

Access composer and Symfony's bin/console tool remotely without terminal/SSH access.

Requirements

If the composer is not registered globally then we expect to find it in the same directory as symfony-shell.php script having the name composer or composer.phar.

Installation

Just copy (or git clone) the symfony-shell.php to your remote web document location (eg. /public_html/).

How to use

Once you wrote an extension PHP script (see below) all you need to to is to run that script either at a CLI terminal or on your browser.

Example:

php /path/to/extension/symfony-post-deploy.php

or on the browser:

http://localhost/symfony-post-deploy.php

When you run the extension via the CLI terminal the symfony-shell assumes the COMPOSER_HOME to be located into your home directory, the .composer subdirectory.

What is your home directory when you run this script on the browser? Well that's the web server daemon user home directory (eg. apache), which probably does not exist and nor the .composer subdirectory. In that case you can pass the Composer's home directory value by sending along the URL a special request parameter called composer_home like this:

http://localhost/symfony-post-deploy.php?`composer_home`=url-encoded-composer-home-dir

By url-encoded-composer-home-dir I mean a string that encodes all non-alphanumeric characters (read more here).

Example:

The encoded string /home/eugen/.composer should look like this:

%2Fhome%2Feugen%2F.composer

where all non-alphanumeric ASCII where encoded to HEXA prefixed by %.

Extension

In order to tell the Composer or Symfony what to do you have to write an extension.

The extension is just a regular PHP script where you register one/more hook functions and finally you call the built-in run function which will run one-by-one each registered hook.

A hook function is a callable PHP function (anything that can be run via call_user_func where you can do whatever you want but additionally it should call either the built-in run_composer or run_symfony_console functions which allows you to run a Composer or Symfony command by specifying the command arguments.

The output of each hook function (ie. of each hooked Composer/Symfony command) will be displayed on a built-in HTML terminal.

run_composer

This built-in function allows you to run a Composer command with a variable number of arguments.

Syntax:

/**
 * Execute a Composer command
 *
 * @param string $composer_cmd
 *        	The Composer command to run (eg. install, update, etc)
 * @param array $composer_args
 *        	An argument=value array of arguments for the Composer command
 * @param string $return_output
 *        	When false the output is echoed, otherwise is not.
 * @return Returns the array the lines of output for STDOUT, STDERR file descriptors
 */
run_composer($composer_cmd, $composer_args = array(), $return_output = false)	

Example:

run_composer('install',array('no-dev'=>null,'working-dir'=>'/the/working/dir'));
run_symfony_console

This built-in function allows you to run a Symfony bin/console with a variable number of arguments.

Syntax:

/**
 * Execute a Symfony console command
 *
 * @param string $symfony_cmd
 *        	The Symfony console command to run (eg. cache:clear, assetic:dump, etc)
 * @param array $symfony_args
 *        	An argument=value array of arguments for the Symfony console command
 * @param string $return_output
 *        	When false the output is echoed, otherwise is not.
 * @return Returns the array the lines of output for STDOUT, STDERR file descriptors
 */
run_symfony_console($symfony_cmd, $symfony_args = array(), $return_output = false)

Example:

run_symfony_console('cache:clear',array('no-warmup'=>null,'env'=>'prod'));
register_hook

This built-in function allows you to register your custom hook function that normally should call one of the above run_composer or run_symfony_console function although your hook function may do whatever you want.

Syntax:

/**
 * Register a function to be executed on terminal
 *
 * @param callable $callback        	
 * @param mixed $arguments
 *        	A variable number of arguments that are dynamically detected
 * @see run()
 */
function register_hook($callback, [$arguments])

Example:

// composer_install is just a custom function (see the complete example below)
register_hook('composer_install');
run

This built-in funciton allow you to run the registered hook functions in their registration order.

Syntax:

/**
 * Run the registered functions on terminal
 *
 * @see register_hook()
 *
 * @param bool $ignore_errors
 *        	When true continue the execution by ignoring the hook execution exit codes, otherwise return
 *        	
 * @return bool Returns true if ALL the hooks succeeded, false otherwise
 *        
 */
function run($ignore_errors = false) 

A complete extension example

<?php
require_once 'symfony-shell.php';

// the hook function
function composer_install() {
	// the composer arguments for install command
    $args = array (
			'no-dev' => null,
			'optimize-autoloader' => null 
	);
	
	// run the composer install command 
	$output = SymfonyShell\run_composer ( 'install', $args );
	
	// echo the composer install command output to the built-in HTML terminal
	SymfonyShell\echoTerminaCmd ($output);
	
	// contains the command exec exit code
	return $output[4];
}

// register the hook function
SymfonyShell\register_hook ( 'composer_install' );

// run will exit on the first error
$ignore_errors = false;

// finally run the registered hook functions
SymfonyShell\run ($ignore_errors);

?>

IMAGE ALT TEXT

See the symfony-post-deploy.php sample hook extension.

About

Access composer and Symfony console tool remotely without terminal/SSH access

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages