Vendor the command set the menu and shell depend on
This commit is contained in:
Executable
+62
@@ -0,0 +1,62 @@
|
||||
#!/bin/bash
|
||||
|
||||
# blob:summary=Emit every first-party and user plugin manifest as JSON
|
||||
# blob:group=plugin
|
||||
# blob:hidden=true
|
||||
|
||||
# Walks $BLOB_PATH/shell/plugins and ~/.config/blob/plugins, reads every
|
||||
# manifest.json / *.manifest.json, and emits one JSON object per plugin with
|
||||
# computed fields (sourceDir, barWidgetPath, barPath, firstParty). This is the
|
||||
# single source of truth used by bar selection and plugin enable/clone, so
|
||||
# those commands never re-implement manifest walking.
|
||||
|
||||
set -o pipefail
|
||||
|
||||
paths=()
|
||||
|
||||
while IFS= read -r manifest; do
|
||||
paths+=("$manifest")
|
||||
done < <(find "$BLOB_PATH/shell/plugins" -mindepth 2 -maxdepth 4 -type f \( -name manifest.json -o -name '*.manifest.json' \) | sort)
|
||||
|
||||
user_dir="$HOME/.config/blob/plugins"
|
||||
if [[ -d $user_dir ]]; then
|
||||
while IFS= read -r manifest; do
|
||||
paths+=("$manifest")
|
||||
done < <(find -L "$user_dir" -mindepth 2 -maxdepth 2 -type f -name manifest.json \
|
||||
! -path "$user_dir/.*/*" 2>/dev/null | sort)
|
||||
fi
|
||||
|
||||
if (( ${#paths[@]} == 0 )); then
|
||||
echo "[]"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
jq -n '
|
||||
[ inputs
|
||||
| . as $manifest
|
||||
| input_filename as $manifestPath
|
||||
| ($manifestPath | sub("/manifest.json$"; "") | sub("/[^/]+\\.manifest\\.json$"; "")) as $sourceDir
|
||||
| {
|
||||
id: ($manifest.id // ""),
|
||||
name: ($manifest.name // $manifest.id // ""),
|
||||
description: ($manifest.description // ""),
|
||||
kinds: ($manifest.kinds // []),
|
||||
firstParty: (($manifest.id // "") | startswith("blob.")),
|
||||
manifestPath: $manifestPath,
|
||||
sourceDir: $sourceDir,
|
||||
entryPoints: ($manifest.entryPoints // {}),
|
||||
barWidget: ($manifest.barWidget // null),
|
||||
bar: ($manifest.bar // null)
|
||||
}
|
||||
| .barWidgetPath = (
|
||||
if (.entryPoints.barWidget // null) != null
|
||||
then (.sourceDir + "/" + .entryPoints.barWidget)
|
||||
else null end)
|
||||
| .barPath = (
|
||||
if (.entryPoints.bar // null) != null
|
||||
then (.sourceDir + "/" + .entryPoints.bar)
|
||||
else null end)
|
||||
| select(.id != "")
|
||||
]
|
||||
| unique_by(.id)
|
||||
' "${paths[@]}"
|
||||
Reference in New Issue
Block a user