mirror of
https://github.com/navidrome/navidrome.git
synced 2026-04-28 03:19:38 +00:00
Some checks are pending
Pipeline: Test, Lint, Build / Get version info (push) Waiting to run
Pipeline: Test, Lint, Build / Lint Go code (push) Waiting to run
Pipeline: Test, Lint, Build / Test Go code (push) Waiting to run
Pipeline: Test, Lint, Build / Test JS code (push) Waiting to run
Pipeline: Test, Lint, Build / Lint i18n files (push) Waiting to run
Pipeline: Test, Lint, Build / Check Docker configuration (push) Waiting to run
Pipeline: Test, Lint, Build / Build (push) Blocked by required conditions
Pipeline: Test, Lint, Build / Build-1 (push) Blocked by required conditions
Pipeline: Test, Lint, Build / Build-2 (push) Blocked by required conditions
Pipeline: Test, Lint, Build / Build-3 (push) Blocked by required conditions
Pipeline: Test, Lint, Build / Build-4 (push) Blocked by required conditions
Pipeline: Test, Lint, Build / Build-5 (push) Blocked by required conditions
Pipeline: Test, Lint, Build / Build-6 (push) Blocked by required conditions
Pipeline: Test, Lint, Build / Build-7 (push) Blocked by required conditions
Pipeline: Test, Lint, Build / Build-8 (push) Blocked by required conditions
Pipeline: Test, Lint, Build / Build-9 (push) Blocked by required conditions
Pipeline: Test, Lint, Build / Push to GHCR (push) Blocked by required conditions
Pipeline: Test, Lint, Build / Push to Docker Hub (push) Blocked by required conditions
Pipeline: Test, Lint, Build / Cleanup digest artifacts (push) Blocked by required conditions
Pipeline: Test, Lint, Build / Build Windows installers (push) Blocked by required conditions
Pipeline: Test, Lint, Build / Package/Release (push) Blocked by required conditions
Pipeline: Test, Lint, Build / Upload Linux PKG (push) Blocked by required conditions
* feat(plugins): add JSONForms schema for plugin configuration Signed-off-by: Deluan <deluan@navidrome.org> * feat: enhance error handling by formatting validation errors with field names Signed-off-by: Deluan <deluan@navidrome.org> * feat: enforce required fields in config validation and improve error handling Signed-off-by: Deluan <deluan@navidrome.org> * format JS code Signed-off-by: Deluan <deluan@navidrome.org> * feat: add config schema validation and enhance manifest structure Signed-off-by: Deluan <deluan@navidrome.org> * feat: refactor plugin config parsing and add unit tests Signed-off-by: Deluan <deluan@navidrome.org> * feat: add config validation error message in Portuguese * feat: enhance AlwaysExpandedArrayLayout with description support and improve array control testing Signed-off-by: Deluan <deluan@navidrome.org> * feat: update Discord Rust plugin configuration to use JSONForm for user tokens and enhance schema validation Signed-off-by: Deluan <deluan@navidrome.org> * fix: resolve React Hooks linting issues in plugin UI components * Apply suggestions from code review Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> * format code Signed-off-by: Deluan <deluan@navidrome.org> * feat: migrate schema validation to use santhosh-tekuri/jsonschema and improve error formatting Signed-off-by: Deluan <deluan@navidrome.org> * address PR comments Signed-off-by: Deluan <deluan@navidrome.org> * fix flaky test Signed-off-by: Deluan <deluan@navidrome.org> * feat: enhance array layout and configuration handling with AJV defaults Signed-off-by: Deluan <deluan@navidrome.org> * feat: implement custom tester to exclude enum arrays from AlwaysExpandedArrayLayout Signed-off-by: Deluan <deluan@navidrome.org> * feat: add error boundary for schema rendering and improve error messages Signed-off-by: Deluan <deluan@navidrome.org> * feat: refine non-enum array control logic by utilizing JSONForms schema resolution Signed-off-by: Deluan <deluan@navidrome.org> * feat: add error styling to ToggleEnabledSwitch for disabled state Signed-off-by: Deluan <deluan@navidrome.org> * feat: adjust label positioning and styling in SchemaConfigEditor for improved layout Signed-off-by: Deluan <deluan@navidrome.org> * feat: implement outlined input controls renderers to replace custom fragile CSS Signed-off-by: Deluan <deluan@navidrome.org> * feat: remove margin from last form control inside array items for better spacing Signed-off-by: Deluan <deluan@navidrome.org> * feat: enhance AJV error handling to transform required errors for field-level validation Signed-off-by: Deluan <deluan@navidrome.org> * feat: set default value for User Tokens in manifest.json to improve user experience Signed-off-by: Deluan <deluan@navidrome.org> * format Signed-off-by: Deluan <deluan@navidrome.org> * feat: add margin to outlined input controls for improved spacing Signed-off-by: Deluan <deluan@navidrome.org> * feat: remove redundant margin rule for last form control in array items Signed-off-by: Deluan <deluan@navidrome.org> * feat: adjust font size of label elements in SchemaConfigEditor for improved readability Signed-off-by: Deluan <deluan@navidrome.org> --------- Signed-off-by: Deluan <deluan@navidrome.org> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
102 lines
2.9 KiB
JSON
102 lines
2.9 KiB
JSON
{
|
|
"name": "Discord Rich Presence",
|
|
"author": "Navidrome Team",
|
|
"version": "1.0.0",
|
|
"description": "Discord Rich Presence integration for Navidrome",
|
|
"website": "https://github.com/navidrome/navidrome/tree/master/plugins/examples/discord-rich-presence",
|
|
"permissions": {
|
|
"users": {
|
|
"reason": "To process scrobbles on behalf of users"
|
|
},
|
|
"http": {
|
|
"reason": "To communicate with Discord API for gateway discovery and image uploads",
|
|
"requiredHosts": [
|
|
"discord.com"
|
|
]
|
|
},
|
|
"websocket": {
|
|
"reason": "To maintain real-time connection with Discord gateway",
|
|
"requiredHosts": [
|
|
"gateway.discord.gg"
|
|
]
|
|
},
|
|
"cache": {
|
|
"reason": "To store connection state and sequence numbers"
|
|
},
|
|
"scheduler": {
|
|
"reason": "To schedule heartbeat messages and activity clearing"
|
|
},
|
|
"artwork": {
|
|
"reason": "To get track artwork URLs for rich presence display"
|
|
}
|
|
},
|
|
"config": {
|
|
"schema": {
|
|
"type": "object",
|
|
"properties": {
|
|
"clientid": {
|
|
"type": "string",
|
|
"title": "Discord Application Client ID",
|
|
"description": "The Client ID from your Discord Developer Application. Create one at https://discord.com/developers/applications",
|
|
"minLength": 17,
|
|
"maxLength": 20,
|
|
"pattern": "^[0-9]+$"
|
|
},
|
|
"users": {
|
|
"type": "array",
|
|
"title": "User Tokens",
|
|
"description": "Discord tokens for each Navidrome user. WARNING: Store tokens securely!",
|
|
"default": [{}],
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"username": {
|
|
"type": "string",
|
|
"title": "Navidrome Username",
|
|
"description": "The Navidrome username to associate with this Discord token",
|
|
"minLength": 1
|
|
},
|
|
"token": {
|
|
"type": "string",
|
|
"title": "Discord Token",
|
|
"description": "The user's Discord token (keep this secret!)",
|
|
"minLength": 1
|
|
}
|
|
},
|
|
"required": ["username", "token"]
|
|
}
|
|
}
|
|
},
|
|
"required": ["clientid"]
|
|
},
|
|
"uiSchema": {
|
|
"type": "VerticalLayout",
|
|
"elements": [
|
|
{
|
|
"type": "Control",
|
|
"scope": "#/properties/clientid"
|
|
},
|
|
{
|
|
"type": "Control",
|
|
"scope": "#/properties/users",
|
|
"options": {
|
|
"elementLabelProp": "username",
|
|
"detail": {
|
|
"type": "HorizontalLayout",
|
|
"elements": [
|
|
{
|
|
"type": "Control",
|
|
"scope": "#/properties/username"
|
|
},
|
|
{
|
|
"type": "Control",
|
|
"scope": "#/properties/token"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|