shiori/cmd/serve.go

120 lines
3.2 KiB
Go
Raw Normal View History

2018-02-11 22:00:56 +08:00
package cmd
import (
"encoding/json"
"fmt"
db "github.com/RadhiFadlillah/shiori/database"
2018-02-12 22:06:53 +08:00
"github.com/RadhiFadlillah/shiori/model"
2018-02-11 22:00:56 +08:00
"github.com/julienschmidt/httprouter"
"github.com/sirupsen/logrus"
"github.com/spf13/cobra"
"net/http"
fp "path/filepath"
"strings"
)
var (
serveCmd = &cobra.Command{
Use: "serve",
Short: "Serve web app for managing bookmarks.",
Long: "Run a simple annd performant web server which serves the site for managing bookmarks." +
"If --port flag is not used, it will use port 8080 by default.",
Run: func(cmd *cobra.Command, args []string) {
router := httprouter.New()
router.GET("/", serveFiles)
router.GET("/js/*filepath", serveFiles)
router.GET("/css/*filepath", serveFiles)
router.GET("/webfonts/*filepath", serveFiles)
router.GET("/api/bookmarks", apiGetBookmarks)
2018-02-12 22:06:53 +08:00
router.POST("/api/bookmarks", apiInsertBookmarks)
2018-02-13 17:14:08 +08:00
router.PUT("/api/bookmarks", apiUpdateBookmarks)
2018-02-17 16:51:43 +08:00
router.DELETE("/api/bookmarks", apiDeleteBookmarks)
2018-02-12 22:06:53 +08:00
// Route for panic
router.PanicHandler = func(w http.ResponseWriter, r *http.Request, arg interface{}) {
http.Error(w, fmt.Sprint(arg), 500)
}
2018-02-11 22:00:56 +08:00
url := fmt.Sprintf(":%d", 8080)
logrus.Infoln("Serve shiori in", url)
logrus.Fatalln(http.ListenAndServe(url, router))
},
}
)
func init() {
rootCmd.AddCommand(serveCmd)
}
func serveFiles(w http.ResponseWriter, r *http.Request, ps httprouter.Params) {
filepath := r.URL.Path
filepath = strings.TrimPrefix(filepath, "/")
filepath = fp.Join("view", filepath)
fmt.Println(filepath)
http.ServeFile(w, r, filepath)
}
func apiGetBookmarks(w http.ResponseWriter, r *http.Request, ps httprouter.Params) {
2018-02-12 22:06:53 +08:00
bookmarks, err := DB.GetBookmarks(db.GetBookmarksOptions{OrderLatest: true})
checkError(err)
2018-02-11 22:00:56 +08:00
2018-02-12 22:06:53 +08:00
err = json.NewEncoder(w).Encode(&bookmarks)
checkError(err)
}
func apiInsertBookmarks(w http.ResponseWriter, r *http.Request, ps httprouter.Params) {
// Decode request
request := model.Bookmark{}
err := json.NewDecoder(r.Body).Decode(&request)
checkError(err)
2018-02-11 22:00:56 +08:00
2018-02-12 22:06:53 +08:00
// Save bookmark
tags := make([]string, len(request.Tags))
for i, tag := range request.Tags {
tags[i] = tag.Name
2018-02-11 22:00:56 +08:00
}
2018-02-12 22:06:53 +08:00
book, err := addBookmark(request.URL, request.Title, request.Excerpt, tags, false)
2018-02-11 22:00:56 +08:00
checkError(err)
2018-02-12 22:06:53 +08:00
// Return new saved result
err = json.NewEncoder(w).Encode(&book)
2018-02-11 22:00:56 +08:00
checkError(err)
}
2018-02-13 17:14:08 +08:00
func apiUpdateBookmarks(w http.ResponseWriter, r *http.Request, ps httprouter.Params) {
// Decode request
request := model.Bookmark{}
err := json.NewDecoder(r.Body).Decode(&request)
checkError(err)
// Convert tags and ID
id := []string{fmt.Sprintf("%d", request.ID)}
tags := make([]string, len(request.Tags))
for i, tag := range request.Tags {
tags[i] = tag.Name
}
// Update bookmark
bookmarks, err := updateBookmarks(id, request.URL, request.Title, request.Excerpt, tags, false)
checkError(err)
// Return new saved result
err = json.NewEncoder(w).Encode(&bookmarks[0])
checkError(err)
}
2018-02-14 12:41:43 +08:00
func apiDeleteBookmarks(w http.ResponseWriter, r *http.Request, ps httprouter.Params) {
// Decode request
2018-02-17 16:51:43 +08:00
request := []string{}
err := json.NewDecoder(r.Body).Decode(&request)
checkError(err)
2018-02-14 12:41:43 +08:00
// Delete bookmarks
2018-02-17 16:51:43 +08:00
_, _, err = DB.DeleteBookmarks(request...)
2018-02-14 12:41:43 +08:00
checkError(err)
2018-02-17 16:51:43 +08:00
fmt.Fprint(w, request)
2018-02-14 12:41:43 +08:00
}