This commit introduces two pipes: `inlinePowerShell`, `escapeDoubleQuotes`. The types when used together allows writing adding clean and real PowerShell scripts as they are (without inlinining or escaping them), removing the need to have hard-coded inlining/escaping. It enables writing better PowerShell, makes it easier to maintain and extend PowerShell scripts. Also allows writing more stable code with less "unseen" bugs due to manual escaping/inlining. This commit naturally reveals and fixes double quotes not being escaped in "Empty trash bin" script. This is solved by unifying the use of RunPowerShell function by all scripts using PowerShell. The function inlines and escapes the scripts as compile time to be send them to PowerShell.exe as an argument and then invokes PowerShell.exe with generated ugly code.
2.7 KiB
2.7 KiB
Templating
Benefits of templating
- Generating scripts by sharing code to increase best-practice usage and maintainability.
- Creating self-contained scripts without depending on each other that can be easily shared.
- Use of pipes for writing cleaner code and letting pipes do dirty work.
Expressions
- Expressions in the language are defined inside mustaches (double brackets,
{{and}}). - Expression syntax is inspired mainly by Go Templates.
Syntax
Parameter substitution
A simple function example:
function: EchoArgument
parameters:
- name: 'argument'
code: Hello {{ $argument }} !
It would print "Hello world" if it's called in a script as following:
script: Echo script
call:
function: EchoArgument
parameters:
argument: World
A function can call other functions such as:
-
function: CallerFunction
parameters:
- name: 'value'
call:
function: EchoArgument
parameters:
argument: {{ $value }}
-
function: EchoArgument
parameters:
- name: 'argument'
code: Hello {{ $argument }} !
with
-
Skips the block if the variable is absent or empty.
-
Binds its context (
.) value of provided argument for the parameter if provided one. -
A block is defined as
{{ with $parameterName }} Parameter value is {{ . }} here {{ end }}. -
The parameters used for
withcondition should be declared as optional, otherwisewithblock becomes redundant. -
Example:
function: FunctionThatOutputsConditionally parameters: - name: 'argument' optional: true code: |- {{ with $argument }} Value is: {{ . }} {{ end }}
Pipes
- Pipes are set of functions available for handling text in privacy.sexy.
- Allows stacking actions one after another also known as "chaining".
- Just like Unix pipelines, the concept is simple: each pipeline's output becomes the input of the following pipe.
- Pipes are provided and defined by the compiler and consumed by collection files.
- Pipes can be combined with parameter substitution and with.
- ❗ Pipe names must be camelCase without any space or special characters.
- Existing pipes
inlinePowerShell: Converts a multi-lined PowerShell script to a single line.escapeDoubleQuotes: Escapes"characters to be used inside double quotes (")
- Example usages
{{ with $code }} echo "{{ . | inlinePowerShell }}" {{ end }}{{ with $code }} echo "{{ . | inlinePowerShell | escapeDoubleQuotes }}" {{ end }}