2023-03-12 15:00:57 +00:00
|
|
|
// GoToSocial
|
|
|
|
// Copyright (C) GoToSocial Authors admin@gotosocial.org
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
//
|
|
|
|
// 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/>.
|
2021-04-19 18:42:19 +01:00
|
|
|
|
2021-04-01 19:46:45 +01:00
|
|
|
package fileserver
|
|
|
|
|
|
|
|
import (
|
2021-04-19 18:42:19 +01:00
|
|
|
"net/http"
|
2021-04-01 19:46:45 +01:00
|
|
|
|
2023-01-02 12:10:50 +00:00
|
|
|
"github.com/gin-gonic/gin"
|
2021-05-30 12:12:00 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/processing"
|
2021-04-01 19:46:45 +01:00
|
|
|
)
|
|
|
|
|
2021-04-19 18:42:19 +01:00
|
|
|
const (
|
2021-06-13 17:42:28 +01:00
|
|
|
// AccountIDKey is the url key for account id (an account ulid)
|
2021-04-19 18:42:19 +01:00
|
|
|
AccountIDKey = "account_id"
|
2021-04-20 17:14:23 +01:00
|
|
|
// MediaTypeKey is the url key for media type (usually something like attachment or header etc)
|
2021-04-19 18:42:19 +01:00
|
|
|
MediaTypeKey = "media_type"
|
2021-04-20 17:14:23 +01:00
|
|
|
// MediaSizeKey is the url key for the desired media size--original/small/static
|
2021-04-19 18:42:19 +01:00
|
|
|
MediaSizeKey = "media_size"
|
2021-04-20 17:14:23 +01:00
|
|
|
// FileNameKey is the actual filename being sought. Will usually be a UUID then something like .jpeg
|
2021-05-08 13:25:55 +01:00
|
|
|
FileNameKey = "file_name"
|
2023-01-02 12:10:50 +00:00
|
|
|
// FileServePath is the fileserve path minus the 'fileserver' prefix.
|
|
|
|
FileServePath = "/:" + AccountIDKey + "/:" + MediaTypeKey + "/:" + MediaSizeKey + "/:" + FileNameKey
|
2021-04-19 18:42:19 +01:00
|
|
|
)
|
|
|
|
|
2023-01-02 12:10:50 +00:00
|
|
|
type Module struct {
|
2023-02-22 15:05:26 +00:00
|
|
|
processor *processing.Processor
|
2021-04-01 19:46:45 +01:00
|
|
|
}
|
|
|
|
|
2023-02-22 15:05:26 +00:00
|
|
|
func New(processor *processing.Processor) *Module {
|
2023-01-02 12:10:50 +00:00
|
|
|
return &Module{
|
2021-12-20 14:19:53 +00:00
|
|
|
processor: processor,
|
2021-04-01 19:46:45 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-02 12:10:50 +00:00
|
|
|
func (m *Module) Route(attachHandler func(method string, path string, f ...gin.HandlerFunc) gin.IRoutes) {
|
|
|
|
attachHandler(http.MethodGet, FileServePath, m.ServeFile)
|
|
|
|
attachHandler(http.MethodHead, FileServePath, m.ServeFile)
|
2021-04-01 19:46:45 +01:00
|
|
|
}
|