blob: 8f90c5e4a634c799553b80e6a9cbf12cca77dc65 [file] [log] [blame]
//Copyright 2017 Huawei Technologies Co., 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 bootstrap
import _ "github.com/ServiceComb/service-center/pkg/security"
import _ "github.com/ServiceComb/service-center/pkg/common/logrotate"
import _ "github.com/ServiceComb/service-center/pkg/security/plugins/plain"
import _ "github.com/ServiceComb/service-center/server/core/registry/embededetcd"
import _ "github.com/ServiceComb/service-center/server/core/registry/etcd"
import _ "github.com/ServiceComb/service-center/server/plugins/infra/quota/buildin"
import _ "github.com/ServiceComb/service-center/server/plugins/infra/quota/unlimit"
import (
"github.com/ServiceComb/service-center/server/interceptor"
"github.com/ServiceComb/service-center/server/interceptor/access"
"github.com/ServiceComb/service-center/server/interceptor/cors"
"github.com/ServiceComb/service-center/server/interceptor/domain"
"github.com/ServiceComb/service-center/server/interceptor/maxbody"
"github.com/ServiceComb/service-center/server/interceptor/ratelimiter"
"github.com/ServiceComb/service-center/util"
)
func init() {
util.LOGGER.Info("BootStrap Huawei Enterprise Edition")
interceptor.InterceptFunc(interceptor.ACCESS_PHASE, ratelimiter.Intercept)
interceptor.InterceptFunc(interceptor.ACCESS_PHASE, access.Intercept)
interceptor.InterceptFunc(interceptor.ACCESS_PHASE, cors.Intercept)
interceptor.InterceptFunc(interceptor.ACCESS_PHASE, domain.Intercept)
interceptor.InterceptFunc(interceptor.CONTENT_PHASE, maxbody.Intercept)
}