mirror of
https://github.com/1f349/tulip.git
synced 2024-11-09 22:42:53 +00:00
22 lines
595 B
Go
22 lines
595 B
Go
package server
|
|
|
|
import (
|
|
"github.com/1f349/tulip/database"
|
|
"log"
|
|
"net/http"
|
|
)
|
|
|
|
// DbTx wraps a database transaction with http error messages and a simple action
|
|
// function. If the action function returns an error the transaction will be
|
|
// rolled back. If there is no error then the transaction is committed.
|
|
func (h *HttpServer) DbTx(rw http.ResponseWriter, action func(db *database.Queries) error) bool {
|
|
err := action(h.db)
|
|
if err != nil {
|
|
http.Error(rw, "Database error", http.StatusInternalServerError)
|
|
log.Println("Database action error:", err)
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|