* feat: add plugin system * fix db docker build * fix hammerhead readme, add strava subscription news to docs * fixes and sdk improvements * fix: reduce Meilisearch load, debounce federation sync (#1012) * optimize meili trail index * several fixes --------- Co-authored-by: Flomp <Flomp@users.noreply.github.com> * Bump svelte from 5.55.5 to 5.56.0 in /docs (#1032) Bumps [svelte](https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte) from 5.55.5 to 5.56.0. - [Release notes](https://github.com/sveltejs/svelte/releases) - [Changelog](https://github.com/sveltejs/svelte/blob/main/packages/svelte/CHANGELOG.md) - [Commits](https://github.com/sveltejs/svelte/commits/svelte@5.56.0/packages/svelte) --- updated-dependencies: - dependency-name: svelte dependency-version: 5.56.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Flomp <Flomp@users.noreply.github.com> * Release v0.19.2 (#1035) * chore: release v0.19.2 * add changelog --------- Co-authored-by: Flomp <26000991+Flomp@users.noreply.github.com> Co-authored-by: Christian Beutel <> * speed up plugin sync and several small fixes * concepts for security improvements and process stability * improve concept * security concept implemented * remove insecure TLS * worker concept implemented * fixes and cleanup * fixes * docu * mermaid, namings * WASM plugin host improvements, plugin logging * fix db migration * Improve plugin config and category mapping UI * fixes * further fixes * remove manual test sync * fix db migration and strava mapping * type added, UI improvements * fix plugin card toggle clickable area * optimize synch status card layout * plugin type 'trails' instead of 'integration' * session auth validation in UI * fix komoot date and waypoints * improve category mapping * fix send to hammerhead: trail name * plugin setup error handling improved * fix review findings * re-mapping added * rename remote_category --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: Flomp <Flomp@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Flomp <26000991+Flomp@users.noreply.github.com>
84 lines
1.7 KiB
Go
84 lines
1.7 KiB
Go
package sdk
|
|
|
|
import (
|
|
"encoding/json"
|
|
"strconv"
|
|
"strings"
|
|
)
|
|
|
|
func StringField(values map[string]any, key string) string {
|
|
value, _ := values[key].(string)
|
|
return strings.TrimSpace(value)
|
|
}
|
|
|
|
func StringOption(options map[string]any, key string) string {
|
|
return StringField(options, key)
|
|
}
|
|
|
|
func IntOption(options map[string]any, key string, fallback int) int {
|
|
return intValue(options, key, fallback)
|
|
}
|
|
|
|
func BoolOption(options map[string]any, key string, fallback bool) bool {
|
|
return boolValue(options, key, fallback)
|
|
}
|
|
|
|
func IntState(state map[string]any, key string, fallback int) int {
|
|
return intValue(state, key, fallback)
|
|
}
|
|
|
|
func intValue(values map[string]any, key string, fallback int) int {
|
|
switch value := values[key].(type) {
|
|
case float64:
|
|
return int(value)
|
|
case int:
|
|
return value
|
|
case json.Number:
|
|
parsed, err := value.Int64()
|
|
if err == nil {
|
|
return int(parsed)
|
|
}
|
|
case string:
|
|
parsed, err := strconv.Atoi(value)
|
|
if err == nil {
|
|
return parsed
|
|
}
|
|
}
|
|
return fallback
|
|
}
|
|
|
|
func boolValue(values map[string]any, key string, fallback bool) bool {
|
|
switch value := values[key].(type) {
|
|
case bool:
|
|
return value
|
|
case string:
|
|
parsed, err := strconv.ParseBool(strings.TrimSpace(value))
|
|
if err == nil {
|
|
return parsed
|
|
}
|
|
}
|
|
return fallback
|
|
}
|
|
|
|
func KnownIDs(ids []string) map[string]bool {
|
|
known := make(map[string]bool, len(ids))
|
|
for _, id := range ids {
|
|
known[id] = true
|
|
}
|
|
return known
|
|
}
|
|
|
|
func SyncLimit(input ListInput) int {
|
|
if input.Limits.MaxItems > 0 {
|
|
return input.Limits.MaxItems
|
|
}
|
|
return 10
|
|
}
|
|
|
|
func NextPageState(nextPage int, hasMore bool) map[string]any {
|
|
if !hasMore {
|
|
return nil
|
|
}
|
|
return map[string]any{"page": nextPage}
|
|
}
|