2020-10-16 19:12:53 +02:00
|
|
|
package api
|
2020-10-16 11:41:56 +02:00
|
|
|
|
|
|
|
import (
|
2020-10-16 16:21:42 +02:00
|
|
|
"context"
|
2020-10-16 11:41:56 +02:00
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"log"
|
|
|
|
"net/http"
|
|
|
|
"path/filepath"
|
2020-11-12 19:16:59 +01:00
|
|
|
"strconv"
|
2020-10-16 11:41:56 +02:00
|
|
|
"strings"
|
2020-12-07 20:40:16 +01:00
|
|
|
"time"
|
2020-10-16 11:41:56 +02:00
|
|
|
|
|
|
|
"github.com/gorilla/mux"
|
2020-10-16 19:12:53 +02:00
|
|
|
"github.com/mattermost/mattermost-octo-tasks/server/app"
|
|
|
|
"github.com/mattermost/mattermost-octo-tasks/server/model"
|
2020-10-16 11:41:56 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------------------------------
|
|
|
|
// REST APIs
|
|
|
|
|
2020-10-16 16:21:42 +02:00
|
|
|
type API struct {
|
2020-10-16 19:12:53 +02:00
|
|
|
appBuilder func() *app.App
|
2020-12-04 11:28:35 +01:00
|
|
|
singleUser bool
|
2020-10-16 16:21:42 +02:00
|
|
|
}
|
|
|
|
|
2020-12-04 11:28:35 +01:00
|
|
|
func NewAPI(appBuilder func() *app.App, singleUser bool) *API {
|
|
|
|
return &API{appBuilder: appBuilder, singleUser: singleUser}
|
2020-10-16 16:21:42 +02:00
|
|
|
}
|
2020-10-16 11:41:56 +02:00
|
|
|
|
2020-10-16 19:12:53 +02:00
|
|
|
func (a *API) app() *app.App {
|
2020-10-16 16:21:42 +02:00
|
|
|
return a.appBuilder()
|
2020-10-16 11:41:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (a *API) RegisterRoutes(r *mux.Router) {
|
2020-12-02 21:12:14 +01:00
|
|
|
r.HandleFunc("/api/v1/blocks", a.sessionRequired(a.handleGetBlocks)).Methods("GET")
|
2020-12-07 20:40:16 +01:00
|
|
|
r.HandleFunc("/api/v1/blocks", a.sessionRequired(a.handlePostBlocks)).Methods("POST")
|
|
|
|
r.HandleFunc("/api/v1/blocks/{blockID}", a.sessionRequired(a.handleDeleteBlock)).Methods("DELETE")
|
2021-01-13 03:49:08 +01:00
|
|
|
r.HandleFunc("/api/v1/blocks/{blockID}/subtree", a.attachSession(a.handleGetSubTree, false)).Methods("GET")
|
2020-12-07 20:40:16 +01:00
|
|
|
|
|
|
|
r.HandleFunc("/api/v1/users/me", a.sessionRequired(a.handleGetMe)).Methods("GET")
|
|
|
|
r.HandleFunc("/api/v1/users/{userID}", a.sessionRequired(a.handleGetUser)).Methods("GET")
|
2020-10-16 11:41:56 +02:00
|
|
|
|
2020-11-06 16:46:35 +01:00
|
|
|
r.HandleFunc("/api/v1/login", a.handleLogin).Methods("POST")
|
|
|
|
r.HandleFunc("/api/v1/register", a.handleRegister).Methods("POST")
|
|
|
|
|
2020-12-07 20:40:16 +01:00
|
|
|
r.HandleFunc("/api/v1/files", a.sessionRequired(a.handleUploadFile)).Methods("POST")
|
|
|
|
r.HandleFunc("/files/{filename}", a.sessionRequired(a.handleServeFile)).Methods("GET")
|
2020-10-16 11:41:56 +02:00
|
|
|
|
2020-12-07 20:40:16 +01:00
|
|
|
r.HandleFunc("/api/v1/blocks/export", a.sessionRequired(a.handleExport)).Methods("GET")
|
|
|
|
r.HandleFunc("/api/v1/blocks/import", a.sessionRequired(a.handleImport)).Methods("POST")
|
2021-01-13 00:35:30 +01:00
|
|
|
|
|
|
|
r.HandleFunc("/api/v1/sharing/{rootID}", a.sessionRequired(a.handlePostSharing)).Methods("POST")
|
|
|
|
r.HandleFunc("/api/v1/sharing/{rootID}", a.handleGetSharing).Methods("GET")
|
2020-10-16 11:41:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (a *API) handleGetBlocks(w http.ResponseWriter, r *http.Request) {
|
|
|
|
query := r.URL.Query()
|
|
|
|
parentID := query.Get("parent_id")
|
|
|
|
blockType := query.Get("type")
|
|
|
|
|
2020-10-16 16:21:42 +02:00
|
|
|
blocks, err := a.app().GetBlocks(parentID, blockType)
|
|
|
|
if err != nil {
|
2021-01-06 04:50:24 +01:00
|
|
|
log.Printf(`ERROR GetBlocks: %v, REQUEST: %v`, err, r)
|
2020-10-22 15:22:36 +02:00
|
|
|
errorResponse(w, http.StatusInternalServerError, nil)
|
|
|
|
|
2020-10-16 16:21:42 +02:00
|
|
|
return
|
2020-10-16 11:41:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("GetBlocks parentID: %s, type: %s, %d result(s)", parentID, blockType, len(blocks))
|
2020-10-22 15:22:36 +02:00
|
|
|
|
2020-10-16 11:41:56 +02:00
|
|
|
json, err := json.Marshal(blocks)
|
|
|
|
if err != nil {
|
2021-01-06 04:50:24 +01:00
|
|
|
log.Printf(`ERROR json.Marshal: %v, REQUEST: %v`, err, r)
|
2020-10-22 15:22:36 +02:00
|
|
|
errorResponse(w, http.StatusInternalServerError, nil)
|
|
|
|
|
2020-10-16 11:41:56 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
jsonBytesResponse(w, http.StatusOK, json)
|
|
|
|
}
|
|
|
|
|
2021-01-12 03:53:08 +01:00
|
|
|
func stampModifiedByUser(r *http.Request, blocks []model.Block) {
|
|
|
|
ctx := r.Context()
|
|
|
|
session := ctx.Value("session").(*model.Session)
|
|
|
|
userID := session.UserID
|
|
|
|
if userID == "single-user" {
|
|
|
|
userID = ""
|
|
|
|
}
|
|
|
|
|
|
|
|
for i := range blocks {
|
|
|
|
blocks[i].ModifiedBy = userID
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-16 11:41:56 +02:00
|
|
|
func (a *API) handlePostBlocks(w http.ResponseWriter, r *http.Request) {
|
|
|
|
requestBody, err := ioutil.ReadAll(r.Body)
|
|
|
|
if err != nil {
|
2020-10-22 15:22:36 +02:00
|
|
|
errorResponse(w, http.StatusInternalServerError, nil)
|
|
|
|
|
2020-10-16 11:41:56 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Catch panics from parse errors, etc.
|
|
|
|
defer func() {
|
|
|
|
if r := recover(); r != nil {
|
|
|
|
log.Printf(`ERROR: %v`, r)
|
2020-10-22 15:22:36 +02:00
|
|
|
errorResponse(w, http.StatusInternalServerError, nil)
|
|
|
|
|
2020-10-16 11:41:56 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2020-10-16 19:12:53 +02:00
|
|
|
var blocks []model.Block
|
2020-10-22 15:22:36 +02:00
|
|
|
|
2020-10-22 13:34:42 +02:00
|
|
|
err = json.Unmarshal(requestBody, &blocks)
|
2020-10-16 11:41:56 +02:00
|
|
|
if err != nil {
|
2020-10-22 15:22:36 +02:00
|
|
|
errorResponse(w, http.StatusInternalServerError, nil)
|
|
|
|
|
2020-10-16 11:41:56 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, block := range blocks {
|
|
|
|
// Error checking
|
|
|
|
if len(block.Type) < 1 {
|
2020-10-22 15:22:36 +02:00
|
|
|
errorData := map[string]string{"description": "missing type", "id": block.ID}
|
|
|
|
errorResponse(w, http.StatusBadRequest, errorData)
|
|
|
|
|
2020-10-16 11:41:56 +02:00
|
|
|
return
|
|
|
|
}
|
2020-10-22 13:34:42 +02:00
|
|
|
|
2020-10-16 11:41:56 +02:00
|
|
|
if block.CreateAt < 1 {
|
2020-10-22 15:22:36 +02:00
|
|
|
errorData := map[string]string{"description": "invalid createAt", "id": block.ID}
|
|
|
|
errorResponse(w, http.StatusBadRequest, errorData)
|
|
|
|
|
2020-10-16 11:41:56 +02:00
|
|
|
return
|
|
|
|
}
|
2020-10-22 13:34:42 +02:00
|
|
|
|
2020-10-16 11:41:56 +02:00
|
|
|
if block.UpdateAt < 1 {
|
2020-10-22 15:22:36 +02:00
|
|
|
errorData := map[string]string{"description": "invalid UpdateAt", "id": block.ID}
|
|
|
|
errorResponse(w, http.StatusBadRequest, errorData)
|
|
|
|
|
2020-10-16 11:41:56 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-12 03:53:08 +01:00
|
|
|
stampModifiedByUser(r, blocks)
|
|
|
|
|
2020-10-16 16:21:42 +02:00
|
|
|
err = a.app().InsertBlocks(blocks)
|
|
|
|
if err != nil {
|
2021-01-06 04:50:24 +01:00
|
|
|
log.Printf(`ERROR: %v, REQUEST: %v`, err, r)
|
2020-10-22 15:22:36 +02:00
|
|
|
errorResponse(w, http.StatusInternalServerError, nil)
|
|
|
|
|
2020-10-16 16:21:42 +02:00
|
|
|
return
|
|
|
|
}
|
2020-10-16 11:41:56 +02:00
|
|
|
|
|
|
|
log.Printf("POST Blocks %d block(s)", len(blocks))
|
|
|
|
jsonStringResponse(w, http.StatusOK, "{}")
|
|
|
|
}
|
|
|
|
|
2020-12-07 20:40:16 +01:00
|
|
|
func (a *API) handleGetUser(w http.ResponseWriter, r *http.Request) {
|
|
|
|
vars := mux.Vars(r)
|
|
|
|
userID := vars["userID"]
|
|
|
|
|
|
|
|
user, err := a.app().GetUser(userID)
|
|
|
|
if err != nil {
|
|
|
|
log.Printf(`ERROR: %v`, r)
|
|
|
|
errorResponse(w, http.StatusInternalServerError, nil)
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
userData, err := json.Marshal(user)
|
|
|
|
if err != nil {
|
|
|
|
log.Printf(`ERROR: %v`, r)
|
|
|
|
errorResponse(w, http.StatusInternalServerError, nil)
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
jsonStringResponse(w, http.StatusOK, string(userData))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *API) handleGetMe(w http.ResponseWriter, r *http.Request) {
|
|
|
|
ctx := r.Context()
|
|
|
|
session := ctx.Value("session").(*model.Session)
|
|
|
|
var user *model.User
|
|
|
|
var err error
|
|
|
|
|
|
|
|
if session.UserID == "single-user" {
|
|
|
|
now := time.Now().Unix()
|
|
|
|
user = &model.User{
|
|
|
|
ID: "single-user",
|
|
|
|
Username: "single-user",
|
|
|
|
Email: "single-user",
|
|
|
|
CreateAt: now,
|
|
|
|
UpdateAt: now,
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
user, err = a.app().GetUser(session.UserID)
|
|
|
|
if err != nil {
|
|
|
|
log.Printf(`ERROR: %v`, r)
|
|
|
|
errorResponse(w, http.StatusInternalServerError, nil)
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
userData, err := json.Marshal(user)
|
|
|
|
if err != nil {
|
|
|
|
log.Printf(`ERROR: %v`, r)
|
|
|
|
errorResponse(w, http.StatusInternalServerError, nil)
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
jsonStringResponse(w, http.StatusOK, string(userData))
|
|
|
|
}
|
|
|
|
|
2020-10-16 11:41:56 +02:00
|
|
|
func (a *API) handleDeleteBlock(w http.ResponseWriter, r *http.Request) {
|
2021-01-12 20:16:25 +01:00
|
|
|
ctx := r.Context()
|
|
|
|
session := ctx.Value("session").(*model.Session)
|
|
|
|
userID := session.UserID
|
|
|
|
|
2020-10-16 11:41:56 +02:00
|
|
|
vars := mux.Vars(r)
|
|
|
|
blockID := vars["blockID"]
|
|
|
|
|
2021-01-12 20:16:25 +01:00
|
|
|
err := a.app().DeleteBlock(blockID, userID)
|
2020-10-16 16:21:42 +02:00
|
|
|
if err != nil {
|
2021-01-06 04:50:24 +01:00
|
|
|
log.Printf(`ERROR: %v, REQUEST: %v`, err, r)
|
2020-10-22 15:22:36 +02:00
|
|
|
errorResponse(w, http.StatusInternalServerError, nil)
|
|
|
|
|
2020-10-16 16:21:42 +02:00
|
|
|
return
|
2020-10-16 11:41:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("DELETE Block %s", blockID)
|
|
|
|
jsonStringResponse(w, http.StatusOK, "{}")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *API) handleGetSubTree(w http.ResponseWriter, r *http.Request) {
|
|
|
|
vars := mux.Vars(r)
|
|
|
|
blockID := vars["blockID"]
|
|
|
|
|
2021-01-13 03:49:08 +01:00
|
|
|
// If not authenticated (no session), check that block is publicly shared
|
|
|
|
ctx := r.Context()
|
|
|
|
session, _ := ctx.Value("session").(*model.Session)
|
|
|
|
if session == nil {
|
2021-01-13 18:40:37 +01:00
|
|
|
query := r.URL.Query()
|
|
|
|
readToken := query.Get("read_token")
|
|
|
|
|
|
|
|
// Require read token
|
|
|
|
if len(readToken) < 1 {
|
|
|
|
log.Printf(`ERROR: No read_token`)
|
|
|
|
errorResponse(w, http.StatusUnauthorized, map[string]string{"error": "No read_token"})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-01-13 03:49:08 +01:00
|
|
|
rootID, err := a.app().GetRootID(blockID)
|
|
|
|
if err != nil {
|
|
|
|
log.Printf(`ERROR GetRootID %v: %v, REQUEST: %v`, blockID, err, r)
|
|
|
|
errorResponse(w, http.StatusInternalServerError, nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
sharing, err := a.app().GetSharing(rootID)
|
|
|
|
if err != nil {
|
|
|
|
log.Printf(`ERROR GetSharing %v: %v, REQUEST: %v`, rootID, err, r)
|
|
|
|
errorResponse(w, http.StatusInternalServerError, nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-01-13 18:40:37 +01:00
|
|
|
if sharing == nil || !(sharing.ID == rootID && sharing.Enabled && sharing.Token == readToken) {
|
2021-01-13 03:49:08 +01:00
|
|
|
log.Printf(`handleGetSubTree public unauthorized, rootID: %v`, rootID)
|
|
|
|
errorResponse(w, http.StatusUnauthorized, nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-12 19:16:59 +01:00
|
|
|
query := r.URL.Query()
|
|
|
|
levels, err := strconv.ParseInt(query.Get("l"), 10, 32)
|
|
|
|
if err != nil {
|
|
|
|
levels = 2
|
|
|
|
}
|
|
|
|
|
|
|
|
if levels != 2 && levels != 3 {
|
|
|
|
log.Printf(`ERROR Invalid levels: %d`, levels)
|
|
|
|
errorData := map[string]string{"description": "invalid levels"}
|
|
|
|
errorResponse(w, http.StatusInternalServerError, errorData)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
blocks, err := a.app().GetSubTree(blockID, int(levels))
|
2020-10-16 16:21:42 +02:00
|
|
|
if err != nil {
|
2021-01-06 04:50:24 +01:00
|
|
|
log.Printf(`ERROR: %v, REQUEST: %v`, err, r)
|
2020-10-22 15:22:36 +02:00
|
|
|
errorResponse(w, http.StatusInternalServerError, nil)
|
2020-10-16 16:21:42 +02:00
|
|
|
return
|
|
|
|
}
|
2020-10-16 11:41:56 +02:00
|
|
|
|
2020-11-12 19:16:59 +01:00
|
|
|
log.Printf("GetSubTree (%v) blockID: %s, %d result(s)", levels, blockID, len(blocks))
|
2020-10-16 11:41:56 +02:00
|
|
|
json, err := json.Marshal(blocks)
|
|
|
|
if err != nil {
|
2021-01-06 04:50:24 +01:00
|
|
|
log.Printf(`ERROR json.Marshal: %v, REQUEST: %v`, err, r)
|
2020-10-22 15:22:36 +02:00
|
|
|
errorResponse(w, http.StatusInternalServerError, nil)
|
2020-10-16 11:41:56 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
jsonBytesResponse(w, http.StatusOK, json)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *API) handleExport(w http.ResponseWriter, r *http.Request) {
|
2020-10-16 16:21:42 +02:00
|
|
|
blocks, err := a.app().GetAllBlocks()
|
|
|
|
if err != nil {
|
2021-01-06 04:50:24 +01:00
|
|
|
log.Printf(`ERROR: %v, REQUEST: %v`, err, r)
|
2020-10-22 15:22:36 +02:00
|
|
|
errorResponse(w, http.StatusInternalServerError, nil)
|
|
|
|
|
2020-10-16 16:21:42 +02:00
|
|
|
return
|
|
|
|
}
|
2020-10-16 11:41:56 +02:00
|
|
|
|
2020-12-10 21:39:09 +01:00
|
|
|
log.Printf("%d raw block(s)", len(blocks))
|
|
|
|
blocks = filterOrphanBlocks(blocks)
|
2020-12-14 20:24:38 +01:00
|
|
|
log.Printf("EXPORT %d filtered block(s)", len(blocks))
|
2020-10-22 15:22:36 +02:00
|
|
|
|
2020-10-16 11:41:56 +02:00
|
|
|
json, err := json.Marshal(blocks)
|
|
|
|
if err != nil {
|
2021-01-06 04:50:24 +01:00
|
|
|
log.Printf(`ERROR json.Marshal: %v, REQUEST: %v`, err, r)
|
2020-10-22 15:22:36 +02:00
|
|
|
errorResponse(w, http.StatusInternalServerError, nil)
|
|
|
|
|
2020-10-16 11:41:56 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
jsonBytesResponse(w, http.StatusOK, json)
|
|
|
|
}
|
|
|
|
|
2020-12-10 21:39:09 +01:00
|
|
|
func filterOrphanBlocks(blocks []model.Block) (ret []model.Block) {
|
2020-12-14 20:24:38 +01:00
|
|
|
queue := make([]model.Block, 0)
|
|
|
|
var childrenOfBlockWithID = make(map[string]*[]model.Block)
|
|
|
|
|
|
|
|
// Build the trees from nodes
|
2020-12-10 21:39:09 +01:00
|
|
|
for _, block := range blocks {
|
2020-12-14 20:24:38 +01:00
|
|
|
if len(block.ParentID) == 0 {
|
|
|
|
// Queue root blocks to process first
|
|
|
|
queue = append(queue, block)
|
|
|
|
} else {
|
|
|
|
siblings := childrenOfBlockWithID[block.ParentID]
|
|
|
|
if siblings != nil {
|
|
|
|
*siblings = append(*siblings, block)
|
|
|
|
} else {
|
|
|
|
siblings := []model.Block{block}
|
|
|
|
childrenOfBlockWithID[block.ParentID] = &siblings
|
|
|
|
}
|
2020-12-10 21:39:09 +01:00
|
|
|
}
|
|
|
|
}
|
2020-12-14 20:24:38 +01:00
|
|
|
|
|
|
|
// Map the trees to an array, which skips orphaned nodes
|
|
|
|
blocks = make([]model.Block, 0)
|
|
|
|
for len(queue) > 0 {
|
|
|
|
block := queue[0]
|
|
|
|
queue = queue[1:] // dequeue
|
|
|
|
blocks = append(blocks, block)
|
|
|
|
children := childrenOfBlockWithID[block.ID]
|
|
|
|
if children != nil {
|
|
|
|
queue = append(queue, (*children)...)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return blocks
|
2020-12-10 21:39:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func arrayContainsBlockWithID(array []model.Block, blockID string) bool {
|
|
|
|
for _, item := range array {
|
|
|
|
if item.ID == blockID {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2020-10-16 11:41:56 +02:00
|
|
|
func (a *API) handleImport(w http.ResponseWriter, r *http.Request) {
|
|
|
|
requestBody, err := ioutil.ReadAll(r.Body)
|
|
|
|
if err != nil {
|
2020-10-22 15:22:36 +02:00
|
|
|
errorResponse(w, http.StatusInternalServerError, nil)
|
|
|
|
|
2020-10-16 11:41:56 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Catch panics from parse errors, etc.
|
|
|
|
defer func() {
|
|
|
|
if r := recover(); r != nil {
|
|
|
|
log.Printf(`ERROR: %v`, r)
|
2020-10-22 15:22:36 +02:00
|
|
|
errorResponse(w, http.StatusInternalServerError, nil)
|
|
|
|
|
2020-10-16 11:41:56 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2020-10-16 19:12:53 +02:00
|
|
|
var blocks []model.Block
|
2020-10-22 15:22:36 +02:00
|
|
|
|
2020-10-22 13:34:42 +02:00
|
|
|
err = json.Unmarshal(requestBody, &blocks)
|
2020-10-16 11:41:56 +02:00
|
|
|
if err != nil {
|
2020-10-22 15:22:36 +02:00
|
|
|
errorResponse(w, http.StatusInternalServerError, nil)
|
|
|
|
|
2020-10-16 11:41:56 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-01-12 03:53:08 +01:00
|
|
|
stampModifiedByUser(r, blocks)
|
|
|
|
|
2020-10-26 18:54:37 +01:00
|
|
|
err = a.app().InsertBlocks(blocks)
|
|
|
|
if err != nil {
|
2021-01-06 04:50:24 +01:00
|
|
|
log.Printf(`ERROR: %v, REQUEST: %v`, err, r)
|
2020-10-26 18:54:37 +01:00
|
|
|
errorResponse(w, http.StatusInternalServerError, nil)
|
2020-10-22 15:22:36 +02:00
|
|
|
|
2020-10-26 18:54:37 +01:00
|
|
|
return
|
2020-10-16 11:41:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("IMPORT Blocks %d block(s)", len(blocks))
|
|
|
|
jsonStringResponse(w, http.StatusOK, "{}")
|
|
|
|
}
|
|
|
|
|
2021-01-13 00:35:30 +01:00
|
|
|
// Sharing
|
|
|
|
|
|
|
|
func (a *API) handleGetSharing(w http.ResponseWriter, r *http.Request) {
|
|
|
|
vars := mux.Vars(r)
|
|
|
|
rootID := vars["rootID"]
|
|
|
|
|
|
|
|
sharing, err := a.app().GetSharing(rootID)
|
|
|
|
if err != nil {
|
|
|
|
log.Printf(`ERROR: %v`, r)
|
|
|
|
errorResponse(w, http.StatusInternalServerError, nil)
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
sharingData, err := json.Marshal(sharing)
|
|
|
|
if err != nil {
|
|
|
|
log.Printf(`ERROR: %v`, r)
|
|
|
|
errorResponse(w, http.StatusInternalServerError, nil)
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("GET sharing %s", rootID)
|
|
|
|
jsonStringResponse(w, http.StatusOK, string(sharingData))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *API) handlePostSharing(w http.ResponseWriter, r *http.Request) {
|
|
|
|
requestBody, err := ioutil.ReadAll(r.Body)
|
|
|
|
if err != nil {
|
|
|
|
errorResponse(w, http.StatusInternalServerError, nil)
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Catch panics from parse errors, etc.
|
|
|
|
defer func() {
|
|
|
|
if r := recover(); r != nil {
|
|
|
|
log.Printf(`ERROR: %v`, r)
|
|
|
|
errorResponse(w, http.StatusInternalServerError, nil)
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
var sharing model.Sharing
|
|
|
|
|
|
|
|
err = json.Unmarshal(requestBody, &sharing)
|
|
|
|
if err != nil {
|
|
|
|
errorResponse(w, http.StatusInternalServerError, nil)
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Stamp ModifiedBy
|
|
|
|
ctx := r.Context()
|
|
|
|
session := ctx.Value("session").(*model.Session)
|
|
|
|
userID := session.UserID
|
|
|
|
if userID == "single-user" {
|
|
|
|
userID = ""
|
|
|
|
}
|
|
|
|
sharing.ModifiedBy = userID
|
|
|
|
|
|
|
|
err = a.app().UpsertSharing(sharing)
|
|
|
|
if err != nil {
|
|
|
|
log.Printf(`ERROR: %v, REQUEST: %v`, err, r)
|
|
|
|
errorResponse(w, http.StatusInternalServerError, nil)
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("POST sharing %s", sharing.ID)
|
|
|
|
jsonStringResponse(w, http.StatusOK, "{}")
|
|
|
|
}
|
|
|
|
|
2020-10-16 11:41:56 +02:00
|
|
|
// File upload
|
|
|
|
|
|
|
|
func (a *API) handleServeFile(w http.ResponseWriter, r *http.Request) {
|
|
|
|
vars := mux.Vars(r)
|
|
|
|
filename := vars["filename"]
|
|
|
|
|
|
|
|
contentType := "image/jpg"
|
2020-10-22 15:22:36 +02:00
|
|
|
|
2020-10-16 11:41:56 +02:00
|
|
|
fileExtension := strings.ToLower(filepath.Ext(filename))
|
|
|
|
if fileExtension == "png" {
|
|
|
|
contentType = "image/png"
|
|
|
|
}
|
|
|
|
|
|
|
|
w.Header().Set("Content-Type", contentType)
|
|
|
|
|
2020-10-16 16:36:08 +02:00
|
|
|
filePath := a.app().GetFilePath(filename)
|
2020-10-16 11:41:56 +02:00
|
|
|
http.ServeFile(w, r, filePath)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *API) handleUploadFile(w http.ResponseWriter, r *http.Request) {
|
|
|
|
fmt.Println(`handleUploadFile`)
|
2020-10-22 13:34:42 +02:00
|
|
|
|
2020-10-16 11:41:56 +02:00
|
|
|
file, handle, err := r.FormFile("file")
|
|
|
|
if err != nil {
|
|
|
|
fmt.Fprintf(w, "%v", err)
|
2020-10-22 15:22:36 +02:00
|
|
|
|
2020-10-16 11:41:56 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
defer file.Close()
|
|
|
|
|
|
|
|
log.Printf(`handleUploadFile, filename: %s`, handle.Filename)
|
|
|
|
|
2020-10-16 16:36:08 +02:00
|
|
|
url, err := a.app().SaveFile(file, handle.Filename)
|
2020-10-16 11:41:56 +02:00
|
|
|
if err != nil {
|
|
|
|
jsonStringResponse(w, http.StatusInternalServerError, `{}`)
|
2020-10-22 15:22:36 +02:00
|
|
|
|
2020-10-16 11:41:56 +02:00
|
|
|
return
|
|
|
|
}
|
2020-10-22 13:34:42 +02:00
|
|
|
|
2020-10-16 11:41:56 +02:00
|
|
|
log.Printf(`saveFile, url: %s`, url)
|
|
|
|
json := fmt.Sprintf(`{ "url": "%s" }`, url)
|
|
|
|
jsonStringResponse(w, http.StatusOK, json)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Response helpers
|
|
|
|
|
|
|
|
func jsonStringResponse(w http.ResponseWriter, code int, message string) {
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
|
|
w.WriteHeader(code)
|
|
|
|
fmt.Fprint(w, message)
|
|
|
|
}
|
|
|
|
|
|
|
|
func jsonBytesResponse(w http.ResponseWriter, code int, json []byte) {
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
|
|
w.WriteHeader(code)
|
|
|
|
w.Write(json)
|
|
|
|
}
|
|
|
|
|
2020-10-22 15:22:36 +02:00
|
|
|
func errorResponse(w http.ResponseWriter, code int, message map[string]string) {
|
2020-10-16 11:41:56 +02:00
|
|
|
log.Printf("%d ERROR", code)
|
2020-11-17 15:43:56 +01:00
|
|
|
w.Header().Set("Content-Type", "application/json")
|
2020-10-22 15:22:36 +02:00
|
|
|
data, err := json.Marshal(message)
|
|
|
|
if err != nil {
|
|
|
|
data = []byte("{}")
|
|
|
|
}
|
2020-10-16 11:41:56 +02:00
|
|
|
w.WriteHeader(code)
|
2020-11-12 19:16:59 +01:00
|
|
|
w.Write(data)
|
2020-10-16 11:41:56 +02:00
|
|
|
}
|
2020-10-16 16:21:42 +02:00
|
|
|
|
|
|
|
func addUserID(rw http.ResponseWriter, req *http.Request, next http.Handler) {
|
|
|
|
ctx := context.WithValue(req.Context(), "userid", req.Header.Get("userid"))
|
|
|
|
req = req.WithContext(ctx)
|
|
|
|
next.ServeHTTP(rw, req)
|
|
|
|
}
|