Library/routes/api/v1/books_list.go

24 lines
426 B
Go
Raw Normal View History

2017-10-09 12:29:21 +00:00
package v1
import (
"github.com/labstack/echo"
"net/http"
"git.mowie.cc/konrad/Library/models"
2017-10-09 12:29:21 +00:00
)
2017-11-08 09:55:17 +00:00
// BookList is the handler to list books
func BookList(c echo.Context) error {
2017-11-29 14:22:25 +00:00
// Prepare the searchterm
search := c.QueryParam("s")
list, err := models.ListBooks(search)
2017-11-07 15:35:10 +00:00
if err != nil {
return c.JSON(http.StatusInternalServerError, models.Message{"Error getting books"})
}
return c.JSON(http.StatusOK, list)
2017-11-07 15:35:10 +00:00
}