mirror of
https://github.com/rwinkhart/MUTN.git
synced 2026-08-27 20:36:29 -04:00
51 lines
1.8 KiB
PowerShell
51 lines
1.8 KiB
PowerShell
Class libmuttonEntries : System.Management.Automation.IValidateSetValuesGenerator {
|
|
[string[]] GetValidValues() {
|
|
#$entryPath = (Resolve-Path '~/.local/share/libmutton').Path # UNIX testing
|
|
$entryPath = (Resolve-Path '~/AppData/Local/libmutton/entries').Path
|
|
$entryNames = If (Test-Path $entryPath) {(Get-ChildItem -Path $entryPath -Recurse).FullName.Substring($entryPath.Length) -replace '\\', '/'}
|
|
return [string[]] $entryNames
|
|
}
|
|
}
|
|
|
|
function MUTNArgumentCompleter {
|
|
param ( $commandName,
|
|
$parameterName,
|
|
$wordToComplete,
|
|
$commandAst,
|
|
$fakeBoundParameters )
|
|
|
|
$possibleValues = @{
|
|
add = @('password', 'note', 'folder')
|
|
copy = @('password', 'username', 'url', 'note')
|
|
edit = @('password', 'username', 'url', 'note', 'rename')
|
|
gen = @('update')
|
|
}
|
|
|
|
if ($fakeBoundParameters.ContainsKey('argument')) {
|
|
$possibleValues[$fakeBoundParameters.argument] | Where-Object {
|
|
$_ -like "$wordToComplete*"
|
|
}
|
|
} else {
|
|
$possibleValues.Values | ForEach-Object {$_}
|
|
}
|
|
}
|
|
|
|
function mutn {
|
|
[CmdletBinding()]
|
|
param (
|
|
[Parameter(Mandatory=$false, Position = 0)]
|
|
[ValidateSet([libmuttonEntries])]
|
|
[string]$entry,
|
|
|
|
[Parameter(Position = 1)]
|
|
[ArgumentCompletions('add', 'gen', 'edit', 'copy', 'shear')]
|
|
[string]$argument,
|
|
|
|
[Parameter(Position = 2)]
|
|
[ArgumentCompleter({ MUTNArgumentCompleter @args })]
|
|
[string]$option
|
|
)
|
|
#Invoke-Expression -Command ('/usr/local/bin/mutn ' + ($entry -replace ' ', '` '), $argument, $option).Trim() # UNIX testing
|
|
Invoke-Expression -Command ('mutn.exe ' + ($entry -replace ' ', '` '), $argument, $option).Trim()
|
|
}
|