mg-transport-core/core/doc.go

115 lines
2.9 KiB
Go
Raw Permalink Normal View History

2019-12-13 10:44:06 +03:00
// Copyright (c) 2019 RetailDriver LLC
2019-12-13 10:28:20 +03:00
// Use of this source code is governed by a MIT
/*
Package core provides different functions like error-reporting, logging, localization, etc. in order to make it easier to create transports.
Usage:
package main
import (
"os"
"fmt"
"html/template"
"github.com/gin-gonic/gin"
"github.com/retailcrm/mg-transport-core/core"
)
func main() {
app := core.New()
app.Config = core.NewConfig("config.yml")
app.DefaultError = "unknown_error"
app.TranslationsPath = "./translations"
app.ConfigureRouter(func(engine *gin.Engine) {
engine.Static("/static", "./static")
engine.HTMLRender = app.CreateRenderer(
func(renderer *core.Renderer) {
// insert templates here. Example:
r.Push("home", "templates/layout.html", "templates/home.html")
},
template.FuncMap{},
)
})
if err := app.Prepare().Run(); err != nil {
fmt.Printf("Fatal error: %s", err.Error())
os.Exit(1)
}
}
Resource embedding
packr can be used to provide resource embedding, see:
https://github.com/gobuffalo/packr/tree/master/v2
In order to use packr you must follow instruction, and provide boxes with templates, translations and assets to library.
You can find instruction here:
https://github.com/gobuffalo/packr/tree/master/v2#library-installation
Example of usage:
package main
import (
"os"
"fmt"
"html/template"
2021-07-29 11:29:31 +03:00
"net/http"
2019-12-13 10:28:20 +03:00
"github.com/gin-gonic/gin"
"github.com/retailcrm/mg-transport-core/core"
)
2021-07-29 11:29:31 +03:00
//go:embed static
var Static fs.FS
//go:embed translations
var Translate fs.FS
//go:embed templates
var Templates fs.FS
2019-12-13 10:28:20 +03:00
func main() {
2021-07-29 11:29:31 +03:00
staticFS, err := fs.Sub(Static, "static")
if err != nil {
panic(err)
}
translateFS, err := fs.Sub(Translate, "translate")
if err != nil {
panic(err)
}
templatesFS, err := fs.Sub(Templates, "templates")
if err != nil {
panic(err)
}
2019-12-13 10:28:20 +03:00
app := core.New()
app.Config = core.NewConfig("config.yml")
app.DefaultError = "unknown_error"
2021-07-29 11:29:31 +03:00
app.TranslationsFS = translateFS
2019-12-13 10:28:20 +03:00
app.ConfigureRouter(func(engine *gin.Engine) {
2021-07-29 11:29:31 +03:00
engine.StaticFS("/static", http.FS(staticFS))
2019-12-13 10:28:20 +03:00
engine.HTMLRender = app.CreateRendererFS(
2021-07-29 11:29:31 +03:00
templatesFS,
2019-12-13 10:28:20 +03:00
func(renderer *core.Renderer) {
// insert templates here. Example:
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)
}
}
Migration generator
This library contains helper tool for transports. You can install it via go:
$ go get -u github.com/retailcrm/mg-transport-core/cmd/transport-core-tool
Currently, it only can generate new migrations for your transport.
*/
package core