From a36fccfa1f60d2426351fbe1131851975ad877a7 Mon Sep 17 00:00:00 2001 From: AustrianToast Date: Mon, 3 Jun 2024 21:04:50 +0200 Subject: [PATCH] rename func --- main.go | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/main.go b/main.go index f8c7828..961172f 100644 --- a/main.go +++ b/main.go @@ -20,7 +20,7 @@ var uploadFolder string func main() { var err error - dbpool, err = pgxpool.New(context.Background(), "postgresql://postgres:postgres@172.19.0.2:5432/postgres") + dbpool, err = pgxpool.New(context.Background(), "postgresql://postgres:postgres@172.19.0.3:5432/postgres") if err != nil { log.Fatal(err) } @@ -60,7 +60,7 @@ func main() { router.SetTrustedProxies(nil) router.POST("/video/init", initUpload) - router.POST("/video/chunk", ReceiveChunk) + router.POST("/video/chunk", receiveChunk) router.POST("/video/completed", finishUpload) router.GET("/videos", listVideos) router.GET("/videos/:id", getVideo) @@ -86,7 +86,6 @@ func initUpload(c *gin.Context) { c.JSON(http.StatusInternalServerError, "") log.Fatalf("initUpload: %v\n", err) } - fmt.Println(filepath) if filepath == fmt.Sprintf("%s/%s", uploadFolder, fileName) { c.JSON(http.StatusForbidden, "File already exists") return @@ -101,7 +100,7 @@ func initUpload(c *gin.Context) { c.JSON(http.StatusOK, "Upload can proceed") } -func ReceiveChunk(c *gin.Context) { +func receiveChunk(c *gin.Context) { chunk, err := io.ReadAll(c.Request.Body) if err != nil { c.JSON(http.StatusBadRequest, "Couldn't read html request body")