代码拉取完成,页面将自动刷新
同步操作将从 杰神/物联大师 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
package master
import (
"embed"
"github.com/zgwit/iot-master/v4/broker"
"github.com/zgwit/iot-master/v4/config"
_ "github.com/zgwit/iot-master/v4/docs"
"github.com/zgwit/iot-master/v4/internal"
"github.com/zgwit/iot-master/v4/internal/api"
"github.com/zgwit/iot-master/v4/pkg/log"
"github.com/zgwit/iot-master/v4/pkg/web"
"net/http"
)
//go:embed all:www
var wwwFiles embed.FS
// @title 物联大师接口文档
// @version 3.2 版本
// @description API文档
// @BasePath /api/
// @InstanceName master
// @query.collection.format multi
func main() {}
func Startup(engine *web.Engine) error {
err := config.Load()
if err != nil {
log.Error(err)
_ = config.Store()
}
//加载主程序
err = internal.Open()
if err != nil {
return err
}
//defer internal.Close()
engine.Static("/static", "static")
//注册前端接口
api.RegisterRoutes(engine.Group("/api"))
//注册接口文档
web.RegisterSwaggerDocs(&engine.RouterGroup, "master")
//附件
engine.Static("/attach", "attach")
//监听Websocket
engine.GET("/mqtt", broker.GinBridge)
//监听插件
//mqtt.Subscribe[types.App]("master/register", func(topic string, a *types.App) {
// log.Info("app register ", a.Id, " ", a.Name, " ", a.Type, " ", a.Address)
// plugin.Applications.Store(a.Id, a)
//
// //插件反向代理
// engine.Any("/app/"+a.Id+"/*path", func(ctx *gin.Context) {
// rp, err := web.CreateReverseProxy(a.Type, a.Address)
// if err != nil {
// _ = ctx.Error(err)
// return
// }
// rp.ServeHTTP(ctx.Writer, ctx.Request)
// ctx.Abort()
// })
//})
return nil
}
func Static(fs *web.FileSystem) {
//前端静态文件
fs.Put("", http.FS(wwwFiles), "www", "index.html")
}
func Shutdown() error {
internal.Close()
//只关闭Web就行了,其他通过defer关闭
return nil
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。