focalboard/server/main/app.go

114 lines
2.5 KiB
Go
Raw Normal View History

2020-10-16 16:21:42 +02:00
package main
2020-10-16 16:36:08 +02:00
import (
"fmt"
"io"
"io/ioutil"
"os"
"path/filepath"
"strings"
)
2020-10-16 16:21:42 +02:00
type App struct {
2020-10-16 16:36:08 +02:00
config *Configuration
2020-10-16 16:21:42 +02:00
store *SQLStore
wsServer *WSServer
}
func (a *App) GetBlocks(parentID string, blockType string) ([]Block, error) {
if len(blockType) > 0 && len(parentID) > 0 {
return a.store.getBlocksWithParentAndType(parentID, blockType)
}
if len(blockType) > 0 {
return a.store.getBlocksWithType(blockType)
}
return a.store.getBlocksWithParent(parentID)
}
func (a *App) GetParentID(blockID string) (string, error) {
return a.store.getParentID(blockID)
}
func (a *App) InsertBlock(block Block) error {
return a.store.insertBlock(block)
}
func (a *App) InsertBlocks(blocks []Block) error {
var blockIDsToNotify = []string{}
uniqueBlockIDs := make(map[string]bool)
for _, block := range blocks {
if !uniqueBlockIDs[block.ID] {
blockIDsToNotify = append(blockIDsToNotify, block.ID)
}
if len(block.ParentID) > 0 && !uniqueBlockIDs[block.ParentID] {
blockIDsToNotify = append(blockIDsToNotify, block.ParentID)
}
err := a.store.insertBlock(block)
if err != nil {
return err
}
}
2020-10-16 16:36:08 +02:00
a.wsServer.broadcastBlockChangeToWebsocketClients(blockIDsToNotify)
2020-10-16 16:21:42 +02:00
return nil
}
func (a *App) GetSubTree(blockID string) ([]Block, error) {
return a.store.getSubTree(blockID)
}
func (a *App) GetAllBlocks() ([]Block, error) {
return a.store.getAllBlocks()
}
func (a *App) DeleteBlock(blockID string) error {
var blockIDsToNotify = []string{blockID}
parentID, err := a.GetParentID(blockID)
if err != nil {
return err
}
if len(parentID) > 0 {
blockIDsToNotify = append(blockIDsToNotify, parentID)
}
err = a.store.deleteBlock(blockID)
if err != nil {
return err
}
a.wsServer.broadcastBlockChangeToWebsocketClients(blockIDsToNotify)
return nil
}
2020-10-16 16:36:08 +02:00
func (a *App) SaveFile(reader io.Reader, filename string) (string, error) {
data, err := ioutil.ReadAll(reader)
if err != nil {
return "", err
}
// NOTE: File extension includes the dot
fileExtension := strings.ToLower(filepath.Ext(filename))
if fileExtension == ".jpeg" {
fileExtension = ".jpg"
}
createdFilename := fmt.Sprintf(`%s%s`, createGUID(), fileExtension)
folderPath := a.config.FilesPath
filePath := filepath.Join(folderPath, createdFilename)
os.MkdirAll(folderPath, os.ModePerm)
err = ioutil.WriteFile(filePath, data, 0666)
if err != nil {
return "", err
}
return fmt.Sprintf(`%s/files/%s`, a.config.ServerRoot, createdFilename), nil
}
func (a *App) GetFilePath(filename string) string {
folderPath := a.config.FilesPath
return filepath.Join(folderPath, filename)
}