2018-05-14 10:24:58 -04:00
|
|
|
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
|
|
|
|
|
// See License.txt for license information.
|
|
|
|
|
|
|
|
|
|
package api4
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"net/http"
|
|
|
|
|
|
2019-04-22 11:22:08 -04:00
|
|
|
"github.com/NYTimes/gziphandler"
|
2018-05-14 10:24:58 -04:00
|
|
|
"github.com/mattermost/mattermost-server/web"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type Context = web.Context
|
|
|
|
|
|
2018-12-05 22:37:30 +00:00
|
|
|
// ApiHandler provides a handler for API endpoints which do not require the user to be logged in order for access to be
|
|
|
|
|
// granted.
|
2018-05-14 10:24:58 -04:00
|
|
|
func (api *API) ApiHandler(h func(*Context, http.ResponseWriter, *http.Request)) http.Handler {
|
2019-04-22 11:22:08 -04:00
|
|
|
handler := &web.Handler{
|
2018-11-28 10:56:21 -08:00
|
|
|
GetGlobalAppOptions: api.GetGlobalAppOptions,
|
|
|
|
|
HandleFunc: h,
|
2019-09-20 15:09:58 +02:00
|
|
|
HandlerName: web.GetHandlerName(h),
|
2018-11-28 10:56:21 -08:00
|
|
|
RequireSession: false,
|
|
|
|
|
TrustRequester: false,
|
|
|
|
|
RequireMfa: false,
|
|
|
|
|
IsStatic: false,
|
2018-05-14 10:24:58 -04:00
|
|
|
}
|
2019-04-22 11:22:08 -04:00
|
|
|
if *api.ConfigService.Config().ServiceSettings.WebserverMode == "gzip" {
|
|
|
|
|
return gziphandler.GzipHandler(handler)
|
|
|
|
|
}
|
|
|
|
|
return handler
|
2018-05-14 10:24:58 -04:00
|
|
|
}
|
|
|
|
|
|
2018-12-05 22:37:30 +00:00
|
|
|
// ApiSessionRequired provides a handler for API endpoints which require the user to be logged in in order for access to
|
|
|
|
|
// be granted.
|
2018-05-14 10:24:58 -04:00
|
|
|
func (api *API) ApiSessionRequired(h func(*Context, http.ResponseWriter, *http.Request)) http.Handler {
|
2019-04-22 11:22:08 -04:00
|
|
|
handler := &web.Handler{
|
2018-11-28 10:56:21 -08:00
|
|
|
GetGlobalAppOptions: api.GetGlobalAppOptions,
|
|
|
|
|
HandleFunc: h,
|
2019-09-20 15:09:58 +02:00
|
|
|
HandlerName: web.GetHandlerName(h),
|
2018-11-28 10:56:21 -08:00
|
|
|
RequireSession: true,
|
|
|
|
|
TrustRequester: false,
|
|
|
|
|
RequireMfa: true,
|
|
|
|
|
IsStatic: false,
|
2018-05-14 10:24:58 -04:00
|
|
|
}
|
2019-04-22 11:22:08 -04:00
|
|
|
if *api.ConfigService.Config().ServiceSettings.WebserverMode == "gzip" {
|
|
|
|
|
return gziphandler.GzipHandler(handler)
|
|
|
|
|
}
|
|
|
|
|
return handler
|
|
|
|
|
|
2018-05-14 10:24:58 -04:00
|
|
|
}
|
|
|
|
|
|
2018-12-05 22:37:30 +00:00
|
|
|
// ApiSessionRequiredMfa provides a handler for API endpoints which require a logged-in user session but when accessed,
|
|
|
|
|
// if MFA is enabled, the MFA process is not yet complete, and therefore the requirement to have completed the MFA
|
|
|
|
|
// authentication must be waived.
|
2018-05-14 10:24:58 -04:00
|
|
|
func (api *API) ApiSessionRequiredMfa(h func(*Context, http.ResponseWriter, *http.Request)) http.Handler {
|
2019-04-22 11:22:08 -04:00
|
|
|
handler := &web.Handler{
|
2018-11-28 10:56:21 -08:00
|
|
|
GetGlobalAppOptions: api.GetGlobalAppOptions,
|
|
|
|
|
HandleFunc: h,
|
2019-09-20 15:09:58 +02:00
|
|
|
HandlerName: web.GetHandlerName(h),
|
2018-11-28 10:56:21 -08:00
|
|
|
RequireSession: true,
|
|
|
|
|
TrustRequester: false,
|
|
|
|
|
RequireMfa: false,
|
|
|
|
|
IsStatic: false,
|
2018-05-14 10:24:58 -04:00
|
|
|
}
|
2019-04-22 11:22:08 -04:00
|
|
|
if *api.ConfigService.Config().ServiceSettings.WebserverMode == "gzip" {
|
|
|
|
|
return gziphandler.GzipHandler(handler)
|
|
|
|
|
}
|
|
|
|
|
return handler
|
|
|
|
|
|
2018-05-14 10:24:58 -04:00
|
|
|
}
|
|
|
|
|
|
2018-12-05 22:37:30 +00:00
|
|
|
// ApiHandlerTrustRequester provides a handler for API endpoints which do not require the user to be logged in and are
|
|
|
|
|
// allowed to be requested directly rather than via javascript/XMLHttpRequest, such as site branding images or the
|
|
|
|
|
// websocket.
|
2018-05-14 10:24:58 -04:00
|
|
|
func (api *API) ApiHandlerTrustRequester(h func(*Context, http.ResponseWriter, *http.Request)) http.Handler {
|
2019-04-22 11:22:08 -04:00
|
|
|
handler := &web.Handler{
|
2018-11-28 10:56:21 -08:00
|
|
|
GetGlobalAppOptions: api.GetGlobalAppOptions,
|
|
|
|
|
HandleFunc: h,
|
2019-09-20 15:09:58 +02:00
|
|
|
HandlerName: web.GetHandlerName(h),
|
2018-11-28 10:56:21 -08:00
|
|
|
RequireSession: false,
|
|
|
|
|
TrustRequester: true,
|
|
|
|
|
RequireMfa: false,
|
|
|
|
|
IsStatic: false,
|
2018-05-14 10:24:58 -04:00
|
|
|
}
|
2019-04-22 11:22:08 -04:00
|
|
|
if *api.ConfigService.Config().ServiceSettings.WebserverMode == "gzip" {
|
|
|
|
|
return gziphandler.GzipHandler(handler)
|
|
|
|
|
}
|
|
|
|
|
return handler
|
|
|
|
|
|
2018-05-14 10:24:58 -04:00
|
|
|
}
|
|
|
|
|
|
2018-12-05 22:37:30 +00:00
|
|
|
// ApiSessionRequiredTrustRequester provides a handler for API endpoints which do require the user to be logged in and
|
|
|
|
|
// are allowed to be requested directly rather than via javascript/XMLHttpRequest, such as emoji or file uploads.
|
2018-05-14 10:24:58 -04:00
|
|
|
func (api *API) ApiSessionRequiredTrustRequester(h func(*Context, http.ResponseWriter, *http.Request)) http.Handler {
|
2019-04-22 11:22:08 -04:00
|
|
|
handler := &web.Handler{
|
2018-11-28 10:56:21 -08:00
|
|
|
GetGlobalAppOptions: api.GetGlobalAppOptions,
|
|
|
|
|
HandleFunc: h,
|
2019-09-20 15:09:58 +02:00
|
|
|
HandlerName: web.GetHandlerName(h),
|
2018-11-28 10:56:21 -08:00
|
|
|
RequireSession: true,
|
|
|
|
|
TrustRequester: true,
|
|
|
|
|
RequireMfa: true,
|
|
|
|
|
IsStatic: false,
|
2018-05-14 10:24:58 -04:00
|
|
|
}
|
2019-04-22 11:22:08 -04:00
|
|
|
if *api.ConfigService.Config().ServiceSettings.WebserverMode == "gzip" {
|
|
|
|
|
return gziphandler.GzipHandler(handler)
|
|
|
|
|
}
|
|
|
|
|
return handler
|
|
|
|
|
|
2018-05-14 10:24:58 -04:00
|
|
|
}
|