-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.go
98 lines (86 loc) · 2.39 KB
/
app.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
package main
import (
"errors"
"fmt"
"io"
"net/http"
"os"
"os/exec"
"strings"
"time"
"github.com/unrolled/render"
)
//App represents current context
type App struct {
Config Configuration
Version string
Render *render.Render
}
//VersionAction Prints the current version
func (app *App) VersionAction(res http.ResponseWriter, req *http.Request) {
m := make(map[string]string)
m["version"] = app.Version
app.Render.JSON(res, 200, m)
}
//ConvertAction Converts any docx to given format
func (app *App) ConvertAction(res http.ResponseWriter, req *http.Request) {
// Handle incoming file (upload)
file, _, err := req.FormFile("file")
if err != nil {
app.Render.JSON(res, 400, "No file found in request.")
return
}
defer file.Close()
tempName := fmt.Sprintf("%d-document", time.Now().Unix())
// Save contents to tempfile
path := fmt.Sprintf("%s/%s", app.Config.OutputDir, tempName)
tempOut, err := os.Create(path)
defer tempOut.Close()
if err != nil {
app.Render.JSON(res, 500, "Can't create temporary file path")
return
}
_, err = io.Copy(tempOut, file)
if err != nil {
app.Render.JSON(res, 500, "Can't copy contents to temporary file path")
return
}
defer os.Remove(path)
format, err := app.getFormatFromRequest(req)
if err != nil {
app.Render.JSON(res, 400, "Unsupported format")
return
}
cmd := exec.Command("soffice", "--headless", "--convert-to", format, "--outdir", app.Config.OutputDir, path)
_, err = cmd.Output()
if err != nil {
app.Render.JSON(res, 500, fmt.Sprintf("Error during conversion: %s", err))
return
}
// File has been converted now serve it back
newPath := fmt.Sprintf("%s/%s.%s", app.Config.OutputDir, tempName, format)
//delete file from server once it has been served
defer os.Remove(newPath)
res.Header().Set("Content-type", fmt.Sprintf("application/%s", format))
http.ServeFile(res, req, newPath)
}
//Check the format from query string to match the ones in the config
func (app *App) getFormatFromRequest(req *http.Request) (string, error) {
format := req.URL.Query().Get("format")
format = strings.ToLower(format)
if a := stringInSlice(format, app.Config.AllowedFormats); a == true {
return format, nil
} else {
err := errors.New("Unsupported format")
return "", err
}
}
// Check if a string exists in array
func stringInSlice(a string, list []string) bool {
for _, b := range list {
if b == a {
return true
}
}
return false
}