blob: 228808f3cc6b69d2b073a4a990665558f185cd9f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
package utils
import (
"net/http"
"strings"
)
type OriginCheckerProc func(*http.Request) bool
func OriginChecker(r *http.Request) bool {
origin := r.Header.Get("Origin")
return *Cfg.ServiceSettings.AllowCorsFrom == "*" || strings.Contains(origin, *Cfg.ServiceSettings.AllowCorsFrom)
}
func GetOriginChecker(r *http.Request) OriginCheckerProc {
if len(*Cfg.ServiceSettings.AllowCorsFrom) > 0 {
return OriginChecker
}
return nil
}
|