summaryrefslogtreecommitdiffstats
path: root/api4/file.go
diff options
context:
space:
mode:
authorSaturnino Abril <saturnino.abril@gmail.com>2017-03-12 07:24:44 +0900
committerenahum <nahumhbl@gmail.com>2017-03-11 19:24:44 -0300
commitd32334cdfb09b25a97c4731721ce9be836f95300 (patch)
treef9da2fa15b6b70d2b27e8a98b868b0377a6b70d9 /api4/file.go
parentce772b87da3266f7261986ed2c9048c3d3d5ebe0 (diff)
downloadchat-d32334cdfb09b25a97c4731721ce9be836f95300.tar.gz
chat-d32334cdfb09b25a97c4731721ce9be836f95300.tar.bz2
chat-d32334cdfb09b25a97c4731721ce9be836f95300.zip
Endpoint for APIv4: /files/{file_id}/link (#5607)
* APIv4: /files/{file_id}/link * updated public link
Diffstat (limited to 'api4/file.go')
-rw-r--r--api4/file.go36
1 files changed, 36 insertions, 0 deletions
diff --git a/api4/file.go b/api4/file.go
index 924f7e416..566878156 100644
--- a/api4/file.go
+++ b/api4/file.go
@@ -24,6 +24,7 @@ func InitFile() {
BaseRoutes.Files.Handle("", ApiSessionRequired(uploadFile)).Methods("POST")
BaseRoutes.File.Handle("", ApiSessionRequired(getFile)).Methods("GET")
BaseRoutes.File.Handle("/thumbnail", ApiSessionRequired(getFileThumbnail)).Methods("GET")
+ BaseRoutes.File.Handle("/link", ApiSessionRequired(getFileLink)).Methods("GET")
}
@@ -125,6 +126,41 @@ func getFileThumbnail(c *Context, w http.ResponseWriter, r *http.Request) {
}
}
+func getFileLink(c *Context, w http.ResponseWriter, r *http.Request) {
+ c.RequireFileId()
+ if c.Err != nil {
+ return
+ }
+
+ if !utils.Cfg.FileSettings.EnablePublicLink {
+ c.Err = model.NewLocAppError("getPublicLink", "api.file.get_public_link.disabled.app_error", nil, "")
+ c.Err.StatusCode = http.StatusNotImplemented
+ return
+ }
+
+ info, err := app.GetFileInfo(c.Params.FileId)
+ if err != nil {
+ c.Err = err
+ return
+ }
+
+ if info.CreatorId != c.Session.UserId && !app.SessionHasPermissionToChannelByPost(c.Session, info.PostId, model.PERMISSION_READ_CHANNEL) {
+ c.SetPermissionError(model.PERMISSION_READ_CHANNEL)
+ return
+ }
+
+ if len(info.PostId) == 0 {
+ c.Err = model.NewLocAppError("getPublicLink", "api.file.get_public_link.no_post.app_error", nil, "file_id="+info.Id)
+ c.Err.StatusCode = http.StatusBadRequest
+ return
+ }
+
+ resp := make(map[string]string)
+ resp["link"] = app.GeneratePublicLink(c.GetSiteURL(), info)
+
+ w.Write([]byte(model.MapToJson(resp)))
+}
+
func writeFileResponse(filename string, contentType string, bytes []byte, w http.ResponseWriter, r *http.Request) *model.AppError {
w.Header().Set("Cache-Control", "max-age=2592000, public")
w.Header().Set("Content-Length", strconv.Itoa(len(bytes)))