* 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>
210 lines
6.0 KiB
Go
210 lines
6.0 KiB
Go
package sdk
|
|
|
|
const (
|
|
HostRequestBodyTypeJSON = "json"
|
|
HostRequestBodyTypeForm = "form"
|
|
HostRequestBodyTypeMultipart = "multipart"
|
|
MultipartSourceTrail = "trail"
|
|
MultipartSourceTrailGPX = "trail.gpx"
|
|
|
|
AuthHeaderAuthorization = "Authorization"
|
|
AuthSchemeBearer = "Bearer"
|
|
)
|
|
|
|
type HostRequestSpec struct {
|
|
Method string `json:"method"`
|
|
Target RequestTarget `json:"target"`
|
|
Auth string `json:"auth,omitempty"`
|
|
Headers map[string]string `json:"headers,omitempty"`
|
|
Body *HostRequestBody `json:"body,omitempty"`
|
|
Expect ResponseExpect `json:"expect,omitempty"`
|
|
FollowRedirects *bool `json:"followRedirects,omitempty"`
|
|
}
|
|
|
|
type RequestTarget struct {
|
|
Type string `json:"type"`
|
|
Connector string `json:"connector,omitempty"`
|
|
Path string `json:"path,omitempty"`
|
|
Query []QueryParam `json:"query,omitempty"`
|
|
}
|
|
|
|
type QueryParam struct {
|
|
Name string `json:"name"`
|
|
Value string `json:"value"`
|
|
}
|
|
|
|
type HostRequestBody struct {
|
|
Type string `json:"type"`
|
|
JSON any `json:"json,omitempty"`
|
|
Form []FormField `json:"form,omitempty"`
|
|
Parts []MultipartPart `json:"parts,omitempty"`
|
|
}
|
|
|
|
type FormField struct {
|
|
Name string `json:"name"`
|
|
Value string `json:"value"`
|
|
}
|
|
|
|
type MultipartPart struct {
|
|
Name string `json:"name"`
|
|
Source string `json:"source,omitempty"`
|
|
Filename string `json:"filename,omitempty"`
|
|
ContentType string `json:"contentType,omitempty"`
|
|
JSON any `json:"json,omitempty"`
|
|
}
|
|
|
|
type ResponseExpect struct {
|
|
ContentTypes []string `json:"contentTypes,omitempty"`
|
|
MaxBytes int64 `json:"maxBytes,omitempty"`
|
|
}
|
|
|
|
type HostResponse struct {
|
|
Status int `json:"status"`
|
|
HeaderValues map[string][]string `json:"headerValues,omitempty"`
|
|
BodyBase64 string `json:"bodyBase64,omitempty"`
|
|
Error *PluginError `json:"error,omitempty"`
|
|
}
|
|
|
|
type PluginError struct {
|
|
Code string `json:"code"`
|
|
Message string `json:"message,omitempty"`
|
|
}
|
|
|
|
type LogLevel string
|
|
|
|
const (
|
|
LogLevelDebug LogLevel = "debug"
|
|
LogLevelInfo LogLevel = "info"
|
|
LogLevelWarn LogLevel = "warn"
|
|
LogLevelError LogLevel = "error"
|
|
)
|
|
|
|
type HostLogEntry struct {
|
|
Level LogLevel `json:"level"`
|
|
Message string `json:"message"`
|
|
}
|
|
|
|
type InstanceRef struct {
|
|
ID string `json:"id"`
|
|
PluginID string `json:"pluginId"`
|
|
}
|
|
|
|
type RefreshSessionInput struct {
|
|
Instance InstanceRef `json:"instance"`
|
|
Auth map[string]any `json:"auth,omitempty"`
|
|
Config map[string]any `json:"config,omitempty"`
|
|
}
|
|
|
|
type RefreshSessionOutput struct {
|
|
Token string `json:"token"`
|
|
Scheme string `json:"scheme,omitempty"`
|
|
ExpiresAt string `json:"expiresAt,omitempty"`
|
|
}
|
|
|
|
type SyncLimits struct {
|
|
MaxItems int `json:"maxItems,omitempty"`
|
|
}
|
|
|
|
type ListInput struct {
|
|
Instance InstanceRef `json:"instance"`
|
|
Auth map[string]any `json:"auth,omitempty"`
|
|
State map[string]any `json:"state,omitempty"`
|
|
Options map[string]any `json:"options,omitempty"`
|
|
Limits SyncLimits `json:"limits,omitempty"`
|
|
}
|
|
|
|
type ListOutput struct {
|
|
Items []TrailSummary `json:"items"`
|
|
State map[string]any `json:"state,omitempty"`
|
|
HasMore bool `json:"hasMore"`
|
|
Error *PluginError `json:"error,omitempty"`
|
|
}
|
|
|
|
type DetailInput struct {
|
|
Instance InstanceRef `json:"instance"`
|
|
Auth map[string]any `json:"auth,omitempty"`
|
|
Options map[string]any `json:"options,omitempty"`
|
|
Summary TrailSummary `json:"summary"`
|
|
}
|
|
|
|
type DetailOutput struct {
|
|
Item TrailImport `json:"item"`
|
|
Error *PluginError `json:"error,omitempty"`
|
|
}
|
|
|
|
type TrailSummary struct {
|
|
Source TrailImportSource `json:"source"`
|
|
Kind string `json:"kind,omitempty"`
|
|
}
|
|
|
|
type TrailImport struct {
|
|
Source TrailImportSource `json:"source"`
|
|
Kind string `json:"kind,omitempty"`
|
|
Name string `json:"name"`
|
|
Description string `json:"description,omitempty"`
|
|
StartedAt string `json:"startedAt,omitempty"`
|
|
ActivityType string `json:"activityType,omitempty"`
|
|
Privacy *string `json:"privacy,omitempty"`
|
|
Track Track `json:"track"`
|
|
Waypoints []Waypoint `json:"waypoints,omitempty"`
|
|
Photos []Photo `json:"photos,omitempty"`
|
|
Metadata map[string]any `json:"metadata,omitempty"`
|
|
}
|
|
|
|
type TrailImportSource struct {
|
|
Provider string `json:"provider"`
|
|
ExternalID string `json:"externalId"`
|
|
URL string `json:"url,omitempty"`
|
|
}
|
|
|
|
type Track struct {
|
|
Format string `json:"format"`
|
|
ContentBase64 string `json:"contentBase64"`
|
|
}
|
|
|
|
type Waypoint struct {
|
|
ExternalID string `json:"externalId,omitempty"`
|
|
Name string `json:"name,omitempty"`
|
|
Description string `json:"description,omitempty"`
|
|
Lat float64 `json:"lat"`
|
|
Lon float64 `json:"lon"`
|
|
Ele *float64 `json:"ele,omitempty"`
|
|
Icon string `json:"icon,omitempty"`
|
|
Photos []Photo `json:"photos,omitempty"`
|
|
}
|
|
|
|
type Photo struct {
|
|
ExternalID string `json:"externalId,omitempty"`
|
|
Filename string `json:"filename,omitempty"`
|
|
ContentType string `json:"contentType,omitempty"`
|
|
Lat *float64 `json:"lat,omitempty"`
|
|
Lon *float64 `json:"lon,omitempty"`
|
|
Source MediaSource `json:"source"`
|
|
}
|
|
|
|
type MediaSource struct {
|
|
Type string `json:"type"`
|
|
URL string `json:"url,omitempty"`
|
|
MediaRef *MediaRef `json:"mediaRef,omitempty"`
|
|
}
|
|
|
|
type MediaRef struct {
|
|
Connector string `json:"connector"`
|
|
Auth string `json:"auth,omitempty"`
|
|
Path string `json:"path,omitempty"`
|
|
Query []QueryParam `json:"query,omitempty"`
|
|
AssetID string `json:"assetId,omitempty"`
|
|
}
|
|
|
|
type TrailSendInput struct {
|
|
Instance InstanceRef `json:"instance"`
|
|
Auth map[string]any `json:"auth,omitempty"`
|
|
Config map[string]any `json:"config,omitempty"`
|
|
Name string `json:"name,omitempty"`
|
|
Trail Track `json:"trail"`
|
|
}
|
|
|
|
type TrailSendPlan struct {
|
|
Request HostRequestSpec `json:"request"`
|
|
}
|