2023-04-29 17:38:21 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"embed"
|
|
|
|
"git.lumeweb.com/LumeWeb/portal/config"
|
2023-05-10 11:07:56 +00:00
|
|
|
"git.lumeweb.com/LumeWeb/portal/controller"
|
2023-04-29 17:38:21 +00:00
|
|
|
"git.lumeweb.com/LumeWeb/portal/db"
|
2023-04-30 06:18:42 +00:00
|
|
|
_ "git.lumeweb.com/LumeWeb/portal/docs"
|
2023-05-04 08:21:39 +00:00
|
|
|
"git.lumeweb.com/LumeWeb/portal/renterd"
|
2023-05-10 18:28:32 +00:00
|
|
|
"git.lumeweb.com/LumeWeb/portal/service/files"
|
2023-04-30 08:09:24 +00:00
|
|
|
"git.lumeweb.com/LumeWeb/portal/validator"
|
2023-04-30 06:18:42 +00:00
|
|
|
"github.com/iris-contrib/swagger"
|
|
|
|
"github.com/iris-contrib/swagger/swaggerFiles"
|
2023-04-29 17:38:21 +00:00
|
|
|
"github.com/kataras/iris/v12"
|
|
|
|
"github.com/kataras/iris/v12/mvc"
|
|
|
|
"log"
|
2023-05-10 18:28:32 +00:00
|
|
|
"net/http"
|
2023-04-29 17:38:21 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Embed a directory of static files for serving from the app's root path
|
2023-05-04 08:21:39 +00:00
|
|
|
//
|
2023-04-29 17:38:21 +00:00
|
|
|
//go:embed app/*
|
|
|
|
var embedFrontend embed.FS
|
|
|
|
|
2023-04-30 06:46:47 +00:00
|
|
|
// @title Lume Web Portal
|
|
|
|
// @version 1.0
|
|
|
|
// @description A decentralized data storage portal for the open web
|
2023-04-30 06:18:42 +00:00
|
|
|
|
2023-04-30 06:46:47 +00:00
|
|
|
// @contact.name Lume Web Project
|
|
|
|
// @contact.url https://lumeweb.com
|
|
|
|
// @contact.email contact@lumeweb.com
|
2023-04-30 06:18:42 +00:00
|
|
|
|
2023-04-30 06:46:47 +00:00
|
|
|
// @license.name MIT
|
|
|
|
// @license.url https://opensource.org/license/mit/
|
2023-04-30 06:18:42 +00:00
|
|
|
|
2023-05-04 08:20:39 +00:00
|
|
|
// @externalDocs.description OpenAPI
|
|
|
|
// @externalDocs.url https://swagger.io/resources/open-api/
|
2023-04-29 17:38:21 +00:00
|
|
|
func main() {
|
|
|
|
// Initialize the configuration settings
|
|
|
|
config.Init()
|
|
|
|
|
2023-04-30 06:10:52 +00:00
|
|
|
// Initialize the database connection
|
|
|
|
db.Init()
|
|
|
|
|
2023-05-04 08:20:39 +00:00
|
|
|
// Start the renterd process in a goroutine
|
|
|
|
go renterd.Main()
|
|
|
|
|
|
|
|
renterd.Ready()
|
|
|
|
|
2023-05-10 18:28:32 +00:00
|
|
|
files.Init()
|
2023-05-04 08:21:39 +00:00
|
|
|
|
2023-04-29 17:38:21 +00:00
|
|
|
// Create a new Iris app instance
|
|
|
|
app := iris.New()
|
|
|
|
|
2023-04-30 08:09:24 +00:00
|
|
|
app.Validator = validator.Get()
|
|
|
|
|
2023-04-29 17:38:21 +00:00
|
|
|
// Enable Gzip compression for responses
|
|
|
|
app.Use(iris.Compression)
|
|
|
|
|
|
|
|
// Serve static files from the embedded directory at the app's root path
|
|
|
|
app.HandleDir("/", embedFrontend)
|
|
|
|
|
2023-04-30 07:30:03 +00:00
|
|
|
api := app.Party("/api")
|
|
|
|
v1 := api.Party("/v1")
|
|
|
|
|
2023-05-10 11:07:56 +00:00
|
|
|
// Register the AccountController with the MVC framework and attach it to the "/api/account" path
|
2023-04-30 07:30:03 +00:00
|
|
|
mvc.Configure(v1.Party("/account"), func(app *mvc.Application) {
|
2023-05-10 18:23:22 +00:00
|
|
|
app.Handle(new(controller.AccountController))
|
2023-04-29 17:38:21 +00:00
|
|
|
})
|
|
|
|
|
2023-04-30 07:30:03 +00:00
|
|
|
mvc.Configure(v1.Party("/auth"), func(app *mvc.Application) {
|
2023-05-10 18:23:22 +00:00
|
|
|
app.Handle(new(controller.AuthController))
|
2023-04-29 17:38:21 +00:00
|
|
|
})
|
|
|
|
|
2023-05-04 08:21:39 +00:00
|
|
|
mvc.Configure(v1.Party("/files"), func(app *mvc.Application) {
|
2023-05-10 11:07:56 +00:00
|
|
|
app.Handle(new(controller.FilesController))
|
2023-05-04 08:21:39 +00:00
|
|
|
})
|
|
|
|
|
2023-05-10 18:28:32 +00:00
|
|
|
tus := initTus()
|
|
|
|
|
|
|
|
app.Any(API_PATH+"{fileparam:path}", iris.FromStd(http.StripPrefix(API_PATH, tus)))
|
|
|
|
|
2023-04-30 07:30:19 +00:00
|
|
|
swaggerConfig := swagger.Config{
|
2023-04-30 06:18:42 +00:00
|
|
|
// The url pointing to API definition.
|
|
|
|
URL: "http://localhost:8080/swagger/doc.json",
|
|
|
|
DeepLinking: true,
|
|
|
|
DocExpansion: "list",
|
|
|
|
DomID: "#swagger-ui",
|
|
|
|
// The UI prefix URL (see route).
|
|
|
|
Prefix: "/swagger",
|
|
|
|
}
|
2023-04-30 07:30:19 +00:00
|
|
|
swaggerUI := swagger.Handler(swaggerFiles.Handler, swaggerConfig)
|
2023-04-30 06:18:42 +00:00
|
|
|
|
|
|
|
app.Get("/swagger", swaggerUI)
|
|
|
|
// And the wildcard one for index.html, *.js, *.css and e.t.c.
|
|
|
|
app.Get("/swagger/{any:path}", swaggerUI)
|
|
|
|
|
2023-04-29 17:38:21 +00:00
|
|
|
// Start the Iris app and listen for incoming requests on port 80
|
2023-05-08 14:09:33 +00:00
|
|
|
err := app.Listen(":8080", func(app *iris.Application) {
|
2023-04-30 07:30:19 +00:00
|
|
|
routes := app.GetRoutes()
|
|
|
|
for _, route := range routes {
|
|
|
|
log.Println(route)
|
|
|
|
}
|
2023-05-08 14:09:33 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
renterd.ShutdownComplete()
|
2023-04-29 17:38:21 +00:00
|
|
|
}
|