2023-09-18 23:57:18 +00:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/rand"
|
|
|
|
"html/template"
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/gin-contrib/multitemplate"
|
|
|
|
"github.com/gin-contrib/sessions"
|
|
|
|
"github.com/gin-contrib/sessions/cookie"
|
|
|
|
"github.com/gin-gonic/gin"
|
2023-09-23 02:12:36 +00:00
|
|
|
"github.com/microcosm-cc/bluemonday"
|
|
|
|
log "github.com/sirupsen/logrus"
|
2023-09-18 23:57:18 +00:00
|
|
|
"reichard.io/bbank/config"
|
|
|
|
"reichard.io/bbank/database"
|
|
|
|
"reichard.io/bbank/graph"
|
2023-09-27 22:58:47 +00:00
|
|
|
"reichard.io/bbank/utils"
|
2023-09-18 23:57:18 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type API struct {
|
2023-09-23 02:12:36 +00:00
|
|
|
Router *gin.Engine
|
|
|
|
Config *config.Config
|
|
|
|
DB *database.DBManager
|
|
|
|
HTMLPolicy *bluemonday.Policy
|
2023-09-18 23:57:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewApi(db *database.DBManager, c *config.Config) *API {
|
|
|
|
api := &API{
|
2023-09-23 18:14:57 +00:00
|
|
|
HTMLPolicy: bluemonday.StrictPolicy(),
|
2023-09-23 02:12:36 +00:00
|
|
|
Router: gin.Default(),
|
|
|
|
Config: c,
|
|
|
|
DB: db,
|
2023-09-18 23:57:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Assets & Web App Templates
|
|
|
|
api.Router.Static("/assets", "./assets")
|
|
|
|
|
|
|
|
// Generate Secure Token
|
2023-09-23 02:12:36 +00:00
|
|
|
var newToken []byte
|
|
|
|
var err error
|
|
|
|
|
|
|
|
if c.CookieSessionKey != "" {
|
|
|
|
log.Info("[NewApi] Utilizing Environment Cookie Session Key")
|
|
|
|
newToken = []byte(c.CookieSessionKey)
|
|
|
|
} else {
|
|
|
|
log.Info("[NewApi] Generating Cookie Session Key")
|
|
|
|
newToken, err = generateToken(64)
|
|
|
|
if err != nil {
|
|
|
|
panic("Unable to generate secure token")
|
|
|
|
}
|
2023-09-18 23:57:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Configure Cookie Session Store
|
|
|
|
store := cookie.NewStore(newToken)
|
|
|
|
store.Options(sessions.Options{
|
|
|
|
MaxAge: 60 * 60 * 24,
|
|
|
|
Secure: true,
|
|
|
|
HttpOnly: true,
|
|
|
|
SameSite: http.SameSiteStrictMode,
|
|
|
|
})
|
|
|
|
api.Router.Use(sessions.Sessions("token", store))
|
|
|
|
|
|
|
|
// Register Web App Route
|
|
|
|
api.registerWebAppRoutes()
|
|
|
|
|
|
|
|
// Register API Routes
|
|
|
|
apiGroup := api.Router.Group("/api")
|
|
|
|
api.registerKOAPIRoutes(apiGroup)
|
|
|
|
|
|
|
|
return api
|
|
|
|
}
|
|
|
|
|
|
|
|
func (api *API) registerWebAppRoutes() {
|
|
|
|
// Define Templates & Helper Functions
|
|
|
|
render := multitemplate.NewRenderer()
|
|
|
|
helperFuncs := template.FuncMap{
|
|
|
|
"GetSVGGraphData": graph.GetSVGGraphData,
|
2023-09-27 22:58:47 +00:00
|
|
|
"GetUTCOffsets": utils.GetUTCOffsets,
|
2023-09-18 23:57:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
render.AddFromFilesFuncs("login", helperFuncs, "templates/login.html")
|
|
|
|
render.AddFromFilesFuncs("home", helperFuncs, "templates/base.html", "templates/home.html")
|
|
|
|
render.AddFromFilesFuncs("graphs", helperFuncs, "templates/base.html", "templates/graphs.html")
|
2023-09-27 22:58:47 +00:00
|
|
|
render.AddFromFilesFuncs("settings", helperFuncs, "templates/base.html", "templates/settings.html")
|
2023-09-18 23:57:18 +00:00
|
|
|
render.AddFromFilesFuncs("activity", helperFuncs, "templates/base.html", "templates/activity.html")
|
|
|
|
render.AddFromFilesFuncs("documents", helperFuncs, "templates/base.html", "templates/documents.html")
|
2023-09-23 02:12:36 +00:00
|
|
|
render.AddFromFilesFuncs("document", helperFuncs, "templates/base.html", "templates/document.html")
|
2023-09-18 23:57:18 +00:00
|
|
|
|
|
|
|
api.Router.HTMLRender = render
|
|
|
|
|
2023-09-18 23:57:18 +00:00
|
|
|
api.Router.GET("/manifest.json", api.webManifest)
|
2023-09-18 23:57:18 +00:00
|
|
|
api.Router.GET("/login", api.createAppResourcesRoute("login"))
|
|
|
|
api.Router.GET("/register", api.createAppResourcesRoute("login", gin.H{"Register": true}))
|
|
|
|
api.Router.GET("/logout", api.authWebAppMiddleware, api.authLogout)
|
|
|
|
api.Router.POST("/login", api.authFormLogin)
|
|
|
|
api.Router.POST("/register", api.authFormRegister)
|
|
|
|
|
|
|
|
api.Router.GET("/", api.authWebAppMiddleware, api.createAppResourcesRoute("home"))
|
2023-09-27 22:58:47 +00:00
|
|
|
api.Router.GET("/settings", api.authWebAppMiddleware, api.createAppResourcesRoute("settings"))
|
|
|
|
api.Router.POST("/settings", api.authWebAppMiddleware, api.editSettings)
|
2023-09-21 00:35:01 +00:00
|
|
|
api.Router.GET("/activity", api.authWebAppMiddleware, api.createAppResourcesRoute("activity"))
|
2023-09-23 02:12:36 +00:00
|
|
|
api.Router.GET("/documents", api.authWebAppMiddleware, api.createAppResourcesRoute("documents"))
|
|
|
|
api.Router.GET("/documents/:document", api.authWebAppMiddleware, api.createAppResourcesRoute("document"))
|
2023-09-18 23:57:18 +00:00
|
|
|
api.Router.GET("/documents/:document/file", api.authWebAppMiddleware, api.downloadDocumentFile)
|
|
|
|
api.Router.GET("/documents/:document/cover", api.authWebAppMiddleware, api.getDocumentCover)
|
2023-09-23 18:14:57 +00:00
|
|
|
api.Router.POST("/documents/:document/edit", api.authWebAppMiddleware, api.editDocument)
|
|
|
|
api.Router.POST("/documents/:document/identify", api.authWebAppMiddleware, api.identifyDocument)
|
|
|
|
api.Router.POST("/documents/:document/delete", api.authWebAppMiddleware, api.deleteDocument)
|
2023-09-18 23:57:18 +00:00
|
|
|
|
|
|
|
// TODO
|
|
|
|
api.Router.GET("/graphs", api.authWebAppMiddleware, baseResourceRoute("graphs"))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (api *API) registerKOAPIRoutes(apiGroup *gin.RouterGroup) {
|
|
|
|
koGroup := apiGroup.Group("/ko")
|
|
|
|
|
|
|
|
koGroup.POST("/users/create", api.createUser)
|
|
|
|
koGroup.GET("/users/auth", api.authAPIMiddleware, api.authorizeUser)
|
|
|
|
|
|
|
|
koGroup.PUT("/syncs/progress", api.authAPIMiddleware, api.setProgress)
|
|
|
|
koGroup.GET("/syncs/progress/:document", api.authAPIMiddleware, api.getProgress)
|
|
|
|
|
|
|
|
koGroup.POST("/documents", api.authAPIMiddleware, api.addDocuments)
|
|
|
|
koGroup.POST("/syncs/documents", api.authAPIMiddleware, api.checkDocumentsSync)
|
|
|
|
koGroup.PUT("/documents/:document/file", api.authAPIMiddleware, api.uploadDocumentFile)
|
|
|
|
koGroup.GET("/documents/:document/file", api.authAPIMiddleware, api.downloadDocumentFile)
|
|
|
|
|
|
|
|
koGroup.POST("/activity", api.authAPIMiddleware, api.addActivities)
|
|
|
|
koGroup.POST("/syncs/activity", api.authAPIMiddleware, api.checkActivitySync)
|
|
|
|
}
|
|
|
|
|
|
|
|
func generateToken(n int) ([]byte, error) {
|
|
|
|
b := make([]byte, n)
|
|
|
|
_, err := rand.Read(b)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return b, nil
|
|
|
|
}
|