Extensible CLI
Project description
Table of Contents generated with DocToc
Overview
As systems engineers, we spend much of our time on our command-line terminals interacting with a myriad of systems in support of the overarching infrastructure.
Our daily tasks can often be repetitive, which is why we often find ourselves utilizing or creating automation to lessen our keystrokes.
This brings us to a question:
- What do you get when each member of a team of engineers has an affinity
for creating their own little scripts to make their lives easier?
Hint: It's something messy.
The ecli app aims to clean up this proclivity for command-line mess in the team setting by unifying disparate pieces of automation into a single entrypoint, thus creating a homogenous command-line experience.
This is accomplished by a modular design that can accomodate just about any executable piece of code.
The following sections go over this in detail.
Design
The ecli app is made up of two major components:
- A base command module written in python
- Plugins that extend the base command module
The plugin system essentially allows contributers to define namespaces of commands, along with their corresponding subcommands.
Features
- Commands are executables organized by subfolders in a given plugin directory
(See the Appendix for list of supported executable types) - Subfolders are interpreted as the namespace name for
the given scripts/executables contained therein - Subcommands follow a dot-notation style of reference, e.g.
pluginfolder.namespace.command 1
Installation
Prerequisites
You'll need python3 & pip for the pip distribution.
To install,
- For Windows:
- choco
- Start an elevated powershell prompt and run the following commands:
Set-Variable -Name "ChocolateyInstall" -Value "$(Join-Path -Path $Env:LocalAppData -ChildPath chocolatey)"
New-Item $ChocolateyInstall -Type Directory -Force
[Environment]::SetEnvironmentVariable("ChocolateyInstall", $ChocolateyInstall)
Set-ExecutionPolicy Bypass -Scope Process iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))
- Microsoft C++ Build Tools:
choco install visualstudio2017buildtools
Or Install the latest from the Microsoft Website: https://visualstudio.microsoft.com/visual-cpp-build-tools/ - python 3.7.x:
choco install python --version=3.7.4
- choco
- For Linux, just install python3 via your distro's package manager.
- For OSX, if not already present, I recommend you install
python3 via the
brew
package manager
Installing ecli
There are two distributions of the ecli
- python package: Installed via
pip3 install btecli
- The Windows bundled executable, available via Releases
Note that the bundled executable can be slow to initialize.
This is because python itself is bundled into the ecli binary
The python package runs much faster, as there
is no need unpacking resources.
Also, it has a much slower release cadence. - If you are behind a corporate proxy, and get SSL errors
when installing, try your installation command with
the
--trusted-host
flags, as with:
pip3 install \
--trusted-host=pypi.org \
--trusted-host=github.com \
--trusted-host=files.pythonhosted.org \
btecli
The next section will cover Plugins.
Plugin Architecture
As mentioned before, the ecli plugins extend the base command module. That is, for every plugin detected, a new ecli subcommand is made available.
Creating Plugins
Plugins are really easy to create, as they are simply executable files neatly organized into folders bearing the name of the plugin's namespace.
You need only enough proficiency to write a script in either bash,
python, powershell, or ruby to get started.
I will eventually add binaries (e.g. golang, Windows .exe's)
and rust to the mix.
Installing Plugins
Invoke the plugins.install
built-in subcommand to install a
given plugin repo. The syntax is ecli plugins.install -S -r <gitrepo>
.
You can install my plugin repo to start:
ecli plugins.install -S -r https://github.com/berttejeda/bert.ecli.plugins.git -a ecli.plugins
Once you've installed a plugin repo, run ecli
to get
the list of newly available subcommands
The usage examples in the following sections assume you've installed the plugin repository above.
Usage examples
Usage examples - Utilizing Windows Credentials Manager
We'll be demonstrating ecli's integration with Windows Credential Manager.
The first step is to create Windows Generic Credentials a given subcommand.
You can do that by launching credential
manager via ecli: ecli system.launcher -n cred-mgr
Once the Windows Credential manager is in view,
- Click Windows Credentials
- Then click Add generic credential
- Internet or network address: {{ name_of_subcommand }}
- User name: {{ username }}
- Password: {{ password }}
With these populated, ecli should be able to read
from the Windows credential store when you
call the given subcommand with the --use-cred-mgr flag
.
Doing so will populate variables $username and $password during command runtime.
Appendix
Sub-Command naming logic
As mentioned in the previous sections, commands follow a dot-notation style of reference,
e.g. pluginfolder.namespace.command.
Of note is that the pluginfolder prefix only takes effect for
plugin folders not bearing a name similar to ecli.plugins e.g. a plugin folder
named foo will yield plugins conforming to foo.namespace.command.
However, if a plugin folder name matches the regular expression ecli.plugins[\W]+?|ecli.plugins,
its effective name will be stripped of that pattern, i.e. the following plugin folders:
- ecli.plugins
- ecli.plugins-fork
- ecli.plugins01
- ecli.plugins-02
- ecli.plugins.new
will yield sub-commands with the following dot-notation (respectively):
- namespace.command
- fork.namespace.command
- 01.namespace.command
- 02.namespace.command
- new.namespace.command
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file btecli-2.0.0.tar.gz
.
File metadata
- Download URL: btecli-2.0.0.tar.gz
- Upload date:
- Size: 39.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2b6a7f08e0cbd4a3aeadcc0cdb016e8b16ca69c2ddaeb034953dca9edb76939b |
|
MD5 | e54486f1902e662513eaf4c28dbd4a51 |
|
BLAKE2b-256 | 20ce5745e301ba1c2bcd98462393c704f3e8c6cc347b5a5164f4d61ee0dcb4f3 |
File details
Details for the file btecli-2.0.0-py3-none-any.whl
.
File metadata
- Download URL: btecli-2.0.0-py3-none-any.whl
- Upload date:
- Size: 22.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8b6c44b17a8440ec27f57ea8ca3eb1c717e074aad11199a4a4a707fca32702aa |
|
MD5 | ac673d677d950af47edb56b07dd8e855 |
|
BLAKE2b-256 | 623c2c1056172ecc2e01e943a42072c10373594399d391ca82009ebd41f533cb |