log101-dot-dev-services/main.go

168 lines
4.3 KiB
Go
Raw Normal View History

2024-05-17 16:01:33 +00:00
package main
import (
2024-05-28 19:19:30 +00:00
"database/sql"
"errors"
2024-05-28 19:19:30 +00:00
"fmt"
"log"
2024-05-28 17:17:30 +00:00
"net/http"
2024-05-28 19:19:30 +00:00
"os"
"github.com/go-sql-driver/mysql"
2024-05-17 16:01:33 +00:00
2024-05-28 17:17:30 +00:00
"github.com/gin-contrib/cors"
"github.com/gin-gonic/gin"
2024-05-17 16:01:33 +00:00
)
2024-05-28 19:19:30 +00:00
var db *sql.DB
// Emoji counts for each post are retrieved in this format
2024-05-29 07:25:59 +00:00
type EmojiCount struct {
Emoji string
TotalCount int
}
// Emojis' order should be like this
var emojis = [6]string{"👍", "👎", "😀", "😑", "🤢", "👀"}
// Get the emoji counts foe a given post id
func countEmojis(postId string) ([]EmojiCount, error) {
emojiList := []EmojiCount{}
// This will hold the total counts for each emoji
// for a given post
var emojiCounter = map[string]int{
"👍": 0,
"👎": 0,
"😀": 0,
"😑": 0,
"🤢": 0,
"👀": 0,
}
// Get the emoji counts for each emoji
rows, err := db.Query("SELECT emoji, COUNT(*) FROM emoji_clicks WHERE post_id = ? GROUP BY emoji;", postId)
if err != nil {
return emojiList, errors.New("couldn't get emoji counts")
}
defer rows.Close()
// Read the rows and update the counter
for rows.Next() {
var ec EmojiCount
if err := rows.Scan(&ec.Emoji, &ec.TotalCount); err != nil {
return emojiList, errors.New("DB results couldn't read")
}
emojiCounter[ec.Emoji] = ec.TotalCount
}
// Emojis are returned as an ordered list
// as maps are randomly iterated
for _, emoji := range emojis {
var count = EmojiCount{emoji, emojiCounter[emoji]}
emojiList = append(emojiList, count)
}
return emojiList, nil
}
2024-05-17 16:01:33 +00:00
func main() {
2024-05-30 09:52:18 +00:00
mysqlHost := os.Getenv("DBHOST")
2024-05-28 19:19:30 +00:00
cfg := mysql.Config{
User: os.Getenv("DBUSER"),
Passwd: os.Getenv("DBPASS"),
Net: "tcp",
2024-05-30 09:52:18 +00:00
Addr: mysqlHost + ":3306",
2024-05-28 19:19:30 +00:00
DBName: "emojis",
}
// Get a database handle.
var err error
db, err = sql.Open("mysql", cfg.FormatDSN())
if err != nil {
log.Fatal(err)
}
// Check db connection
2024-05-28 19:19:30 +00:00
pingErr := db.Ping()
if pingErr != nil {
log.Fatal(pingErr)
}
fmt.Println("Connected!")
2024-05-28 17:17:30 +00:00
r := gin.Default()
r.LoadHTMLGlob("templates/*")
2024-05-17 16:01:33 +00:00
// CORS configuration
2024-05-28 17:17:30 +00:00
corsConfig := cors.DefaultConfig()
corsConfig.AllowOrigins = []string{"https://log101.dev"}
ginMode := gin.Mode()
if ginMode == gin.DebugMode {
corsConfig.AllowOrigins = append(corsConfig.AllowOrigins, "http://localhost:4321")
}
2024-05-28 17:17:30 +00:00
corsConfig.AllowHeaders = []string{"hx-current-url", "hx-request"}
r.Use(cors.New(corsConfig))
2024-05-17 16:01:33 +00:00
2024-05-30 11:43:50 +00:00
var hxPostUrl string
if ginMode == gin.DebugMode {
hxPostUrl = "http://localhost:8000/blog/api/forms/emoji/post"
} else {
hxPostUrl = "https://log101.dev/blog/api/forms/emoji/post"
}
2024-05-30 10:30:32 +00:00
blogForm := r.Group("/blog/api/")
{
// Get the emoji form, you must provide postId query parameter
blogForm.GET("/forms/emoji", func(c *gin.Context) {
postId := c.Query("postId")
// get emoji counts for each emoji
emojiCounter, err := countEmojis(postId)
if err != nil {
2024-05-30 11:43:50 +00:00
c.HTML(http.StatusOK, "emoji_form.tmpl", gin.H{"error": "error getting the emoji counts", "postId": postId, "hxPostUrl": hxPostUrl})
2024-05-30 10:30:32 +00:00
return
}
// Return the html template
c.HTML(http.StatusOK, "emoji_form.tmpl", gin.H{
2024-05-30 11:43:50 +00:00
"postId": c.Query("postId"),
"results": emojiCounter,
"hxPostUrl": hxPostUrl,
2024-05-30 10:30:32 +00:00
})
2024-05-28 19:19:30 +00:00
})
2024-05-30 10:30:32 +00:00
// Update the emoji counter, this handler will
// add a new entry to the database with anonymized ip
// then sums the results to get the emoji counter
blogForm.POST("/forms/emoji/post", func(c *gin.Context) {
postId := c.PostForm("postId")
emoji := c.PostForm("emojiInput")
// Check if parameters are missing
if postId == "" || emoji == "" {
2024-05-30 11:43:50 +00:00
c.HTML(http.StatusOK, "emoji_form.tmpl", gin.H{"error": "missing parameters", "postId": postId, "hxPostUrl": hxPostUrl})
2024-05-30 10:30:32 +00:00
return
}
// Add the new emoji entry to the database
_, err := db.Exec("INSERT INTO emoji_clicks (post_id, emoji) VALUES (?, ?)", postId, emoji)
if err != nil {
2024-05-30 11:43:50 +00:00
c.HTML(http.StatusOK, "emoji_form.tmpl", gin.H{"error": "error writing to database", "postId": postId, "hxPostUrl": hxPostUrl})
2024-05-30 10:30:32 +00:00
return
}
// get emoji counts for each emoji
emojiCounter, err := countEmojis(postId)
if err != nil {
2024-05-30 11:43:50 +00:00
c.HTML(http.StatusOK, "emoji_form.tmpl", gin.H{"error": "error getting the emoji counts", "postId": postId, "hxPostUrl": hxPostUrl})
2024-05-30 10:30:32 +00:00
return
}
// Return the html with the updated emoji counter
2024-05-30 11:43:50 +00:00
c.HTML(http.StatusOK, "emoji_form.tmpl", gin.H{"postId": postId, "results": emojiCounter, "hxPostUrl": hxPostUrl})
2024-05-30 10:30:32 +00:00
})
}
2024-05-17 16:01:33 +00:00
2024-05-30 09:52:18 +00:00
r.Run(":8000")
2024-05-17 16:01:33 +00:00
}