api/main.go (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 |
package main import ( "database/sql" "encoding/json" "log" "net/http" _ "github.com/mattn/go-sqlite3" ) type FormData struct { Key string `json:"key"` Value string `json:"value"` } var db *sql.DB func corsMiddleware(next http.Handler) http.Handler { return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { // Set CORS headers w.Header().Set("Access-Control-Allow-Origin", "*") w.Header().Set("Access-Control-Allow-Methods", "GET, POST, OPTIONS, PUT, DELETE") w.Header().Set("Access-Control-Allow-Headers", "Accept, Content-Type, Content-Length, Accept-Encoding, X-CSRF-Token, Authorization") w.Header().Set("Access-Control-Expose-Headers", "Content-Length, Access-Control-Allow-Origin, Access-Control-Allow-Headers, Content-Type") w.Header().Set("Access-Control-Max-Age", "86400") // 24 hours cache for preflight // Handle preflight requests if r.Method == "OPTIONS" { w.WriteHeader(http.StatusNoContent) return } next.ServeHTTP(w, r) }) } func main() { var err error db, err = sql.Open("sqlite3", "./formdata.db") if err != nil { log.Fatal(err) } defer db.Close() // Create table if not exists _, err = db.Exec(` CREATE TABLE IF NOT EXISTS form_data ( id INTEGER PRIMARY KEY AUTOINCREMENT, key_name TEXT NOT NULL, value TEXT NOT NULL, created_at DATETIME DEFAULT CURRENT_TIMESTAMP ) `) if err != nil { log.Fatal(err) } // Create a new mux mux := http.NewServeMux() // Add routes with handlers mux.HandleFunc("/set", handleSet) mux.HandleFunc("/get", handleGet) // Wrap the mux with the CORS middleware handler := corsMiddleware(mux) log.Println("Server starting on :8080") log.Fatal(http.ListenAndServe(":8080", handler)) } func handleSet(w http.ResponseWriter, r *http.Request) { if r.Method != http.MethodPost { http.Error(w, "Method not allowed", http.StatusMethodNotAllowed) return } var data FormData if err := json.NewDecoder(r.Body).Decode(&data); err != nil { http.Error(w, err.Error(), http.StatusBadRequest) return } _, err := db.Exec("INSERT INTO form_data (key_name, value) VALUES (?, ?)", data.Key, data.Value) if err != nil { http.Error(w, err.Error(), http.StatusInternalServerError) return } w.Header().Set("Content-Type", "application/json") w.WriteHeader(http.StatusCreated) json.NewEncoder(w).Encode(map[string]string{"status": "success"}) } func handleGet(w http.ResponseWriter, r *http.Request) { if r.Method != http.MethodGet { http.Error(w, "Method not allowed", http.StatusMethodNotAllowed) return } rows, err := db.Query("SELECT key_name, value FROM form_data ORDER BY created_at DESC") if err != nil { http.Error(w, err.Error(), http.StatusInternalServerError) return } defer rows.Close() var results []FormData for rows.Next() { var data FormData if err := rows.Scan(&data.Key, &data.Value); err != nil { http.Error(w, err.Error(), http.StatusInternalServerError) return } results = append(results, data) } w.Header().Set("Content-Type", "application/json") json.NewEncoder(w).Encode(results) } // Example CURL requests: // To add new row: curl -X POST -H "Content-Type: application/json" -d '{"key":"mykey","value":"myvalue"}' localhost:8080/set // To get all rows: curl localhost:8080/get |