1
0
mirror of https://github.com/JustKato/FreePad.git synced 2026-02-23 15:50:46 +02:00

* Basics realized

This commit is contained in:
2022-05-19 00:40:34 +03:00
parent cb58f3e87d
commit 169e20b573
6 changed files with 81 additions and 1849 deletions

33
lib/helper/helper_main.go Normal file
View File

@@ -0,0 +1,33 @@
package helper
import (
"os"
"strconv"
)
func GetDomainBase() string {
domainBase, domainExists := os.LookupEnv("DOMAIN_BASE")
if !domainExists {
os.Setenv("DOMAIN_BASE", "http://localhost:8080")
domainBase = "http://localhost:8080"
}
return domainBase
}
func GetCacheMapLimit() int {
cacheMapLimit, domainExists := os.LookupEnv("CACHE_MAP_LIMIT")
if !domainExists {
os.Setenv("CACHE_MAP_LIMIT", "25")
cacheMapLimit = "25"
}
rez, err := strconv.Atoi(cacheMapLimit)
if err != nil {
return 25
}
return rez
}

28
lib/routes/routes_home.go Normal file
View File

@@ -0,0 +1,28 @@
package routes
import (
"github.com/JustKato/FreePad/lib/helper"
"github.com/gin-gonic/gin"
)
func HomeRoutes(router *gin.Engine) {
router.GET("/", func(c *gin.Context) {
c.HTML(200, "index.html", gin.H{
"title": "HomePage",
"domain_base": helper.GetDomainBase(),
})
})
router.GET("/:post", func(c *gin.Context) {
// Get the post we are looking for.
postName := c.Param("post")
c.HTML(200, "page.html", gin.H{
"title": postName,
"post_content": "",
"domain_base": helper.GetDomainBase(),
})
})
}

6
lib/types/types_post.go Normal file
View File

@@ -0,0 +1,6 @@
package types
type Post struct {
Name string `json:"name"`
Content string `json:"content"`
}