| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | /* | 
					
						
							|  |  |  |    GoToSocial | 
					
						
							| 
									
										
										
										
											2021-12-20 18:42:19 +01:00
										 |  |  |    Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |    This program is free software: you can redistribute it and/or modify | 
					
						
							|  |  |  |    it under the terms of the GNU Affero General Public License as published by | 
					
						
							|  |  |  |    the Free Software Foundation, either version 3 of the License, or | 
					
						
							|  |  |  |    (at your option) any later version. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |    but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  |    GNU Affero General Public License for more details. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    You should have received a copy of the GNU Affero General Public License | 
					
						
							|  |  |  |    along with this program.  If not, see <http://www.gnu.org/licenses/>. | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | package fileserver | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2022-06-08 20:38:03 +02:00
										 |  |  | 	"fmt" | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 	"net/http" | 
					
						
							| 
									
										
										
										
											2022-07-30 14:42:47 +02:00
										 |  |  | 	"strconv" | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/gin-gonic/gin" | 
					
						
							| 
									
										
										
										
											2021-12-11 17:50:00 +01:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/api" | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/api/model" | 
					
						
							| 
									
										
										
										
											2022-06-08 20:38:03 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/gtserror" | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/log" | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/oauth" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // ServeFile is for serving attachments, headers, and avatars to the requester from instance storage. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // Note: to mitigate scraping attempts, no information should be given out on a bad request except "404 page not found". | 
					
						
							|  |  |  | // Don't give away account ids or media ids or anything like that; callers shouldn't be able to infer anything. | 
					
						
							|  |  |  | func (m *FileServer) ServeFile(c *gin.Context) { | 
					
						
							|  |  |  | 	authed, err := oauth.Authed(c, false, false, false, false) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2022-06-08 20:38:03 +02:00
										 |  |  | 		api.ErrorHandler(c, gtserror.NewErrorNotFound(err), m.processor.InstanceGet) | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// We use request params to check what to pull out of the database/storage so check everything. A request URL should be formatted as follows: | 
					
						
							|  |  |  | 	// "https://example.org/fileserver/[ACCOUNT_ID]/[MEDIA_TYPE]/[MEDIA_SIZE]/[FILE_NAME]" | 
					
						
							|  |  |  | 	// "FILE_NAME" consists of two parts, the attachment's database id, a period, and the file extension. | 
					
						
							|  |  |  | 	accountID := c.Param(AccountIDKey) | 
					
						
							|  |  |  | 	if accountID == "" { | 
					
						
							| 
									
										
										
										
											2022-06-08 20:38:03 +02:00
										 |  |  | 		err := fmt.Errorf("missing %s from request", AccountIDKey) | 
					
						
							|  |  |  | 		api.ErrorHandler(c, gtserror.NewErrorNotFound(err), m.processor.InstanceGet) | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mediaType := c.Param(MediaTypeKey) | 
					
						
							|  |  |  | 	if mediaType == "" { | 
					
						
							| 
									
										
										
										
											2022-06-08 20:38:03 +02:00
										 |  |  | 		err := fmt.Errorf("missing %s from request", MediaTypeKey) | 
					
						
							|  |  |  | 		api.ErrorHandler(c, gtserror.NewErrorNotFound(err), m.processor.InstanceGet) | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mediaSize := c.Param(MediaSizeKey) | 
					
						
							|  |  |  | 	if mediaSize == "" { | 
					
						
							| 
									
										
										
										
											2022-06-08 20:38:03 +02:00
										 |  |  | 		err := fmt.Errorf("missing %s from request", MediaSizeKey) | 
					
						
							|  |  |  | 		api.ErrorHandler(c, gtserror.NewErrorNotFound(err), m.processor.InstanceGet) | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fileName := c.Param(FileNameKey) | 
					
						
							|  |  |  | 	if fileName == "" { | 
					
						
							| 
									
										
										
										
											2022-06-08 20:38:03 +02:00
										 |  |  | 		err := fmt.Errorf("missing %s from request", FileNameKey) | 
					
						
							|  |  |  | 		api.ErrorHandler(c, gtserror.NewErrorNotFound(err), m.processor.InstanceGet) | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-07 11:08:26 +01:00
										 |  |  | 	content, errWithCode := m.processor.FileGet(c.Request.Context(), authed, &model.GetContentRequestForm{ | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 		AccountID: accountID, | 
					
						
							|  |  |  | 		MediaType: mediaType, | 
					
						
							|  |  |  | 		MediaSize: mediaSize, | 
					
						
							|  |  |  | 		FileName:  fileName, | 
					
						
							|  |  |  | 	}) | 
					
						
							| 
									
										
										
										
											2022-03-07 11:08:26 +01:00
										 |  |  | 	if errWithCode != nil { | 
					
						
							| 
									
										
										
										
											2022-06-08 20:38:03 +02:00
										 |  |  | 		api.ErrorHandler(c, errWithCode, m.processor.InstanceGet) | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-19 11:44:56 +01:00
										 |  |  | 	defer func() { | 
					
						
							| 
									
										
										
										
											2022-11-03 15:03:12 +01:00
										 |  |  | 		// close content when we're done | 
					
						
							| 
									
										
										
										
											2022-09-19 13:43:22 +02:00
										 |  |  | 		if content.Content != nil { | 
					
						
							| 
									
										
										
										
											2022-11-03 15:03:12 +01:00
										 |  |  | 			if err := content.Content.Close(); err != nil { | 
					
						
							|  |  |  | 				log.Errorf("ServeFile: error closing readcloser: %s", err) | 
					
						
							| 
									
										
										
										
											2022-02-19 11:44:56 +01:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	}() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-19 13:43:22 +02:00
										 |  |  | 	if content.URL != nil { | 
					
						
							|  |  |  | 		c.Redirect(http.StatusFound, content.URL.String()) | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-11 17:50:00 +01:00
										 |  |  | 	// TODO: if the requester only accepts text/html we should try to serve them *something*. | 
					
						
							| 
									
										
										
										
											2021-05-10 16:29:05 +02:00
										 |  |  | 	// This is mostly needed because when sharing a link to a gts-hosted file on something like mastodon, the masto servers will | 
					
						
							|  |  |  | 	// attempt to look up the content to provide a preview of the link, and they ask for text/html. | 
					
						
							| 
									
										
										
										
											2022-06-08 20:38:03 +02:00
										 |  |  | 	format, err := api.NegotiateAccept(c, api.MIME(content.ContentType)) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		api.ErrorHandler(c, gtserror.NewErrorNotAcceptable(err, err.Error()), m.processor.InstanceGet) | 
					
						
							| 
									
										
										
										
											2021-05-10 16:29:05 +02:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-30 14:42:47 +02:00
										 |  |  | 	// since we'll never host different files at the same | 
					
						
							|  |  |  | 	// URL (bc the ULIDs are generated per piece of media), | 
					
						
							|  |  |  | 	// it's sensible and safe to use a long cache here, so | 
					
						
							|  |  |  | 	// that clients don't keep fetching files over + over again | 
					
						
							|  |  |  | 	c.Header("Cache-Control", "max-age=604800") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if c.Request.Method == http.MethodHead { | 
					
						
							|  |  |  | 		c.Header("Content-Type", format) | 
					
						
							|  |  |  | 		c.Header("Content-Length", strconv.FormatInt(content.ContentLength, 10)) | 
					
						
							|  |  |  | 		c.Status(http.StatusOK) | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	c.DataFromReader(http.StatusOK, content.ContentLength, format, content.Content, nil) | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | } |