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

Conversation

khluu
Copy link
Contributor

@khluu khluu commented Nov 13, 2024

  • Implementation of the HTTP server with 2 endpoints: GET /machine/configuration and POST /machine/configuration
  • To add a new machine configuration, you can send in a json: curl -X POST -H "Content-Type: application/json" -d '{"name":"machine3","configuration":"config3"}' http://localhost:1234/machine/configuration
  • To query for all machine configurations, you can send curl -X GET http://localhost:1234/machine/configuration
  • To query for machine configurations with specified name, you can add it as a param curl -X GET http://localhost:1234/machine/configuration?name=machine3

Signed-off-by: Kevin H. Luu <[email protected]>
@khluu khluu requested a review from aslonnie November 13, 2024 01:44
reefd/main.go Outdated

// a function to connect to database given a path to .db file
func connectToDatabase(dbPath string) (*sql.DB, error) {
db, err := sql.Open("sqlite3", dbPath)
Copy link
Collaborator

Choose a reason for hiding this comment

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

return sql.Open("sqlite3", dbPath)

Copy link
Contributor Author

Choose a reason for hiding this comment

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

removed this func and used sql.Open("sqlite3", dbPath) instead

reefd/main.go Outdated
"encoding/json"
)

type MachineConfigInput struct {
Copy link
Collaborator

Choose a reason for hiding this comment

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

don't need to cap MachineConfigInput. it can be just machineConfigInput.

starting with cap means it is "public"

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

reefd/main.go Outdated
Configuration string `json:"configuration"`
}

type MachineConfig struct {
Copy link
Collaborator

Choose a reason for hiding this comment

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

same here: machineConfig.

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

@@ -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

"log"
"net/http"
"os"
_ "github.com/mattn/go-sqlite3"
Copy link
Collaborator

Choose a reason for hiding this comment

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

3rd party import in a separate group.

this import is actually special, so you might want to separate this out further.

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

reefd/main.go Outdated
rows, err = db.Query("SELECT id, name, configuration FROM machine_config")
}
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
Copy link
Collaborator

Choose a reason for hiding this comment

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

you do not want to return internal sql errors directly to user.

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. I send the sql errors to log instead and only mention internal error

reefd/main.go Outdated
defer rows.Close()

// Iterate through the queried rows and print out
var machineConfigs []MachineConfig
Copy link
Collaborator

Choose a reason for hiding this comment

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

use []*MachineConfig. this avoids copy.

in general, use struct pointers for most cases.

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

reefd/main.go Outdated
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
for _, machineConfig := range machineConfigs {
Copy link
Collaborator

Choose a reason for hiding this comment

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

use single char var name for machineConfig, like c.

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

reefd/main.go Outdated
Comment on lines 83 to 84
err := json.NewDecoder(r.Body).Decode(config)
if 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.

if err := xxxx ; err != nil {
}

this limits the scope of err

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

reefd/main.go Outdated
func main() {
dbPath := flag.String("db", "reef.db", "Path to .db file")
flag.Parse()
if _, err := os.Stat(*dbPath); os.IsNotExist(err) {
Copy link
Collaborator

Choose a reason for hiding this comment

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

you want to handle other types of error too; don't drop error

Copy link
Collaborator

Choose a reason for hiding this comment

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

if _, err := os.Stat(*dbPath); err != nil {
   if os.IsNotExist(err) {
      log.Fatal("not exist")
   } else {
      log.Fatalf("stat %q db file: %s", *dbPath, err)
   }
}

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

@aslonnie aslonnie self-requested a review November 15, 2024 11:09
reefd/main.go Outdated
configuration string
}

// a function to connect to database given a path to .db file
Copy link
Collaborator

Choose a reason for hiding this comment

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

// connectToDatabase connects to database ...

reefd/main.go Outdated
}
})
log.Printf("Starting server")
http.ListenAndServe(":1234", nil)
Copy link
Collaborator

Choose a reason for hiding this comment

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

handle the err being returned.

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

p
Signed-off-by: kevin <[email protected]>
@khluu khluu requested a review from aslonnie November 21, 2024 23:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants