feat: add goong integration service and route controllers with associated documentation
Build and Release / release (push) Successful in 1m41s
Build and Release / release (push) Successful in 1m41s
This commit is contained in:
+102
-51
@@ -24,6 +24,57 @@ const docTemplate = `{
|
||||
"host": "{{.Host}}",
|
||||
"basePath": "{{.BasePath}}",
|
||||
"paths": {
|
||||
"/api/proxy/{path}": {
|
||||
"get": {
|
||||
"description": "Transparent proxy for Goong APIs to forward body, params, headers and inject API key automatically.",
|
||||
"consumes": [
|
||||
"application/json"
|
||||
],
|
||||
"produces": [
|
||||
"application/json",
|
||||
"application/x-protobuf"
|
||||
],
|
||||
"tags": [
|
||||
"Goong"
|
||||
],
|
||||
"summary": "Proxy Goong APIs",
|
||||
"parameters": [
|
||||
{
|
||||
"type": "string",
|
||||
"description": "Target URL to proxy, e.g., 'tiles.goong.io/assets/goong_map_web.json'",
|
||||
"name": "path",
|
||||
"in": "path",
|
||||
"required": true
|
||||
}
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "Resource content",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"400": {
|
||||
"description": "Bad Request",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"403": {
|
||||
"description": "Forbidden",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"500": {
|
||||
"description": "Internal Server Error",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/auth/forgot-password": {
|
||||
"post": {
|
||||
"description": "Initiate password recovery process for a user",
|
||||
@@ -1295,6 +1346,57 @@ const docTemplate = `{
|
||||
}
|
||||
}
|
||||
},
|
||||
"/map/proxy/{path}": {
|
||||
"get": {
|
||||
"description": "Transparent proxy for Goong APIs to forward body, params, headers and inject API key automatically.",
|
||||
"consumes": [
|
||||
"application/json"
|
||||
],
|
||||
"produces": [
|
||||
"application/json",
|
||||
"application/x-protobuf"
|
||||
],
|
||||
"tags": [
|
||||
"Goong"
|
||||
],
|
||||
"summary": "Proxy Goong APIs",
|
||||
"parameters": [
|
||||
{
|
||||
"type": "string",
|
||||
"description": "Target URL to proxy, e.g., 'tiles.goong.io/assets/goong_map_web.json'",
|
||||
"name": "path",
|
||||
"in": "path",
|
||||
"required": true
|
||||
}
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "Resource content",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"400": {
|
||||
"description": "Bad Request",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"403": {
|
||||
"description": "Forbidden",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"500": {
|
||||
"description": "Internal Server Error",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/media": {
|
||||
"get": {
|
||||
"security": [
|
||||
@@ -2699,57 +2801,6 @@ const docTemplate = `{
|
||||
}
|
||||
}
|
||||
},
|
||||
"/proxy/{path}": {
|
||||
"get": {
|
||||
"description": "Transparent proxy for Goong APIs to forward body, params, headers and inject API key automatically.",
|
||||
"consumes": [
|
||||
"application/json"
|
||||
],
|
||||
"produces": [
|
||||
"application/json",
|
||||
"application/x-protobuf"
|
||||
],
|
||||
"tags": [
|
||||
"Goong"
|
||||
],
|
||||
"summary": "Proxy Goong APIs",
|
||||
"parameters": [
|
||||
{
|
||||
"type": "string",
|
||||
"description": "Target URL to proxy, e.g., 'tiles.goong.io/assets/goong_map_web.json'",
|
||||
"name": "path",
|
||||
"in": "path",
|
||||
"required": true
|
||||
}
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "Resource content",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"400": {
|
||||
"description": "Bad Request",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"403": {
|
||||
"description": "Forbidden",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"500": {
|
||||
"description": "Internal Server Error",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/raster-tiles/metadata": {
|
||||
"get": {
|
||||
"description": "Retrieve map metadata",
|
||||
|
||||
+102
-51
@@ -17,6 +17,57 @@
|
||||
},
|
||||
"basePath": "/",
|
||||
"paths": {
|
||||
"/api/proxy/{path}": {
|
||||
"get": {
|
||||
"description": "Transparent proxy for Goong APIs to forward body, params, headers and inject API key automatically.",
|
||||
"consumes": [
|
||||
"application/json"
|
||||
],
|
||||
"produces": [
|
||||
"application/json",
|
||||
"application/x-protobuf"
|
||||
],
|
||||
"tags": [
|
||||
"Goong"
|
||||
],
|
||||
"summary": "Proxy Goong APIs",
|
||||
"parameters": [
|
||||
{
|
||||
"type": "string",
|
||||
"description": "Target URL to proxy, e.g., 'tiles.goong.io/assets/goong_map_web.json'",
|
||||
"name": "path",
|
||||
"in": "path",
|
||||
"required": true
|
||||
}
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "Resource content",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"400": {
|
||||
"description": "Bad Request",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"403": {
|
||||
"description": "Forbidden",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"500": {
|
||||
"description": "Internal Server Error",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/auth/forgot-password": {
|
||||
"post": {
|
||||
"description": "Initiate password recovery process for a user",
|
||||
@@ -1288,6 +1339,57 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"/map/proxy/{path}": {
|
||||
"get": {
|
||||
"description": "Transparent proxy for Goong APIs to forward body, params, headers and inject API key automatically.",
|
||||
"consumes": [
|
||||
"application/json"
|
||||
],
|
||||
"produces": [
|
||||
"application/json",
|
||||
"application/x-protobuf"
|
||||
],
|
||||
"tags": [
|
||||
"Goong"
|
||||
],
|
||||
"summary": "Proxy Goong APIs",
|
||||
"parameters": [
|
||||
{
|
||||
"type": "string",
|
||||
"description": "Target URL to proxy, e.g., 'tiles.goong.io/assets/goong_map_web.json'",
|
||||
"name": "path",
|
||||
"in": "path",
|
||||
"required": true
|
||||
}
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "Resource content",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"400": {
|
||||
"description": "Bad Request",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"403": {
|
||||
"description": "Forbidden",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"500": {
|
||||
"description": "Internal Server Error",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/media": {
|
||||
"get": {
|
||||
"security": [
|
||||
@@ -2692,57 +2794,6 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"/proxy/{path}": {
|
||||
"get": {
|
||||
"description": "Transparent proxy for Goong APIs to forward body, params, headers and inject API key automatically.",
|
||||
"consumes": [
|
||||
"application/json"
|
||||
],
|
||||
"produces": [
|
||||
"application/json",
|
||||
"application/x-protobuf"
|
||||
],
|
||||
"tags": [
|
||||
"Goong"
|
||||
],
|
||||
"summary": "Proxy Goong APIs",
|
||||
"parameters": [
|
||||
{
|
||||
"type": "string",
|
||||
"description": "Target URL to proxy, e.g., 'tiles.goong.io/assets/goong_map_web.json'",
|
||||
"name": "path",
|
||||
"in": "path",
|
||||
"required": true
|
||||
}
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "Resource content",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"400": {
|
||||
"description": "Bad Request",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"403": {
|
||||
"description": "Forbidden",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"500": {
|
||||
"description": "Internal Server Error",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/raster-tiles/metadata": {
|
||||
"get": {
|
||||
"description": "Retrieve map metadata",
|
||||
|
||||
+70
-35
@@ -720,6 +720,41 @@ info:
|
||||
title: History API
|
||||
version: "1.0"
|
||||
paths:
|
||||
/api/proxy/{path}:
|
||||
get:
|
||||
consumes:
|
||||
- application/json
|
||||
description: Transparent proxy for Goong APIs to forward body, params, headers
|
||||
and inject API key automatically.
|
||||
parameters:
|
||||
- description: Target URL to proxy, e.g., 'tiles.goong.io/assets/goong_map_web.json'
|
||||
in: path
|
||||
name: path
|
||||
required: true
|
||||
type: string
|
||||
produces:
|
||||
- application/json
|
||||
- application/x-protobuf
|
||||
responses:
|
||||
"200":
|
||||
description: Resource content
|
||||
schema:
|
||||
type: string
|
||||
"400":
|
||||
description: Bad Request
|
||||
schema:
|
||||
type: string
|
||||
"403":
|
||||
description: Forbidden
|
||||
schema:
|
||||
type: string
|
||||
"500":
|
||||
description: Internal Server Error
|
||||
schema:
|
||||
type: string
|
||||
summary: Proxy Goong APIs
|
||||
tags:
|
||||
- Goong
|
||||
/auth/forgot-password:
|
||||
post:
|
||||
consumes:
|
||||
@@ -1545,6 +1580,41 @@ paths:
|
||||
summary: Update application status
|
||||
tags:
|
||||
- Historian Application
|
||||
/map/proxy/{path}:
|
||||
get:
|
||||
consumes:
|
||||
- application/json
|
||||
description: Transparent proxy for Goong APIs to forward body, params, headers
|
||||
and inject API key automatically.
|
||||
parameters:
|
||||
- description: Target URL to proxy, e.g., 'tiles.goong.io/assets/goong_map_web.json'
|
||||
in: path
|
||||
name: path
|
||||
required: true
|
||||
type: string
|
||||
produces:
|
||||
- application/json
|
||||
- application/x-protobuf
|
||||
responses:
|
||||
"200":
|
||||
description: Resource content
|
||||
schema:
|
||||
type: string
|
||||
"400":
|
||||
description: Bad Request
|
||||
schema:
|
||||
type: string
|
||||
"403":
|
||||
description: Forbidden
|
||||
schema:
|
||||
type: string
|
||||
"500":
|
||||
description: Internal Server Error
|
||||
schema:
|
||||
type: string
|
||||
summary: Proxy Goong APIs
|
||||
tags:
|
||||
- Goong
|
||||
/media:
|
||||
delete:
|
||||
consumes:
|
||||
@@ -2452,41 +2522,6 @@ paths:
|
||||
summary: Get commit by ID
|
||||
tags:
|
||||
- Commits
|
||||
/proxy/{path}:
|
||||
get:
|
||||
consumes:
|
||||
- application/json
|
||||
description: Transparent proxy for Goong APIs to forward body, params, headers
|
||||
and inject API key automatically.
|
||||
parameters:
|
||||
- description: Target URL to proxy, e.g., 'tiles.goong.io/assets/goong_map_web.json'
|
||||
in: path
|
||||
name: path
|
||||
required: true
|
||||
type: string
|
||||
produces:
|
||||
- application/json
|
||||
- application/x-protobuf
|
||||
responses:
|
||||
"200":
|
||||
description: Resource content
|
||||
schema:
|
||||
type: string
|
||||
"400":
|
||||
description: Bad Request
|
||||
schema:
|
||||
type: string
|
||||
"403":
|
||||
description: Forbidden
|
||||
schema:
|
||||
type: string
|
||||
"500":
|
||||
description: Internal Server Error
|
||||
schema:
|
||||
type: string
|
||||
summary: Proxy Goong APIs
|
||||
tags:
|
||||
- Goong
|
||||
/raster-tiles/{z}/{x}/{y}:
|
||||
get:
|
||||
description: Fetch vector or raster map tile data by Z, X, Y coordinates
|
||||
|
||||
Reference in New Issue
Block a user