routing.go 2.4 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 21
// 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"
	"sync"

	"github.com/gorilla/mux"
22
	"github.com/matrix-org/dendrite/common"
R
Robert Swain 已提交
23
	"github.com/matrix-org/dendrite/mediaapi/config"
24
	"github.com/matrix-org/dendrite/mediaapi/storage"
R
Robert Swain 已提交
25 26 27 28 29 30 31 32 33 34 35
	"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.
36
func Setup(servMux *http.ServeMux, httpClient *http.Client, cfg *config.MediaAPI, db *storage.Database) {
R
Robert Swain 已提交
37 38
	apiMux := mux.NewRouter()
	r0mux := apiMux.PathPrefix(pathPrefixR0).Subrouter()
39
	// FIXME: /upload should use common.MakeAuthAPI()
40
	r0mux.Handle("/upload", common.MakeAPI("upload", func(req *http.Request) util.JSONResponse {
41
		return writers.Upload(req, cfg, db)
R
Robert Swain 已提交
42 43 44
	}))

	activeRemoteRequests := &types.ActiveRemoteRequests{
45
		MXCToCond: map[string]*sync.Cond{},
R
Robert Swain 已提交
46 47 48 49 50 51 52 53 54 55 56
	}
	r0mux.Handle("/download/{serverName}/{mediaId}",
		prometheus.InstrumentHandler("download", 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)
57
			writers.Download(w, req, gomatrixserverlib.ServerName(vars["serverName"]), types.MediaID(vars["mediaId"]), cfg, db, activeRemoteRequests)
R
Robert Swain 已提交
58 59 60 61 62 63
		})),
	)

	servMux.Handle("/metrics", prometheus.Handler())
	servMux.Handle("/api/", http.StripPrefix("/api", apiMux))
}