Merge branch 'master' of github.com:didi/nightingale

This commit is contained in:
710leo 2020-05-29 16:46:49 +08:00
commit 6b646e3510
5 changed files with 11 additions and 2 deletions

View File

@ -1,7 +1,7 @@
#!/bin/bash
# release version
version=2.3.0
version=2.4.1
CWD=$(cd $(dirname $0)/; pwd)
cd $CWD

View File

@ -59,3 +59,7 @@ redis:
# conn: 500
# read: 3000
# write: 3000
tokens:
- 7dcd606e0462f9df2fea0bf505c9e622

View File

@ -19,6 +19,7 @@ type Config struct {
Cleaner cleanerSection `yaml:"cleaner"`
Link linkSection `yaml:"link"`
Notify map[string][]string `yaml:"notify"`
Tokens []string `yaml:"tokens"`
}
type linkSection struct {

View File

@ -5,10 +5,12 @@ import (
"strings"
"github.com/didi/nightingale/src/model"
"github.com/didi/nightingale/src/modules/monapi/config"
"github.com/gin-contrib/sessions"
"github.com/gin-gonic/gin"
"github.com/toolkits/pkg/errors"
"github.com/toolkits/pkg/slice"
)
func Logined() gin.HandlerFunc {
@ -74,7 +76,7 @@ const internalToken = "monapi-builtin-token"
func CheckHeaderToken() gin.HandlerFunc {
return func(c *gin.Context) {
token := c.GetHeader("x-srv-token")
if token != internalToken {
if token != internalToken && !slice.ContainsString(config.Get().Tokens, token) {
errors.Bomb("token[%s] invalid", token)
}
c.Next()

View File

@ -127,6 +127,8 @@ func Config(r *gin.Engine) {
v1 := r.Group("/v1/portal").Use(middleware.CheckHeaderToken())
{
v1.POST("/endpoint", endpointImport)
v1.GET("/tree", treeGet)
v1.GET("/endpoints/bynodeids", endpointByNodeIdsGets)
}
transferProxy := r.Group("/api/transfer")