Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[draft] HTTP server with connection to database #247

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
124 changes: 124 additions & 0 deletions reefd/main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,124 @@
package main
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you would like to apply go fmt to the file

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done


import (
"database/sql"
"encoding/json"
"flag"
"fmt"
"log"
"net/http"
"os"

_ "github.com/mattn/go-sqlite3"
aslonnie marked this conversation as resolved.
Show resolved Hide resolved
)

type machineConfigInput struct {
Name string `json:"name"`
Configuration string `json:"configuration"`
}

type machineConfig struct {
id int
name string
configuration string
}

// handleGetRequest processes GET request to /machine/configuration that query the machine config based on name
func handleGetRequest(db *sql.DB, w http.ResponseWriter, r *http.Request) {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

could you define a server struct/class, with db wrapped in it? and make this a method of that server?

// Parse the query parameter
name := r.URL.Query().Get("name")

var rows *sql.Rows
var err error
// If name is specified, query the machine config with that name
if name != "" {
rows, err = db.Query("SELECT id, name, configuration FROM machine_config WHERE name = ?", name)
} else {
rows, err = db.Query("SELECT id, name, configuration FROM machine_config")
}
if err != nil {
log.Printf("Database error: %v", err)
http.Error(w, "Internal server error", http.StatusInternalServerError)
return
}
defer rows.Close()

// Iterate through the queried rows and print out
var machineConfigs []*machineConfig
for rows.Next() {
var machineConfig machineConfig
err := rows.Scan(&machineConfig.id, &machineConfig.name, &machineConfig.configuration)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
machineConfigs = append(machineConfigs, machineConfig)
}
if err = rows.Err(); err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
for _, c := range machineConfigs {
fmt.Fprintf(w, "ID: %d, Name: %s, Configuration: %s\n", c.id, c.name, c.configuration)
}
}

// a function to handle POST request in MachineConfig format to add a machine configuration to the database
func handlePostRequestMachineConfig(db *sql.DB, w http.ResponseWriter, r *http.Request) {
// Make sure the content type is JSON
if r.Header.Get("Content-Type") != "application/json" {
http.Error(w, "Content-Type must be application/json", http.StatusUnsupportedMediaType)
return
}

// Parse the JSON body
config := &machineConfigInput{}
if err := json.NewDecoder(r.Body).Decode(config); err != nil {
http.Error(w, "Invalid JSON format: "+err.Error(), http.StatusBadRequest)
return
}

// Insert into database
_, err = db.Exec("INSERT INTO machine_config (name, configuration) VALUES (?, ?)",
config.Name, config.Configuration)
if err != nil {
http.Error(w, "Database error: "+err.Error(), http.StatusInternalServerError)
return
}
}

func main() {
dbPath := flag.String("db", "", "Path to .db file")
flag.Parse()
if *dbPath == "" {
log.Fatalf("Database path is required")
}
if _, err := os.Stat(*dbPath); err != nil {
if os.IsNotExist(err) {
log.Fatalf("File %s does not exist", *dbPath)
}
log.Fatalf("Error checking database file %s: %v", *dbPath, err)
}

db, err := sql.Open("sqlite3", *dbPath)
if err != nil {
log.Fatalf("Error connecting to database: %s", err)
}
defer db.Close()

// handle both GET and POST request to /machine/configuration
http.HandleFunc("/machine/configuration", func(w http.ResponseWriter, r *http.Request) {
switch r.Method {
case http.MethodGet:
handleGetRequest(db, w, r)
case http.MethodPost:
handlePostRequestMachineConfig(db, w, r)
default:
http.Error(w, "Method not allowed", http.StatusMethodNotAllowed)
}
})
log.Printf("Starting server")
if err := http.ListenAndServe(":1234", nil); err != nil {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

make listen address a flag please?

and maybe use 8000 or 8080 or 80xx as the default port.

log.Fatalf("Error starting server: %v", err)
}
}