mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
46 lines
952 B
Go
46 lines
952 B
Go
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
package api
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/mattermost/platform/model"
|
|
"github.com/mattermost/platform/utils"
|
|
|
|
_ "github.com/cloudfoundry/jibber_jabber"
|
|
_ "github.com/nicksnyder/go-i18n/i18n"
|
|
)
|
|
|
|
func InitApi() {
|
|
r := Srv.Router.PathPrefix("/api/v1").Subrouter()
|
|
InitUser(r)
|
|
InitTeam(r)
|
|
InitChannel(r)
|
|
InitPost(r)
|
|
InitWebSocket(r)
|
|
InitFile(r)
|
|
InitCommand(r)
|
|
InitAdmin(r)
|
|
InitOAuth(r)
|
|
InitWebhook(r)
|
|
InitPreference(r)
|
|
InitLicense(r)
|
|
// 404 on any api route before web.go has a chance to serve it
|
|
Srv.Router.Handle("/api/{anything:.*}", http.HandlerFunc(Handle404))
|
|
|
|
utils.InitHTML()
|
|
}
|
|
|
|
func HandleEtag(etag string, w http.ResponseWriter, r *http.Request) bool {
|
|
if et := r.Header.Get(model.HEADER_ETAG_CLIENT); len(etag) > 0 {
|
|
if et == etag {
|
|
w.WriteHeader(http.StatusNotModified)
|
|
return true
|
|
}
|
|
}
|
|
|
|
return false
|
|
}
|