-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
restapiUpload.go
188 lines (182 loc) · 5.65 KB
/
restapiUpload.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
package main
import (
"bytes"
"encoding/json"
"html/template"
"image"
"io/ioutil"
"net/http"
"os"
"path"
"strconv"
"github.com/disintegration/imaging"
"golang.org/x/sys/unix"
"gopkg.in/mgo.v2"
)
// handleAPIUploadThumbnail 함수는 thumbnail 이미지를 업로드 하는 RestAPI 이다.
func handleAPIUploadThumbnail(w http.ResponseWriter, r *http.Request) {
type Recipe struct {
Project string `json:"project"`
Name string `json:"name"`
Type string `json:"type"`
Path string `json:"path"`
UploadFilename string `json:"uploadfilename"`
}
rcp := Recipe{}
session, err := mgo.Dial(*flagDBIP)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
defer session.Close()
_, _, err = TokenHandler(r, session)
if err != nil {
http.Error(w, err.Error(), http.StatusUnauthorized)
return
}
// 어드민 셋팅을 불러온다.
umask, err := strconv.Atoi(CachedAdminSetting.Umask)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
uid, err := strconv.Atoi(CachedAdminSetting.ThumbnailImagePathUID)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
gid, err := strconv.Atoi(CachedAdminSetting.ThumbnailImagePathGID)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
permission, err := strconv.ParseInt(CachedAdminSetting.ThumbnailImagePathPermission, 8, 64)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
// 폼을 분석한다.
err = r.ParseMultipartForm(int64(CachedAdminSetting.MultipartFormBufferSize))
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
project := r.FormValue("project")
if project == "" {
http.Error(w, "need project", http.StatusBadRequest)
return
}
rcp.Project = project
name := r.FormValue("name")
if name == "" {
http.Error(w, "need name", http.StatusBadRequest)
return
}
rcp.Name = name
typ := r.FormValue("type")
if typ == "" {
itemType, err := Type(session, rcp.Project, rcp.Name)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
rcp.Type = itemType
} else {
rcp.Type = typ
}
if len(r.MultipartForm.File) == 0 { // 파일이 없다면 에러처리한다.
http.Error(w, "need thumbnail image path", http.StatusBadRequest)
return
}
// 썸네일이 존재한다면 썸네일을 처리한다.
for _, files := range r.MultipartForm.File {
if len(files) != 1 { // 파일이 복수일 때
http.Error(w, "multiple files cannot be set", http.StatusBadRequest)
return
}
for _, f := range files {
rcp.UploadFilename = f.Filename // 파일명을 추출한다. 추후 파일명으로 연산을 하고 싶은 상황이 된다면 진행할 것
if f.Size == 0 {
http.Error(w, "file size is 0 bytes", http.StatusBadRequest)
return
}
file, err := f.Open()
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
continue
}
defer file.Close()
unix.Umask(umask)
switch f.Header.Get("Content-Type") {
case "image/jpeg", "image/png":
data, err := ioutil.ReadAll(file)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
// adminsetting에 설정된 썸네일 템플릿에 실제 값을 넣는다.
var thumbImgPath bytes.Buffer
thumbImgPathTmpl, err := template.New("thumbImgPath").Parse(CachedAdminSetting.ThumbnailImagePath)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
err = thumbImgPathTmpl.Execute(&thumbImgPath, rcp)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
// 썸네일 이미지가 이미 존재하는 경우 이미지 파일을 지운다.
if _, err := os.Stat(thumbImgPath.String()); os.IsExist(err) {
err = os.Remove(thumbImgPath.String())
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
}
// 썸네일 경로를 생성한다.
path, _ := path.Split(thumbImgPath.String())
if _, err := os.Stat(path); os.IsNotExist(err) {
// 폴더를 생성한다.
err = os.MkdirAll(path, os.FileMode(permission))
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
// 위 폴더가 잘 생성되어 존재한다면 폴더의 권한을 설정한다.
if _, err := os.Stat(path); os.IsExist(err) {
err = os.Chown(path, uid, gid)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
}
}
// 사용자가 업로드한 데이터를 이미지 자료구조로 만들고 리사이즈 한다.
img, _, err := image.Decode(bytes.NewReader(data)) // 전송된 바이트 파일을 이미지 자료구조로 변환한다.
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
resizedImage := imaging.Fill(img, CachedAdminSetting.ThumbnailImageWidth, CachedAdminSetting.ThumbnailImageHeight, imaging.Center, imaging.Lanczos)
err = imaging.Save(resizedImage, thumbImgPath.String())
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
rcp.Path = thumbImgPath.String()
default:
http.Error(w, "not support format", http.StatusBadRequest)
return
}
}
}
data, err := json.Marshal(rcp)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
w.Header().Set("Content-Type", "application/json; charset=utf-8")
w.WriteHeader(http.StatusOK)
w.Write(data)
}