swgui

package module
v1.4.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 25, 2021 License: Apache-2.0 Imports: 0 Imported by: 8

README

Swagger UI

GoDevDoc

Package swgui (Swagger UI) provides HTTP handler to serve Swagger UI. All assets are embedded in Go source code, so just build and run.

Static assets for v3 are built from Swagger UI v3.51.1.

CDN-based v3cdn uses Swagger UI v3.51.1.

V4 Beta

Static assets for v4 are built from Swagger UI v4.0.0-beta.1.

CDN-based v4cdn uses Swagger UI v4.0.0-beta.1.

How to use

package main

import (
	"net/http"

	"github.com/swaggest/swgui/v3emb" // For go1.16 or later.
	// "github.com/swaggest/swgui/v3" // For go1.15 and below.
)

func main() {
	http.Handle("/", v3.NewHandler("My API", "/swagger.json", "/"))
	http.ListenAndServe(":8080", nil)
}

If you use go1.16 or later, you can import natively embedded assets with "github.com/swaggest/swgui/v3emb", it may help to lower application memory usage.

Use CDN for assets

In order to reduce binary size you can import github.com/swaggest/swgui/v3cdn to use CDN hosted assets.

Also you can use swguicdn build tag to enable CDN mode for github.com/swaggest/swgui/v3 import.

Be aware that CDN mode may be considered inappropriate for security or networking reasons.

Run as standalone server

Install swgui-server

go get github.com/swaggest/swgui/...

Start server

swgui-server -port 8080

Documentation

Overview

Package swgui provide a http FileSystem handler for swagger UI interface

How to generate asset files:

1. Install tools:

go get -u github.com/shurcooL/vfsgen

2. Generate file:

At root folder, run command:

go generate

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Config added in v1.0.0

type Config struct {
	Title       string `json:"title"`          // title of index file
	SwaggerJSON string `json:"swaggerJsonUrl"` // url to swagger.json document specification
	BasePath    string `json:"basePath"`       // base url to docs

	ShowTopBar         bool              `json:"showTopBar"`         // Show navigation top bar, hidden by default
	JsonEditor         bool              `json:"jsonEditor"`         // Enable visual json editor support (experimental, can fail with complex schemas)
	PreAuthorizeApiKey map[string]string `json:"preAuthorizeApiKey"` // Map of security name to key value

	// SettingsUI contains keys and plain javascript values of SwaggerUIBundle configuration.
	// Overrides default values.
	// See https://swagger.io/docs/open-source-tools/swagger-ui/usage/configuration/ for available options.
	SettingsUI map[string]string `json:"-"`
}

Config is used for Swagger UI handler configuration.

Directories

Path Synopsis
Package internal provides internal handler implementation.
Package internal provides internal handler implementation.
v3
Package v3 provides embedded Swagger UI v3 assets.
Package v3 provides embedded Swagger UI v3 assets.
gen
static
Package static contains files to embed.
Package static contains files to embed.
Package v3cdn provides Swagger UI v3 via CDN.
Package v3cdn provides Swagger UI v3 via CDN.
Package v3emb provides Swagger UI v3 with Go embed.
Package v3emb provides Swagger UI v3 with Go embed.
v4
Package v4 provides Swagger UI v4 assets.
Package v4 provides Swagger UI v4 assets.
gen
static
Package static contains files to embed.
Package static contains files to embed.
Package v4cdn provides Swagger UI v4 via CDN.
Package v4cdn provides Swagger UI v4 via CDN.
Package v4emb provides Swagger UI v4 with Go embed.
Package v4emb provides Swagger UI v4 with Go embed.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL