2020-11-12 14:03:20 +03:00
|
|
|
## Message Gateway Transport Library
|
2020-11-26 17:11:11 +03:00
|
|
|
[![Build Status](https://github.com/retailcrm/mg-transport-core/workflows/ci/badge.svg)](https://github.com/retailcrm/mg-transport-core/actions?query=workflow%3Aci)
|
2019-10-18 17:15:41 +03:00
|
|
|
[![codecov](https://codecov.io/gh/retailcrm/mg-transport-core/branch/master/graph/badge.svg)](https://codecov.io/gh/retailcrm/mg-transport-core)
|
2020-08-03 14:45:16 +03:00
|
|
|
[![pkg.go.dev](https://img.shields.io/badge/go.dev-reference-007d9c?logo=go&logoColor=white)](https://pkg.go.dev/github.com/retailcrm/mg-transport-core/core)
|
2019-12-13 10:44:06 +03:00
|
|
|
[![Go Report Card](https://goreportcard.com/badge/github.com/retailcrm/mg-transport-core)](https://goreportcard.com/report/github.com/retailcrm/mg-transport-core)
|
|
|
|
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/retailcrm/mg-transport-core/blob/master/LICENSE.md)
|
2020-11-12 14:03:20 +03:00
|
|
|
|
2019-09-18 14:05:06 +03:00
|
|
|
This library provides different functions like error-reporting, logging, localization, etc. in order to make it easier to create transports.
|
|
|
|
Usage:
|
|
|
|
```go
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"fmt"
|
|
|
|
"html/template"
|
|
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
"github.com/gobuffalo/packr/v2"
|
|
|
|
"github.com/retailcrm/mg-transport-core/core"
|
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2020-05-18 13:37:24 +03:00
|
|
|
// Create new core.Engine instance
|
2019-09-18 14:05:06 +03:00
|
|
|
app := core.New()
|
2020-05-18 13:37:24 +03:00
|
|
|
|
|
|
|
// Load configuration
|
2019-09-18 14:05:06 +03:00
|
|
|
app.Config = core.NewConfig("config.yml")
|
2020-05-18 13:37:24 +03:00
|
|
|
|
|
|
|
// Set default error translation key (will be returned if something goes wrong)
|
2019-09-18 14:05:06 +03:00
|
|
|
app.DefaultError = "unknown_error"
|
2020-05-18 13:37:24 +03:00
|
|
|
|
|
|
|
// Set translations path
|
2019-09-18 14:05:06 +03:00
|
|
|
app.TranslationsPath = "./translations"
|
2020-05-18 13:37:24 +03:00
|
|
|
|
|
|
|
// Preload some translations so they will not be loaded for every request
|
|
|
|
app.PreloadLanguages = core.DefaultLanguages
|
2019-09-18 14:05:06 +03:00
|
|
|
|
2020-05-18 13:37:24 +03:00
|
|
|
// Configure gin.Engine inside core.Engine
|
2019-09-18 14:05:06 +03:00
|
|
|
app.ConfigureRouter(func(engine *gin.Engine) {
|
|
|
|
engine.Static("/static", "./static")
|
|
|
|
engine.HTMLRender = app.CreateRenderer(
|
2020-05-18 13:37:24 +03:00
|
|
|
] // Insert templates here. Custom functions also can be provided.
|
|
|
|
// Default transl function will be injected automatically
|
2019-09-18 14:05:06 +03:00
|
|
|
func(renderer *core.Renderer) {
|
2020-05-18 13:37:24 +03:00
|
|
|
// Push method will load template from FS or from binary
|
2019-09-18 14:05:06 +03:00
|
|
|
r.Push("home", "templates/layout.html", "templates/home.html")
|
|
|
|
},
|
|
|
|
template.FuncMap{},
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
2020-05-18 13:37:24 +03:00
|
|
|
// Start application or fail if something gone wrong (e.g. port is already in use)
|
2019-09-18 14:05:06 +03:00
|
|
|
if err := app.Prepare().Run(); err != nil {
|
|
|
|
fmt.Printf("Fatal error: %s", err.Error())
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### Resource embedding
|
|
|
|
[packr](https://github.com/gobuffalo/packr/tree/master/v2) can be used to provide resource embedding. In order to use packr you must follow
|
|
|
|
[this instruction](https://github.com/gobuffalo/packr/tree/master/v2#library-installation), and provide boxes with templates,
|
|
|
|
translations and assets to library. Example:
|
|
|
|
```go
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"fmt"
|
|
|
|
"html/template"
|
|
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
"github.com/gobuffalo/packr/v2"
|
|
|
|
"github.com/retailcrm/mg-transport-core/core"
|
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
static := packr.New("assets", "./static")
|
|
|
|
templates := packr.New("templates", "./templates")
|
|
|
|
translations := packr.New("translations", "./translate")
|
|
|
|
|
|
|
|
app := core.New()
|
|
|
|
app.Config = core.NewConfig("config.yml")
|
|
|
|
app.DefaultError = "unknown_error"
|
2020-05-18 13:37:24 +03:00
|
|
|
|
|
|
|
// Now translations will be loaded from packr.Box
|
2019-09-18 14:05:06 +03:00
|
|
|
app.TranslationsBox = translations
|
2020-05-18 13:37:24 +03:00
|
|
|
app.PreloadLanguages = core.DefaultLanguages
|
2019-09-18 14:05:06 +03:00
|
|
|
|
|
|
|
app.ConfigureRouter(func(engine *gin.Engine) {
|
2020-05-18 13:37:24 +03:00
|
|
|
// gin.Engine can use packr.Box as http.FileSystem
|
2019-09-18 14:05:06 +03:00
|
|
|
engine.StaticFS("/static", static)
|
|
|
|
engine.HTMLRender = app.CreateRendererFS(
|
|
|
|
templates,
|
|
|
|
func(renderer *core.Renderer) {
|
2020-05-18 13:37:24 +03:00
|
|
|
// Same Push method here, but without relative directory.
|
2019-09-18 14:05:06 +03:00
|
|
|
r.Push("home", "layout.html", "home.html")
|
|
|
|
},
|
|
|
|
template.FuncMap{},
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
|
|
|
if err := app.Prepare().Run(); err != nil {
|
|
|
|
fmt.Printf("Fatal error: %s", err.Error())
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
}
|
2019-10-17 12:45:28 +03:00
|
|
|
```
|
|
|
|
### Migration generator
|
|
|
|
This library contains helper tool for transports. You can install it via go:
|
|
|
|
```sh
|
|
|
|
$ go get -u github.com/retailcrm/mg-transport-core/cmd/transport-core-tool
|
|
|
|
```
|
2020-11-12 14:03:20 +03:00
|
|
|
Currently, it only can generate new migrations for your transport.
|