-
-
Save worawut-dev/2ff806b915476330b5cd19ec774ebdf5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"net/http" | |
"github.com/gin-gonic/gin" | |
) | |
type book struct { | |
ID string `json:"id"` | |
Name string `json:"name"` | |
Author string `json:"author"` | |
Price float64 `json:"price"` | |
} | |
var books = []book{ | |
{ | |
ID: "1", | |
Name: "Harry Potter", | |
Author: "J.K. Rowling", | |
Price: 15.9, | |
}, | |
{ | |
ID: "2", | |
Name: "One Piece", | |
Author: "Oda Eiichirō", | |
Price: 2.99, | |
}, | |
{ | |
ID: "3", | |
Name: "demon slayer", | |
Author: "koyoharu gotouge", | |
Price: 2.99, | |
}, | |
} | |
func main() { | |
router := gin.Default() | |
router.GET("/books", getBooks) | |
router.POST("/books", addBooks) | |
router.GET("/book/:id", getBookByID) | |
router.PUT("/book/:id", updateBook) | |
router.DELETE("/book/:id", deleteBookByID) | |
router.Run() | |
} | |
func getBooks(c *gin.Context) { | |
c.JSON(http.StatusOK, books) | |
} | |
func getBookByID(c *gin.Context) { | |
paramID := c.Param("id") | |
for _, book := range books { | |
if book.ID == paramID { | |
c.JSON(http.StatusOK, book) | |
return | |
} | |
} | |
c.JSON(http.StatusNotFound, "data not found") | |
} | |
func addBooks(c *gin.Context) { | |
var newBook book | |
if err := c.BindJSON(&newBook); err != nil { | |
return | |
} | |
books = append(books, newBook) | |
c.IndentedJSON(http.StatusCreated, newBook) | |
} | |
func updateBook(c *gin.Context) { | |
var editBook book | |
if err := c.BindJSON(&editBook); err != nil { | |
return | |
} | |
paramID := c.Param("id") | |
for i := 0; i <= len(books)-1; i++ { | |
if books[i].ID == paramID { | |
books[i].Name = editBook.Name | |
books[i].Author = editBook.Author | |
books[i].Price = editBook.Price | |
c.IndentedJSON(http.StatusOK, books[i]) | |
return | |
} | |
} | |
c.JSON(http.StatusNotFound, "data not found") | |
} | |
func deleteBookByID(c *gin.Context) { | |
paramID := c.Param("id") | |
for i := 0; i <= len(books)-1; i++ { | |
if books[i].ID == paramID { | |
books = append(books[:i], books[i+1:]...) | |
c.JSON(http.StatusOK, "delete success") | |
return | |
} | |
} | |
c.JSON(http.StatusNotFound, "data not found") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment