routing.go 2.8 KB
Newer Older
R
Robert Swain 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
// 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"
21
	"github.com/matrix-org/dendrite/common"
22
	"github.com/matrix-org/dendrite/common/config"
23
	"github.com/matrix-org/dendrite/mediaapi/storage"
R
Robert Swain 已提交
24 25 26 27 28 29 30 31 32
	"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"

33
// Setup registers the media API HTTP handlers
E
Erik Johnston 已提交
34
func Setup(apiMux *mux.Router, cfg *config.Dendrite, db *storage.Database) {
R
Robert Swain 已提交
35
	r0mux := apiMux.PathPrefix(pathPrefixR0).Subrouter()
36 37 38 39 40

	activeThumbnailGeneration := &types.ActiveThumbnailGeneration{
		PathToResult: map[string]*types.ThumbnailGenerationResult{},
	}

41
	// FIXME: /upload should use common.MakeAuthAPI()
42
	r0mux.Handle("/upload", common.MakeAPI("upload", func(req *http.Request) util.JSONResponse {
43
		return writers.Upload(req, cfg, db, activeThumbnailGeneration)
R
Robert Swain 已提交
44 45 46
	}))

	activeRemoteRequests := &types.ActiveRemoteRequests{
47
		MXCToResult: map[string]*types.RemoteRequestResult{},
R
Robert Swain 已提交
48 49
	}
	r0mux.Handle("/download/{serverName}/{mediaId}",
50 51 52 53
		makeDownloadAPI("download", cfg, db, activeRemoteRequests, activeThumbnailGeneration),
	)
	r0mux.Handle("/thumbnail/{serverName}/{mediaId}",
		makeDownloadAPI("thumbnail", cfg, db, activeRemoteRequests, activeThumbnailGeneration),
R
Robert Swain 已提交
54 55
	)
}
56

57
func makeDownloadAPI(name string, cfg *config.Dendrite, db *storage.Database, activeRemoteRequests *types.ActiveRemoteRequests, activeThumbnailGeneration *types.ActiveThumbnailGeneration) http.HandlerFunc {
58 59 60 61 62 63 64 65 66 67 68 69
	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")
	}))
}