2017-05-26 08:57:09 +01: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"
|
|
|
|
"sync"
|
|
|
|
|
|
|
|
"github.com/gorilla/mux"
|
2017-05-26 12:37:07 +01:00
|
|
|
"github.com/matrix-org/dendrite/common"
|
2017-05-26 08:57:09 +01:00
|
|
|
"github.com/matrix-org/dendrite/mediaapi/config"
|
2017-05-26 15:49:54 +01:00
|
|
|
"github.com/matrix-org/dendrite/mediaapi/storage"
|
2017-05-26 08:57:09 +01: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 15:49:54 +01:00
|
|
|
func Setup(servMux *http.ServeMux, httpClient *http.Client, cfg *config.MediaAPI, db *storage.Database) {
|
2017-05-26 08:57:09 +01:00
|
|
|
apiMux := mux.NewRouter()
|
|
|
|
r0mux := apiMux.PathPrefix(pathPrefixR0).Subrouter()
|
2017-05-26 15:49:54 +01:00
|
|
|
// FIXME: /upload should use common.MakeAuthAPI()
|
2017-05-26 12:37:07 +01:00
|
|
|
r0mux.Handle("/upload", common.MakeAPI("upload", func(req *http.Request) util.JSONResponse {
|
2017-05-26 15:49:54 +01:00
|
|
|
return writers.Upload(req, cfg, db)
|
2017-05-26 08:57:09 +01:00
|
|
|
}))
|
|
|
|
|
|
|
|
activeRemoteRequests := &types.ActiveRemoteRequests{
|
2017-05-26 13:17:54 +01:00
|
|
|
MXCToCond: map[string]*sync.Cond{},
|
2017-05-26 08:57:09 +01:00
|
|
|
}
|
|
|
|
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)
|
2017-05-31 12:46:21 +01:00
|
|
|
writers.Download(w, req, gomatrixserverlib.ServerName(vars["serverName"]), types.MediaID(vars["mediaId"]), cfg, db, activeRemoteRequests)
|
2017-05-26 08:57:09 +01:00
|
|
|
})),
|
|
|
|
)
|
|
|
|
|
|
|
|
servMux.Handle("/metrics", prometheus.Handler())
|
|
|
|
servMux.Handle("/api/", http.StripPrefix("/api", apiMux))
|
|
|
|
}
|