-
Notifications
You must be signed in to change notification settings - Fork 1
/
FileController.go
338 lines (268 loc) · 6.93 KB
/
FileController.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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
package files
import (
"fmt"
"net/http"
"os"
"path"
"github.com/go-catupiry/catu"
"github.com/go-catupiry/catu/helpers"
files_helpers "github.com/go-catupiry/files/helpers"
"github.com/google/uuid"
"github.com/labstack/echo/v4"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
"gorm.io/gorm"
"gorm.io/gorm/clause"
)
type FileListJSONResponse struct {
catu.BaseListReponse
Records *[]*FileModel `json:"file"`
}
type FileFindOneJSONResponse struct {
Record *FileModel `json:"file"`
}
type FileBodyRequest struct {
Record *FileModel `json:"file"`
}
func NewFileController(cfgs *FileControllerConfiguration) *FileController {
return &FileController{App: cfgs.App}
}
type FileControllerConfiguration struct {
App catu.App
}
type FileController struct {
App catu.App
}
type FileQueryOpts struct {
Records *[]*FileModel
Count *int64
Limit int
Offset int
C echo.Context
IsHTML bool
}
func (ctl *FileController) Query(c echo.Context) error {
var err error
ctx := c.(*catu.RequestContext)
can := ctx.Can("find_file")
if !can {
return echo.NewHTTPError(http.StatusForbidden, "Forbidden")
}
var count int64
records := make([]*FileModel, 0)
err = FileQueryAndCountReq(&FileQueryOpts{
Records: &records,
Count: &count,
Limit: ctx.GetLimit(),
Offset: ctx.GetOffset(),
C: c,
})
if err != nil {
logrus.WithFields(logrus.Fields{
"error": err,
}).Debug("FileController.Query Error on find records")
}
ctx.Pager.Count = count
logrus.WithFields(logrus.Fields{
"count": count,
"len_records_found": len(records),
}).Debug("FileController.Query count result")
for i := range records {
records[i].LoadData()
}
resp := FileListJSONResponse{
Records: &records,
}
resp.Meta.Count = count
return c.JSON(200, &resp)
}
func (ctl *FileController) Update(c echo.Context) error {
var err error
id := c.Param("id")
RequestContext := c.(*catu.RequestContext)
logrus.WithFields(logrus.Fields{
"id": id,
"roles": RequestContext.GetAuthenticatedRoles(),
}).Debug("FileController.Update id from params")
can := RequestContext.Can("update_file")
if !can {
return echo.NewHTTPError(http.StatusForbidden, "Forbidden")
}
record := FileModel{}
err = FileFindOne(id, &record)
if err != nil {
logrus.WithFields(logrus.Fields{
"id": id,
"error": err,
}).Debug("FileController.Update error on find one")
return errors.Wrap(err, "FileController.Update error on find one")
}
record.LoadData()
body := FileFindOneJSONResponse{Record: &record}
if err := c.Bind(&body); err != nil {
logrus.WithFields(logrus.Fields{
"id": id,
"error": err,
}).Debug("FileController.Update error on bind")
if _, ok := err.(*echo.HTTPError); ok {
return err
}
return c.NoContent(http.StatusNotFound)
}
err = record.Save()
if err != nil {
return err
}
resp := FileFindOneJSONResponse{
Record: &record,
}
return c.JSON(http.StatusOK, &resp)
}
func (ctl *FileController) FindOne(c echo.Context) error {
id := c.Param("id")
style := "original"
ctx := c.(*catu.RequestContext)
can := ctx.Can("find_file")
if !can {
return echo.NewHTTPError(http.StatusForbidden, "Forbidden")
}
logrus.WithFields(logrus.Fields{
"id": id,
}).Debug("FileController.FindOne id from params")
record := FileModel{}
err := FileFindOne(id, &record)
if err != nil {
return err
}
if record.ID == 0 {
logrus.WithFields(logrus.Fields{
"id": id,
}).Debug("FileController.FindOne id record not found")
return echo.NotFoundHandler(c)
}
record.LoadData()
return c.Redirect(http.StatusFound, record.GetUrl(style))
}
func (ctl *FileController) FindOneData(c echo.Context) error {
id := c.Param("id")
ctx := c.(*catu.RequestContext)
logrus.WithFields(logrus.Fields{
"id": id,
}).Debug("FileController.FindOne id from params")
can := ctx.Can("find_image")
if !can {
return echo.NewHTTPError(http.StatusForbidden, "Forbidden")
}
record := FileModel{}
err := FileFindOne(id, &record)
if err != nil {
return err
}
if record.ID == 0 {
logrus.WithFields(logrus.Fields{
"id": id,
}).Debug("FileController.FindOne id record not found")
return echo.NotFoundHandler(c)
}
record.LoadData()
resp := FileFindOneJSONResponse{
Record: &record,
}
return c.JSON(200, &resp)
}
func (ctl *FileController) UploadFile(c echo.Context) error {
var err error
ctx := c.(*catu.RequestContext)
can := ctx.Can("create_file")
if !can {
return echo.NewHTTPError(http.StatusForbidden, "Forbidden")
}
// file upload settings:
filePlugin := ctl.App.GetPlugin("files").(*FilePlugin)
fileId := uuid.New().String()
// Destination
tmpFilePath := path.Join(os.TempDir(), fileId)
file, err := c.FormFile("file")
if err != nil {
return err
}
err = files_helpers.CopyRequestFileToTMP(ctx, "file", tmpFilePath)
if err != nil {
return err
}
defer os.Remove(tmpFilePath)
newFile := NewFileModel()
err = UploadFileFromLocalhost(file.Filename, c.FormValue("description"), tmpFilePath, filePlugin.FileStorageName, newFile, ctl.App)
if err != nil {
return err
}
err = newFile.Save()
if err != nil {
return err
}
return c.JSON(http.StatusOK, &FileFindOneJSONResponse{Record: newFile})
}
func FileQueryAndCountReq(opts *FileQueryOpts) error {
db := catu.GetDefaultDatabaseConnection()
c := opts.C
q := c.QueryParam("q")
query := db
ctx := c.(*catu.RequestContext)
queryI, err := ctx.Query.SetDatabaseQueryForModel(query, &FileModel{})
if err != nil {
logrus.WithFields(logrus.Fields{
"error": fmt.Sprintf("%+v\n", err),
}).Error("FileQueryAndCountReq error")
}
query = queryI.(*gorm.DB)
if q != "" {
query = query.Where(
db.Where("name LIKE ?", "%"+q+"%").
Or(db.Where("label LIKE ?", "%"+q+"%")).
Or(db.Where("description LIKE ?", "%"+q+"%")),
)
}
orderColumn, orderIsDesc, orderValid := helpers.ParseUrlQueryOrder(c.QueryParam("order"), c.QueryParam("sort"), c.QueryParam("sortDirection"))
if orderValid {
query = query.Order(clause.OrderByColumn{
Column: clause.Column{Table: clause.CurrentTable, Name: orderColumn},
Desc: orderIsDesc,
})
} else {
query = query.
Order("createdAt DESC").
Order("id DESC")
}
query = query.Limit(opts.Limit).
Offset(opts.Offset)
r := query.Find(opts.Records)
if r.Error != nil {
return r.Error
}
return FileCountReq(opts)
}
func FileCountReq(opts *FileQueryOpts) error {
db := catu.GetDefaultDatabaseConnection()
c := opts.C
q := c.QueryParam("q")
ctx := c.(*catu.RequestContext)
// Count ...
queryCount := db
if q != "" {
queryCount = queryCount.Or(
db.Where("label LIKE ?", "%"+q+"%"),
db.Where("name LIKE ?", "%"+q+"%"),
db.Where("description LIKE ?", "%"+q+"%"),
)
}
queryICount, err := ctx.Query.SetDatabaseQueryForModel(queryCount, &FileModel{})
if err != nil {
logrus.WithFields(logrus.Fields{
"error": fmt.Sprintf("%+v\n", err),
}).Error("FileCountReq count error")
}
queryCount = queryICount.(*gorm.DB)
return queryCount.
Table("files").
Count(opts.Count).Error
}