211 lines
4 KiB
Go
211 lines
4 KiB
Go
// Copyright © 2016 Abcum 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 cli
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"strings"
|
|
|
|
"github.com/abcum/surreal/log"
|
|
"github.com/abcum/surreal/util/cert"
|
|
"github.com/abcum/surreal/util/uuid"
|
|
)
|
|
|
|
func setup() {
|
|
|
|
if opts.Auth.Auth != "" {
|
|
|
|
if opts.Auth.User != "" {
|
|
log.Fatal("Specify only --auth or --auth-user")
|
|
}
|
|
|
|
if opts.Auth.Pass != "" {
|
|
log.Fatal("Specify only --auth or --auth-pass")
|
|
}
|
|
|
|
both := strings.SplitN(opts.Auth.Auth, ":", 2)
|
|
|
|
if len(both) == 2 {
|
|
opts.Auth.User = both[0]
|
|
opts.Auth.Pass = both[1]
|
|
}
|
|
|
|
}
|
|
|
|
// Ensure that security
|
|
// is enabled by default
|
|
|
|
if opts.Auth.User == "" {
|
|
opts.Auth.User = "root"
|
|
}
|
|
|
|
if opts.Auth.Pass == "" {
|
|
opts.Auth.Pass = "root"
|
|
}
|
|
|
|
// Ensure that security
|
|
// is enabled by default
|
|
|
|
if opts.Cert.Pem != "" {
|
|
|
|
if opts.Cert.Crt != "" {
|
|
log.Fatal("Specify only --cert-pem or --cert-crt")
|
|
}
|
|
|
|
if opts.Cert.Key != "" {
|
|
log.Fatal("Specify only --cert-pem or --cert-key")
|
|
}
|
|
|
|
err := cert.Extract(opts.Cert.Pem, "cert.key", "cert.crt")
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
opts.Cert.Crt = "cert.crt"
|
|
|
|
opts.Cert.Key = "cert.key"
|
|
|
|
}
|
|
|
|
// Ensure that the default
|
|
// database options are set
|
|
|
|
if opts.DB.Base == "" {
|
|
opts.DB.Base = "surreal"
|
|
}
|
|
|
|
if opts.DB.Path == "" {
|
|
opts.DB.Path = "surreal.db"
|
|
}
|
|
|
|
// Ensure that the default
|
|
// node details are defined
|
|
|
|
if opts.Node.Host == "" {
|
|
opts.Node.Host, _ = os.Hostname()
|
|
}
|
|
|
|
if opts.Node.Name == "" {
|
|
opts.Node.Name = opts.Node.Host
|
|
}
|
|
|
|
if opts.Node.UUID == "" {
|
|
opts.Node.UUID = opts.Node.Name + "-" + uuid.NewV4().String()
|
|
}
|
|
|
|
// Ensure the defined ports
|
|
// are within range
|
|
|
|
if opts.Port.Web == 0 {
|
|
opts.Port.Web = 8000
|
|
}
|
|
|
|
if opts.Port.Tcp == 0 {
|
|
opts.Port.Tcp = 33693
|
|
}
|
|
|
|
if opts.Port.Web == opts.Port.Tcp {
|
|
log.Fatal("Defined ports must be different")
|
|
}
|
|
|
|
if opts.Port.Web > 65535 {
|
|
log.Fatal("Please specify a valid port number for --port-http")
|
|
}
|
|
|
|
if opts.Port.Tcp > 65535 {
|
|
log.Fatal("Please specify a valid port number for --port-raft")
|
|
}
|
|
|
|
// Define the listen string
|
|
// with host:port format
|
|
|
|
opts.Conn.Web = fmt.Sprintf(":%d", opts.Port.Web)
|
|
opts.Conn.Tcp = fmt.Sprintf(":%d", opts.Port.Tcp)
|
|
|
|
// Ensure that string args
|
|
// are converted to slices
|
|
|
|
for _, v := range strings.Split(opts.Node.Attr, ",") {
|
|
if c := strings.Trim(v, " "); c != "" {
|
|
opts.Node.Tags = append(opts.Node.Tags, c)
|
|
}
|
|
}
|
|
|
|
for _, v := range strings.Split(opts.Cluster.Join, ",") {
|
|
if c := strings.Trim(v, " "); c != "" {
|
|
opts.Cluster.Peer = append(opts.Cluster.Peer, c)
|
|
}
|
|
}
|
|
|
|
// Ensure that the specified
|
|
// logging level is allowed
|
|
|
|
if opts.Logging.Level != "" {
|
|
|
|
chk := map[string]bool{
|
|
"debug": true,
|
|
"info": true,
|
|
"warning": true,
|
|
"error": true,
|
|
"fatal": true,
|
|
"panic": true,
|
|
}
|
|
|
|
if _, ok := chk[opts.Logging.Level]; !ok {
|
|
log.Fatal("Incorrect log level specified")
|
|
}
|
|
|
|
log.SetLevel(opts.Logging.Level)
|
|
|
|
}
|
|
|
|
// Ensure that the specified
|
|
// logging output is allowed
|
|
|
|
if opts.Logging.Output != "" {
|
|
|
|
chk := map[string]bool{
|
|
"stdout": true,
|
|
"stderr": true,
|
|
}
|
|
|
|
if _, ok := chk[opts.Logging.Output]; !ok {
|
|
log.Fatal("Incorrect log output specified")
|
|
}
|
|
|
|
log.SetOutput(opts.Logging.Output)
|
|
|
|
}
|
|
|
|
// Ensure that the specified
|
|
// logging format is allowed
|
|
|
|
if opts.Logging.Format != "" {
|
|
|
|
chk := map[string]bool{
|
|
"text": true,
|
|
"json": true,
|
|
}
|
|
|
|
if _, ok := chk[opts.Logging.Format]; !ok {
|
|
log.Fatal("Incorrect log format specified")
|
|
}
|
|
|
|
log.SetFormat(opts.Logging.Format)
|
|
|
|
}
|
|
|
|
}
|