mirror of
https://github.com/netfun2000/rttys_zhaojh329.git
synced 2026-02-27 09:53:24 +08:00
afe0957a29
Signed-off-by: Jianhui Zhao <jianhuizhao329@gmail.com>
110 lines
2.7 KiB
Go
110 lines
2.7 KiB
Go
/*
|
|
* Copyright (C) 2017 Jianhui Zhao <jianhuizhao329@gmail.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
|
|
* USA
|
|
*/
|
|
|
|
package main
|
|
|
|
import (
|
|
"crypto/md5"
|
|
"crypto/rand"
|
|
"encoding/binary"
|
|
"encoding/hex"
|
|
"flag"
|
|
"io"
|
|
"os"
|
|
"runtime"
|
|
"time"
|
|
|
|
"github.com/kylelemons/go-gypsy/yaml"
|
|
|
|
"github.com/rifflock/lfshook"
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
type RttysConfig struct {
|
|
addr string
|
|
sslCert string
|
|
sslKey string
|
|
username string
|
|
password string
|
|
}
|
|
|
|
func init() {
|
|
log.AddHook(lfshook.NewHook("/var/log/rttys.log", &log.TextFormatter{}))
|
|
}
|
|
|
|
func main() {
|
|
cfg := parseConfig()
|
|
|
|
if !checkUser() && cfg.username == "" {
|
|
log.Error("Operation not permitted. Please start as root or define Username and Password in configuration file")
|
|
os.Exit(1)
|
|
}
|
|
|
|
log.Infof("go version: %s %s/%s", runtime.Version(), runtime.GOOS, runtime.GOARCH)
|
|
log.Info("rttys version:", rttys_version())
|
|
|
|
br := newBroker()
|
|
go br.run()
|
|
|
|
httpStart(br, cfg)
|
|
}
|
|
|
|
func genUniqueID(extra string) string {
|
|
buf := make([]byte, 20)
|
|
|
|
binary.BigEndian.PutUint32(buf, uint32(time.Now().Unix()))
|
|
io.ReadFull(rand.Reader, buf[4:])
|
|
|
|
h := md5.New()
|
|
h.Write(buf)
|
|
h.Write([]byte(extra))
|
|
|
|
return hex.EncodeToString(h.Sum(nil))
|
|
}
|
|
|
|
func setConfigOpt(yamlCfg *yaml.File, name string, opt *string) {
|
|
val, err := yamlCfg.Get("addr")
|
|
if err != nil {
|
|
return
|
|
}
|
|
*opt = val
|
|
}
|
|
|
|
func parseConfig() *RttysConfig {
|
|
cfg := &RttysConfig{}
|
|
|
|
flag.StringVar(&cfg.addr, "addr", ":5912", "address to listen")
|
|
flag.StringVar(&cfg.sslCert, "ssl-cert", "./rttys.crt", "certFile Path")
|
|
flag.StringVar(&cfg.sslKey, "ssl-key", "./rttys.key", "keyFile Path")
|
|
conf := flag.String("conf", "./rttys.conf", "config file to load")
|
|
|
|
flag.Parse()
|
|
|
|
yamlCfg, err := yaml.ReadFile(*conf)
|
|
if err == nil {
|
|
setConfigOpt(yamlCfg, "addr", &cfg.addr)
|
|
setConfigOpt(yamlCfg, "ssl-cert", &cfg.sslCert)
|
|
setConfigOpt(yamlCfg, "ssl-key", &cfg.sslKey)
|
|
setConfigOpt(yamlCfg, "username", &cfg.username)
|
|
setConfigOpt(yamlCfg, "password", &cfg.password)
|
|
}
|
|
|
|
return cfg
|
|
}
|