Compare commits

...

3 Commits

Author SHA1 Message Date
7c782522f5
finish initUpload 2024-06-03 19:36:41 +02:00
bc278868da
CRUD mostly implemented 2024-06-01 13:58:16 +02:00
3df71a8302
can now create and read 2024-05-19 00:19:47 +02:00

272
main.go
View File

@ -14,196 +14,218 @@ import (
"github.com/jaswdr/faker"
)
// This is taken from our DB model
type video struct {
ID int `json:"id"`
Filepath string `json:"filepath"`
}
// videos slice to seed record video data.
var videos []video
var dbpool *pgxpool.Pool
func main() {
dbpool, err := pgxpool.New(context.Background(), "postgresql://postgres:postgres@172.19.0.2:5432/postgres")
var err error
dbpool, err = pgxpool.New(context.Background(), "postgresql://postgres:postgres@172.19.0.2:5432/postgres")
if err != nil {
log.Fatal(err)
}
defer dbpool.Close()
sqlStmt := `
DROP TABLE IF EXISTS public.videos;
DROP TABLE IF EXISTS videos;
CREATE TABLE IF NOT EXISTS public.videos
CREATE TABLE IF NOT EXISTS videos
(
id integer NOT NULL,
id serial NOT NULL,
filepath text,
CONSTRAINT videos_pkey PRIMARY KEY (id)
)
TABLESPACE pg_default;
ALTER TABLE IF EXISTS public.videos
OWNER to postgres;
`
_, err = dbpool.Exec(context.Background(), sqlStmt)
if err != nil {
log.Fatalf("Unable to connection to database: %v\n", err)
log.Fatalf("main: create table: %v\n", err)
}
faker := faker.New()
for i := 0; i < 10; i++ {
sqlStmt = fmt.Sprintf("insert into public.videos(id, filepath) values(%d, '%s')", i, faker.File().AbsoluteFilePathForUnix(2))
_, err = dbpool.Exec(context.Background(), sqlStmt)
_, err = dbpool.Exec(context.Background(), "insert into videos(filepath) values($1)", faker.File().AbsoluteFilePathForUnix(2))
if err != nil {
log.Fatalf("Unable to add videos: %v\n", err)
log.Fatalf("main: fill with fake data: %v\n", err)
}
}
rows, _ := dbpool.Query(context.Background(), "select * from videos")
for rows.Next() {
var id int
var name string
err = rows.Scan(&id, &name)
if err != nil {
log.Fatalf("Unable to list videos: %v\n", err)
}
fmt.Println(id, name)
}
err = rows.Err()
if err != nil {
log.Fatalf("Unable to list videos: %v\n", err)
}
// Legacy
for i := 0; i < 10; i++ {
videos = append(videos, video{ID: i, Filepath: faker.File().AbsoluteFilePathForUnix(5)})
}
router := gin.Default()
router.SetTrustedProxies(nil)
router.POST("/upload", ReceiveFile)
router.GET("/videos", getvideos)
router.GET("/videos/:id", getvideoByID)
router.POST("/videos", postvideos)
router.DELETE("/videos", delvideos)
router.DELETE("/videos/:id", delvideoByID)
router.PATCH("/videos/:id", updatevideo)
router.POST("/video/init", initUpload)
router.POST("/video/chunk", ReceiveChunk)
router.POST("/video/completed", finishUpload)
router.GET("/videos", listVideos)
router.GET("/videos/:id", getVideo)
router.DELETE("/videos/:id", deleteVideo)
router.Run("localhost:8080")
}
func remove(slice []video, s int) []video {
return append(slice[:s], slice[s+1:]...)
}
func initUpload(c *gin.Context) {
var err error
func ReceiveFile(c *gin.Context) {
// maybe even re-verify mime-type (before or after upload)
fileName := c.GetHeader("file-name")
/*
get data from request
write append data to file
*/
data, err := io.ReadAll(c.Request.Body)
fileName, err := io.ReadAll(c.Request.Body)
if err != nil {
c.IndentedJSON(http.StatusBadRequest, "Unknown Error")
c.JSON(http.StatusBadRequest, "Couldn't read html request body")
return
}
f, err := os.OpenFile(fileName, os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0644)
currentDir, err := os.Getwd()
if err != nil {
c.JSON(http.StatusInternalServerError, "")
log.Fatalf("initUpload: %v\n", err)
}
rows, _ := dbpool.Query(context.Background(), "select filepath from videos")
for rows.Next() {
var filepath string
err = rows.Scan(&filepath)
if err != nil {
c.JSON(http.StatusInternalServerError, "")
log.Fatalf("initUpload: %v\n", err)
}
fmt.Println(filepath)
if filepath == fmt.Sprintf("%s/%s", currentDir, fileName) {
c.JSON(http.StatusForbidden, "File already exists")
return
}
}
err = rows.Err()
if err != nil {
c.JSON(http.StatusInternalServerError, "")
log.Fatalf("initUpload: %v\n", err)
}
c.JSON(http.StatusOK, "Upload can proceed")
}
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")
return
}
f, err := os.OpenFile(c.GetHeader("file-name"), os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0644)
if err != nil {
c.JSON(http.StatusInternalServerError, "")
log.Fatal(err)
}
if _, err := f.Write(data); err != nil {
if _, err := f.Write(chunk); err != nil {
c.JSON(http.StatusInternalServerError, "")
log.Fatal(err)
}
if err := f.Close(); err != nil {
c.JSON(http.StatusInternalServerError, "")
log.Fatal(err)
}
c.IndentedJSON(http.StatusOK, "Received chunk")
c.JSON(http.StatusOK, "Received chunk")
}
// getvideos responds with the list of all videos as JSON.
func getvideos(c *gin.Context) {
c.IndentedJSON(http.StatusOK, videos)
}
func finishUpload(c *gin.Context) {
currentDir, err := os.Getwd()
if err != nil {
c.JSON(http.StatusInternalServerError, "")
log.Fatalf("finishUpload: %v\n", err)
}
// postvideos adds an video from JSON received in the request body.
func postvideos(c *gin.Context) {
var newvideo video
// Call BindJSON to bind the received JSON to
// newvideo.
if err := c.BindJSON(&newvideo); err != nil {
c.Status(http.StatusBadRequest)
fileName, err := io.ReadAll(c.Request.Body)
if err != nil {
c.JSON(http.StatusBadRequest, "Couldn't read html request body")
return
}
for _, a := range videos {
if a == newvideo {
c.Status(http.StatusBadRequest)
return
}
_, err = dbpool.Exec(context.Background(), "insert into videos(filepath) values($1)", fmt.Sprintf("%s/%s", currentDir, fileName))
if err != nil {
c.JSON(http.StatusInternalServerError, "")
log.Fatalf("finishUpload: %v\n", err)
}
// Add the new video to the slice.
videos = append(videos, newvideo)
c.IndentedJSON(http.StatusCreated, newvideo)
c.JSON(http.StatusOK, gin.H{}) // return list of videos
}
// getvideoByID locates the video whose ID value matches the id
// parameter sent by the client, then returns that video as a response.
func getvideoByID(c *gin.Context) {
inputId := c.Param("id")
// Loop through the list of videos, looking for
// an video whose ID value matches the parameter.
for _, a := range videos {
if strconv.Itoa(a.ID) == inputId {
c.IndentedJSON(http.StatusOK, a)
return
func listVideos(c *gin.Context) {
var err error
rows, _ := dbpool.Query(context.Background(), "select * from videos")
for rows.Next() {
var id int
var filepath string
err = rows.Scan(&id, &filepath)
if err != nil {
c.JSON(http.StatusInternalServerError, "")
log.Fatalf("listVideos: %v\n", err)
}
fmt.Println(id, filepath)
}
c.IndentedJSON(http.StatusNotFound, gin.H{"message": "video not found"})
}
func delvideos(c *gin.Context) {
videos = []video{}
c.IndentedJSON(http.StatusOK, videos)
}
func delvideoByID(c *gin.Context) {
inputId := c.Param("id")
for s, a := range videos {
if strconv.Itoa(a.ID) == inputId {
videos = remove(videos, s)
c.IndentedJSON(http.StatusCreated, videos)
return
}
err = rows.Err()
if err != nil {
c.JSON(http.StatusInternalServerError, "")
log.Fatalf("listVideos: %v\n", err)
}
c.IndentedJSON(http.StatusNotFound, gin.H{"message": "video not found"})
c.JSON(http.StatusOK, gin.H{})
}
func updatevideo(c *gin.Context) {
inputId := c.Param("id")
func getVideo(c *gin.Context) {
var err error
inputId, err := strconv.Atoi(c.Param("id"))
if err != nil {
log.Fatal(err)
}
var newvideo video
rows, _ := dbpool.Query(context.Background(), "select * from videos where id = $1", inputId)
rows.Next()
var id int
var filepath string
err = rows.Scan(&id, &filepath)
if err != nil {
c.JSON(http.StatusInternalServerError, "")
log.Fatalf("getVideo: %v\n", err)
}
fmt.Println(id, filepath)
err = rows.Err()
if err != nil {
c.JSON(http.StatusInternalServerError, "")
log.Fatalf("getVideo: %v\n", err)
}
if err := c.BindJSON(&newvideo); err != nil {
c.JSON(http.StatusOK, gin.H{})
}
func deleteVideo(c *gin.Context) {
inputId, err := strconv.Atoi(c.Param("id"))
if err != nil {
log.Fatal(err)
}
rows, _ := dbpool.Query(context.Background(), "select filepath from videos where id = $1", inputId)
rows.Next()
var filepath string
err = rows.Scan(&filepath)
if err != nil {
log.Printf("deleteVideo: %v\n", err)
c.JSON(http.StatusBadRequest, "Video does not exist")
return
}
fmt.Println(filepath)
err = rows.Err()
if err != nil {
log.Printf("deleteVideo: %v\n", err)
c.JSON(http.StatusInternalServerError, "Scanning the row didn't work")
return
}
for s, a := range videos {
if strconv.Itoa(a.ID) == inputId {
videos = remove(videos, s)
videos = append(videos, newvideo)
c.IndentedJSON(http.StatusCreated, newvideo)
return
}
_, err = dbpool.Exec(context.Background(), "delete from videos where id = $1", inputId)
if err != nil {
c.JSON(http.StatusInternalServerError, "")
log.Fatalf("deleteVideo: %v\n", err)
}
c.IndentedJSON(http.StatusNotFound, gin.H{"message": "video not found"})
if err = os.Remove(filepath); err != nil {
c.JSON(http.StatusInternalServerError, "")
log.Fatalf("deleteVideo: %v\n", err)
}
c.JSON(http.StatusOK, gin.H{}) // return list of videos
}