Files
MailPocket/sqlite-server/main.go
T
2025-02-24 18:53:25 -05:00

47 lines
1.1 KiB
Go

package main
import (
"database/sql"
"encoding/json"
"log"
"net/http"
"path/filepath"
"strings"
"shared"
_ "modernc.org/sqlite"
)
func main() {
PORT, dbdir := shared.GetArgs()
db, _ := sql.Open("sqlite", filepath.Join(dbdir, "emails.db"))
db.Exec(`CREATE TABLE IF NOT EXISTS emails (
email TEXT PRIMARY KEY,
created TIMESTAMP DEFAULT CURRENT_TIMESTAMP
)`)
http.HandleFunc("/submit", func(w http.ResponseWriter, r *http.Request) {
email := strings.TrimSpace(r.FormValue("email"))
if email == "" {
http.Error(w, "Email required", http.StatusBadRequest)
return
}
_, err := db.Exec(`INSERT OR IGNORE INTO emails(email) VALUES (?)`, email)
w.Header().Set("Content-Type", "application/json")
if err != nil {
json.NewEncoder(w).Encode(map[string]string{"error": "storage failed"})
return
}
json.NewEncoder(w).Encode(map[string]string{"message": "data received"})
})
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusOK)
w.Write([]byte("SQLite Write Server is running"))
})
log.Println("Starting server on port", PORT)
log.Fatal(http.ListenAndServe(":"+PORT, nil))
}