2016-12-13 05:03:34 +03:00
|
|
|
# static middleware
|
|
|
|
|
2021-10-02 16:10:58 +03:00
|
|
|
[![Run Tests](https://github.com/gin-contrib/static/actions/workflows/go.yml/badge.svg)](https://github.com/gin-contrib/static/actions/workflows/go.yml)
|
2016-12-13 05:03:34 +03:00
|
|
|
[![codecov](https://codecov.io/gh/gin-contrib/static/branch/master/graph/badge.svg)](https://codecov.io/gh/gin-contrib/static)
|
|
|
|
[![Go Report Card](https://goreportcard.com/badge/github.com/gin-contrib/static)](https://goreportcard.com/report/github.com/gin-contrib/static)
|
|
|
|
[![GoDoc](https://godoc.org/github.com/gin-contrib/static?status.svg)](https://godoc.org/github.com/gin-contrib/static)
|
|
|
|
|
2016-12-13 04:40:49 +03:00
|
|
|
Static middleware
|
2016-12-13 05:03:34 +03:00
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
### Start using it
|
|
|
|
|
|
|
|
Download and install it:
|
|
|
|
|
|
|
|
```sh
|
2021-04-04 01:07:43 +03:00
|
|
|
go get github.com/gin-contrib/static
|
2016-12-13 05:03:34 +03:00
|
|
|
```
|
|
|
|
|
|
|
|
Import it in your code:
|
|
|
|
|
|
|
|
```go
|
|
|
|
import "github.com/gin-contrib/static"
|
|
|
|
```
|
2016-12-13 05:10:13 +03:00
|
|
|
|
2021-04-04 01:07:43 +03:00
|
|
|
### Canonical example
|
2016-12-13 05:10:13 +03:00
|
|
|
|
|
|
|
See the [example](example)
|
|
|
|
|
2021-10-02 16:08:24 +03:00
|
|
|
<<<<<<< HEAD
|
2021-03-15 21:11:55 +03:00
|
|
|
#### Serve local file
|
2021-04-04 01:07:43 +03:00
|
|
|
|
2021-10-02 16:08:24 +03:00
|
|
|
=======
|
|
|
|
>>>>>>> 268e788 (chore: fix lint)
|
2016-12-13 05:10:13 +03:00
|
|
|
```go
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2021-04-04 01:07:43 +03:00
|
|
|
"github.com/gin-contrib/static"
|
|
|
|
"github.com/gin-gonic/gin"
|
2016-12-13 05:10:13 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2021-04-04 01:07:43 +03:00
|
|
|
r := gin.Default()
|
|
|
|
|
|
|
|
// if Allow DirectoryIndex
|
|
|
|
//r.Use(static.Serve("/", static.LocalFile("/tmp", true)))
|
|
|
|
// set prefix
|
|
|
|
//r.Use(static.Serve("/static", static.LocalFile("/tmp", true)))
|
|
|
|
|
|
|
|
r.Use(static.Serve("/", static.LocalFile("/tmp", false)))
|
|
|
|
r.GET("/ping", func(c *gin.Context) {
|
|
|
|
c.String(200, "test")
|
|
|
|
})
|
|
|
|
// Listen and Server in 0.0.0.0:8080
|
|
|
|
r.Run(":8080")
|
2016-12-13 05:10:13 +03:00
|
|
|
}
|
|
|
|
```
|
2021-03-15 21:11:55 +03:00
|
|
|
|
|
|
|
#### Serve embed folder
|
2021-04-04 01:07:43 +03:00
|
|
|
|
2021-03-15 21:11:55 +03:00
|
|
|
```go
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2021-04-04 01:07:43 +03:00
|
|
|
"embed"
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
2021-03-15 21:11:55 +03:00
|
|
|
|
2021-04-04 01:07:43 +03:00
|
|
|
"github.com/gin-contrib/static"
|
|
|
|
"github.com/gin-gonic/gin"
|
2021-03-15 21:11:55 +03:00
|
|
|
)
|
|
|
|
|
2021-03-16 01:30:19 +03:00
|
|
|
//go:embed data
|
2021-03-15 21:11:55 +03:00
|
|
|
var server embed.FS
|
|
|
|
|
|
|
|
func main() {
|
2021-04-04 01:07:43 +03:00
|
|
|
r := gin.Default()
|
|
|
|
r.Use(static.Serve("/", static.EmbedFolder(server, "data/server")))
|
|
|
|
r.GET("/ping", func(c *gin.Context) {
|
|
|
|
c.String(200, "test")
|
|
|
|
})
|
|
|
|
r.NoRoute(func(c *gin.Context) {
|
|
|
|
fmt.Printf("%s doesn't exists, redirect on /\n", c.Request.URL.Path)
|
|
|
|
c.Redirect(http.StatusMovedPermanently, "/")
|
|
|
|
})
|
|
|
|
// Listen and Server in 0.0.0.0:8080
|
|
|
|
r.Run(":8080")
|
2021-10-02 16:08:24 +03:00
|
|
|
if err := r.Run(":8080"); err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
2021-03-15 21:11:55 +03:00
|
|
|
}
|
2021-03-16 01:30:19 +03:00
|
|
|
```
|