dpeuscher/alfred-symfony-tools

2.0.5 2018-06-17 16:03 UTC

This package is auto-updated.

Last update: 2024-04-18 04:21:09 UTC


README

Build Status codecov FOSSA Status

alfred-symfony-tools

Toolkit for integrating Alfred workflows with Symfony4 Frameworks Commands

This toolkit helps if you want to use the Symfony Command-Structure with Alfred workflows. You can easily add ways to autocomplete parameters without thinking too much about the idea that Alfred workflows will start a new process everytime you type something. Also there is a Command that you can extend from to allow you setting .env-Parameters via Alfred.

Autocomplete Lists

To provide the user of your Alfred workflow with an easy way to navigate through his options, you have to provide a list of allowed values for your arguments. With that the user can easily walk through all options with the Alfred interface.

To create a Command that is capable of this, you need to extend from either Dpeuscher\AlfredSymfonyTools\CommandExtension\AlfredInteractiveContainerAwareCommand or Dpeuscher\AlfredSymfonyTools\CommandExtension\AlfredInteractiveCommand. You have then the ability to either define the allowed values while defining the argument in the configure()-method (good for static arguments, whose values are hardcoded) or later in the initialize()-method of the Command.

Hard coded argument-lists

    protected function configure()
    {
        $this
            ->setName('commandname')
            ->addArgument('arg1', InputArgument::OPTIONAL, ['option1', 'option2'])
            ->addArgument('arg2', InputArgument::OPTIONAL, 
                ['shortoption2.1' => 'longoption2.1', 'shortoption2.2' => 'longoption2.2'])
            ->addArgument('arg3', InputArgument::OPTIONAL, ['option3.1'], true)
            ->addArgument('arg4', InputArgument::OPTIONAL)
            ->addArgument('arg5', InputArgument::OPTIONAL + InputArgument::IS_ARRAY);
    }

You can see that it is possible to use numeric or associative option-lists. If you use numeric lists (arg1), the selector willbe defined automatically by the first combination of words that identify your option. For associative lists (arg2) the keys will be used as identifier. You can allow to add selections that are not in the list by setting the $allowNew-parameter to true (arg3). Also it is possible that you mix autocomplete-arguments with general ones (arg4, arg5).

Dynamically loaded argument-lists

    protected function initialize(InputInterface $input, OutputInterface $output)
    {
        $options4 = $this->getContainer()->getParameter('options4');
        $this->addArgumentsAllowedValues('arg4', $options4);
    }

Since the container is not available in the configure()-method, you might want to add options in the initialize()-method from parameters that are set in the config or .env file. You can to that with the addArgumentsAllowedValues()-method that also supports the $allowNew-parameter.

Execution operations

Now you want to be able to handle different inputs differently. There are predefined input-handlers for the autocomplete arguments, but you can easily override them with the addInputHandler($setArguments, $handlerCallable)-method. Just define for which set of arguments you want to define a handler and define it. The handler itself can be a closure or a method within the Command-class. It gets an array of the given variables and possible autocomplete-values and the result of the generic result as a parameter so you can get started pretty quick in changing the result. If you don't return something it will default to the (possibly aligned) genericResult-entry from the arguments-array.

To set the titles of the options of arg3 to have a leading uppercase letter when you had selected option1 as arg1 you could do something like this:

    protected function initialize(InputInterface $input, OutputInterface $output)
    {
        // ...
        $this->addInputHandler(['arg1', 'arg2'], function ($arguments) {
            if ($arguments['arg1'] === 'option1') {
                foreach ($arguments['genericResults'] as $result) {
                    $result->setTitle(ucwords($result->getTitle()));
                }
            }
        });
    }

The order of the parameters matters. ['arg2', 'arg1'] in the upper example will never match!

The WorkflowResult-class is only a representation for the format of the Alfred workflow json definition. It supports the following method:

  • uid
  • title
  • subtitle
  • quicklookurl
  • type
  • valid
  • icon
  • autocomplete
  • largetype
  • arg
  • copy

To understand their meaning please look into the Alfred documentation. As an addition, if you provide a url as an icon, WorkflowHelper will copy it to your tmp folder (that you can change in the constructor), formats it and uses it, since Alfred itself can only handle local images.

ConfigureCommand

To use the ConfigureCommand to write data into your .env-file you have to extend it in your commands-folder to make it dispatchable. You then have to define which Variables you want to be able to change via Alfred and define them in your configuration at the key configValues. It should be a numeric array, that has the names of the variables as values. If you want to define an array, add [] behind its name.

    configValues:
      - CONFIG1
      - CONFIG2
      - CONFIGARRAY3[]

You can then set these values if you call the route config in your application.

DotEnvEditor

To use the ConfigureCommand you have to create a special config, that has be to named dotenveditor.php and should be in your config/-folder. If you want to set it somewhere else you can do so by setting the config parameter configDotEnvFileConfiguration to the path where it can be found. the file needs to return an array with at least the key pathToEnv that links to your .env-file. You can optionally provide a backupPath for backups. An example file for the default configuration would be:

config/dotenveditor.php:

<?php

$root = dirname(__DIR__);

return [
    'pathToEnv'  => $root . '/.env',
    'backupPath' => $root . '/var/backups/',
];

Alfred Workflow

alfred.php

To properly work, you need a special alfred-bin file. It should not have the shebang-line of the bin/console script in it, because that would break the valid json-output. Therefor the easiest way would be to copy the bin/console to bin/alfred.php. You can also use the provided alfred.php in the example-folder of this repository.

To have a proper escaping, you should add these lines underneath the use-statements of the console-file (the alfred.php in the examples folder has it already):

if (!isset($alfredArgv)) {
    $alfredArgv = implode(' ', $argv);
}

$_SERVER['argv'] = explode(' ', iconv("UTF-8-MAC", "UTF-8", $alfredArgv));

$argv = $_SERVER['argv'];

Creating the workflow

You create a new Alfred workflow by clicking on the "+" in the bottom bar and select "Blank Workflow". After that, select your workflow and right click into the empty space, click on "Input" and select "Script Filter". Double-click the "Script Filter" item on the page and define a placeholder. Configure the placeholder-stuff as you like. Use the following script to have the dispatching working:

$alfredArgv = "bin/console command {query}";

include 'bin/alfred.php';

You have to select "/usr/bin/php" as Language, "with input as {query}", tick "Double Quotes", "Backslashes" and "Dollars" in the "Escaping"-Selection on the bottom.

Input Filter look

Replace the "command" in the script and keyword section by the command you want to have

Tips

Environment variables

The output commands can use variables, that you pass in the variables()-method of the WorkflowHelper-Class to work with it. You can access it in the command as a protected parameter $workflowHelper:

    protected function initialize(InputInterface $input, OutputInterface $output)
    {
        $this->workflowHelper->variable('var', 'value');
    }

In the connected script, you can access it by calling environment variables. Here are a few ways to access:

  • Applescript
(do shell script "echo $var")
  • Bash
echo ${var}
  • PHP
echo $_ENV['var'];

Config command

Activate "Argument Optional" instead of "Argument Required". The script for the config looks like this:

$alfredArgv = "bin/console config {query}";

include 'bin/alfred.php';

It is connected to a "Run Script" item with the following script:

$alfredArgv = "bin/console config -x {query}";

include 'bin/alfred.php';

The rest of the settings of the "Run Script" should look like the "Script Input" item.

Example

Find a proof-of-concept here: dpeuscher/alfred-movie-rating

License

FOSSA Status