|
@@ -0,0 +1,118 @@
|
|
|
+package plugins
|
|
|
+
|
|
|
+
|
|
|
+ Plugins Includes.go
|
|
|
+
|
|
|
+ This file contains the common types and structs that are used by the plugins
|
|
|
+ If you are building a Zoraxy plugin with Golang, you can use this file to include
|
|
|
+ the common types and structs that are used by the plugins
|
|
|
+*/
|
|
|
+
|
|
|
+type PluginType int
|
|
|
+
|
|
|
+const (
|
|
|
+ PluginType_Router PluginType = 0
|
|
|
+ PluginType_Utilities PluginType = 1
|
|
|
+)
|
|
|
+
|
|
|
+type CaptureRule struct {
|
|
|
+ CapturePath string `json:"capture_path"`
|
|
|
+ IncludeSubPaths bool `json:"include_sub_paths"`
|
|
|
+}
|
|
|
+
|
|
|
+type ControlStatusCode int
|
|
|
+
|
|
|
+const (
|
|
|
+ ControlStatusCode_CAPTURED ControlStatusCode = 280
|
|
|
+ ControlStatusCode_UNHANDLED ControlStatusCode = 284
|
|
|
+ ControlStatusCode_ERROR ControlStatusCode = 580
|
|
|
+)
|
|
|
+
|
|
|
+type SubscriptionEvent struct {
|
|
|
+ EventName string `json:"event_name"`
|
|
|
+ EventSource string `json:"event_source"`
|
|
|
+ Payload string `json:"payload"`
|
|
|
+}
|
|
|
+
|
|
|
+type RuntimeConstantValue struct {
|
|
|
+ ZoraxyVersion string `json:"zoraxy_version"`
|
|
|
+ ZoraxyUUID string `json:"zoraxy_uuid"`
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+IntroSpect Payload
|
|
|
+
|
|
|
+When the plugin is initialized with -introspect flag,
|
|
|
+the plugin shell return this payload as JSON and exit
|
|
|
+*/
|
|
|
+type IntroSpect struct {
|
|
|
+
|
|
|
+ ID string `json:"id"`
|
|
|
+ Name string `json:"name"`
|
|
|
+ Author string `json:"author"`
|
|
|
+ AuthorContact string `json:"author_contact"`
|
|
|
+ Description string `json:"description"`
|
|
|
+ URL string `json:"url"`
|
|
|
+ Type PluginType `json:"type"`
|
|
|
+ VersionMajor int `json:"version_major"`
|
|
|
+ VersionMinor int `json:"version_minor"`
|
|
|
+ VersionPatch int `json:"version_patch"`
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ Endpoint Settings
|
|
|
+
|
|
|
+ */
|
|
|
+
|
|
|
+
|
|
|
+ Global Capture Settings
|
|
|
+
|
|
|
+ Once plugin is enabled these rules always applies, no matter which HTTP Proxy rule it is enabled on
|
|
|
+ This captures the whole traffic of Zoraxy
|
|
|
+
|
|
|
+ Notes: Will raise a warning on the UI when the user enables the plugin on a HTTP Proxy rule
|
|
|
+ */
|
|
|
+ GlobalCapturePath []CaptureRule `json:"global_capture_path"`
|
|
|
+ GlobalCaptureIngress string `json:"global_capture_ingress"`
|
|
|
+
|
|
|
+
|
|
|
+ Always Capture Settings
|
|
|
+
|
|
|
+ Once the plugin is enabled on a given HTTP Proxy rule,
|
|
|
+ these always applies
|
|
|
+ */
|
|
|
+ AlwaysCapturePath []CaptureRule `json:"always_capture_path"`
|
|
|
+ AlwaysCaptureIngress string `json:"always_capture_ingress"`
|
|
|
+
|
|
|
+
|
|
|
+ Dynamic Capture Settings
|
|
|
+
|
|
|
+ Once the plugin is enabled on a given HTTP Proxy rule,
|
|
|
+ the plugin can capture the request and decided if the request
|
|
|
+ shall be handled by itself or let it pass through
|
|
|
+
|
|
|
+ */
|
|
|
+ DynmaicCaptureIngress string `json:"capture_path"`
|
|
|
+ DynamicHandleIngress string `json:"handle_path"`
|
|
|
+
|
|
|
+
|
|
|
+ UIPath string `json:"ui_path"`
|
|
|
+
|
|
|
+
|
|
|
+ SubscriptionPath string `json:"subscription_path"`
|
|
|
+ SubscriptionsEvents map[string]string `json:"subscriptions_events"`
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+ConfigureSpec Payload
|
|
|
+
|
|
|
+Zoraxy will start your plugin with -configure flag,
|
|
|
+the plugin shell read this payload as JSON and configure itself
|
|
|
+by the supplied values like starting a web server at given port
|
|
|
+that listens to 127.0.0.1:port
|
|
|
+*/
|
|
|
+type ConfigureSpec struct {
|
|
|
+ Port int `json:"port"`
|
|
|
+ RuntimeConst RuntimeConstantValue `json:"runtime_const"`
|
|
|
+
|
|
|
+}
|