2017-05-26 02:57:09 -05:00
|
|
|
// Copyright 2017 Vector Creations Ltd
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package routing
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/gorilla/mux"
|
2017-05-26 06:37:07 -05:00
|
|
|
"github.com/matrix-org/dendrite/common"
|
2017-05-26 02:57:09 -05:00
|
|
|
"github.com/matrix-org/dendrite/mediaapi/config"
|
2017-05-26 09:49:54 -05:00
|
|
|
"github.com/matrix-org/dendrite/mediaapi/storage"
|
2017-05-26 02:57:09 -05:00
|
|
|
"github.com/matrix-org/dendrite/mediaapi/types"
|
|
|
|
"github.com/matrix-org/dendrite/mediaapi/writers"
|
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
|
|
"github.com/matrix-org/util"
|
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
|
|
)
|
|
|
|
|
|
|
|
const pathPrefixR0 = "/_matrix/media/v1"
|
|
|
|
|
|
|
|
// Setup registers HTTP handlers with the given ServeMux. It also supplies the given http.Client
|
|
|
|
// to clients which need to make outbound HTTP requests.
|
2017-05-26 09:49:54 -05:00
|
|
|
func Setup(servMux *http.ServeMux, httpClient *http.Client, cfg *config.MediaAPI, db *storage.Database) {
|
2017-05-26 02:57:09 -05:00
|
|
|
apiMux := mux.NewRouter()
|
|
|
|
r0mux := apiMux.PathPrefix(pathPrefixR0).Subrouter()
|
2017-06-06 18:12:49 -05:00
|
|
|
|
|
|
|
activeThumbnailGeneration := &types.ActiveThumbnailGeneration{
|
|
|
|
PathToResult: map[string]*types.ThumbnailGenerationResult{},
|
|
|
|
}
|
|
|
|
|
2017-05-26 09:49:54 -05:00
|
|
|
// FIXME: /upload should use common.MakeAuthAPI()
|
2017-05-26 06:37:07 -05:00
|
|
|
r0mux.Handle("/upload", common.MakeAPI("upload", func(req *http.Request) util.JSONResponse {
|
2017-06-06 18:12:49 -05:00
|
|
|
return writers.Upload(req, cfg, db, activeThumbnailGeneration)
|
2017-05-26 02:57:09 -05:00
|
|
|
}))
|
|
|
|
|
|
|
|
activeRemoteRequests := &types.ActiveRemoteRequests{
|
2017-05-31 10:56:11 -05:00
|
|
|
MXCToResult: map[string]*types.RemoteRequestResult{},
|
2017-05-26 02:57:09 -05:00
|
|
|
}
|
|
|
|
r0mux.Handle("/download/{serverName}/{mediaId}",
|
2017-06-06 18:12:49 -05:00
|
|
|
makeDownloadAPI("download", cfg, db, activeRemoteRequests, activeThumbnailGeneration),
|
|
|
|
)
|
|
|
|
r0mux.Handle("/thumbnail/{serverName}/{mediaId}",
|
|
|
|
makeDownloadAPI("thumbnail", cfg, db, activeRemoteRequests, activeThumbnailGeneration),
|
2017-05-26 02:57:09 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
servMux.Handle("/metrics", prometheus.Handler())
|
|
|
|
servMux.Handle("/api/", http.StripPrefix("/api", apiMux))
|
|
|
|
}
|
2017-06-06 18:12:49 -05:00
|
|
|
|
|
|
|
func makeDownloadAPI(name string, cfg *config.MediaAPI, db *storage.Database, activeRemoteRequests *types.ActiveRemoteRequests, activeThumbnailGeneration *types.ActiveThumbnailGeneration) http.HandlerFunc {
|
|
|
|
return prometheus.InstrumentHandler(name, http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
|
|
|
|
req = util.RequestWithLogging(req)
|
|
|
|
|
|
|
|
// Set common headers returned regardless of the outcome of the request
|
|
|
|
util.SetCORSHeaders(w)
|
|
|
|
// Content-Type will be overridden in case of returning file data, else we respond with JSON-formatted errors
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
|
|
|
|
|
|
vars := mux.Vars(req)
|
|
|
|
writers.Download(w, req, gomatrixserverlib.ServerName(vars["serverName"]), types.MediaID(vars["mediaId"]), cfg, db, activeRemoteRequests, activeThumbnailGeneration, name == "thumbnail")
|
|
|
|
}))
|
|
|
|
}
|