2023-05-09 22:19:06 +00:00
|
|
|
package libs
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"net/http"
|
|
|
|
"personalwebsite/webfilesystem"
|
|
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
)
|
|
|
|
|
2023-05-10 22:56:28 +00:00
|
|
|
//TODO Use this to get json from back
|
2023-05-09 22:19:06 +00:00
|
|
|
type Cat struct {
|
|
|
|
fs *webfilesystem.WebFileSystem
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewCatLib(webfs *webfilesystem.WebFileSystem) *Cat {
|
|
|
|
return &Cat{
|
|
|
|
fs: webfs,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Cat) Get(filePath string) (string, error) {
|
|
|
|
file, err := c.fs.Read(filePath, nil)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
if file.Type != "plaintext" {
|
|
|
|
return "", errors.New("todo")
|
|
|
|
}
|
|
|
|
|
|
|
|
fileData := webfilesystem.PlainTextFileData{}
|
|
|
|
_, err = c.fs.Read(filePath, &fileData)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
return fileData.Data, nil
|
|
|
|
}
|
|
|
|
|
2023-05-16 10:51:28 +00:00
|
|
|
func (c *Cat) PublicRoutes(route *gin.RouterGroup) {
|
2023-05-09 22:19:06 +00:00
|
|
|
route.GET("get", func(ctx *gin.Context) {
|
|
|
|
path := ctx.Query("path")
|
|
|
|
if path == "" {
|
|
|
|
ctx.String(http.StatusBadRequest, "TODO") //TODO json error struct
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
data, err := c.Get(path)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Status(http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-05-16 10:51:28 +00:00
|
|
|
mode := ctx.Query("mode")
|
|
|
|
switch mode {
|
|
|
|
case "json":
|
|
|
|
ctx.JSON(http.StatusOK, data)
|
|
|
|
default:
|
|
|
|
ctx.String(http.StatusOK, "plaintext", data)
|
|
|
|
}
|
2023-05-09 22:19:06 +00:00
|
|
|
|
2023-05-16 10:51:28 +00:00
|
|
|
})
|
2023-05-09 22:19:06 +00:00
|
|
|
}
|