nps/web/controllers/client.go

167 lines
4.4 KiB
Go
Raw Normal View History

package controllers
import (
"github.com/cnlh/nps/lib/common"
2019-02-09 09:07:47 +00:00
"github.com/cnlh/nps/lib/file"
"github.com/cnlh/nps/lib/rate"
2019-02-05 16:35:23 +00:00
"github.com/cnlh/nps/server"
2019-03-29 02:41:57 +00:00
"github.com/cnlh/nps/vender/github.com/astaxie/beego"
)
type ClientController struct {
BaseController
}
2019-01-29 03:20:39 +00:00
func (s *ClientController) List() {
if s.Ctx.Request.Method == "GET" {
s.Data["menu"] = "client"
s.SetInfo("client")
s.display("client/list")
return
}
start, length := s.GetAjaxParams()
clientIdSession := s.GetSession("clientId")
var clientId int
if clientIdSession == nil {
clientId = 0
} else {
clientId = clientIdSession.(int)
}
2019-03-29 02:41:57 +00:00
list, cnt := server.GetClientList(start, length, s.GetString("search"), s.GetString("sort"), s.GetString("order"), clientId)
s.AjaxTable(list, cnt, cnt)
}
//添加客户端
func (s *ClientController) Add() {
if s.Ctx.Request.Method == "GET" {
s.Data["menu"] = "client"
s.SetInfo("add client")
s.display()
} else {
2019-02-09 09:07:47 +00:00
t := &file.Client{
2019-02-24 05:17:43 +00:00
VerifyKey: s.GetString("vkey"),
2019-03-23 14:19:59 +00:00
Id: int(file.GetCsvDb().GetClientId()),
Status: true,
2019-01-29 03:20:39 +00:00
Remark: s.GetString("remark"),
2019-02-09 09:07:47 +00:00
Cnf: &file.Config{
U: s.GetString("u"),
P: s.GetString("p"),
Compress: common.GetBoolByStr(s.GetString("compress")),
Crypt: s.GetBoolNoErr("crypt"),
},
2019-03-23 14:19:59 +00:00
ConfigConnAllow: s.GetBoolNoErr("config_conn_allow"),
RateLimit: s.GetIntNoErr("rate_limit"),
MaxConn: s.GetIntNoErr("max_conn"),
2019-03-29 02:41:57 +00:00
WebUserName: s.GetString("web_username"),
WebPassword: s.GetString("web_password"),
2019-02-09 09:07:47 +00:00
Flow: &file.Flow{
2019-01-28 06:45:55 +00:00
ExportFlow: 0,
InletFlow: 0,
FlowLimit: int64(s.GetIntNoErr("flow_limit")),
},
}
if t.RateLimit > 0 {
2019-02-09 09:07:47 +00:00
t.Rate = rate.NewRate(int64(t.RateLimit * 1024))
2019-01-28 06:45:55 +00:00
t.Rate.Start()
}
2019-02-24 05:17:43 +00:00
if err := file.GetCsvDb().NewClient(t); err != nil {
s.AjaxErr(err.Error())
}
s.AjaxOk("add success")
}
}
2019-01-29 03:20:39 +00:00
func (s *ClientController) GetClient() {
if s.Ctx.Request.Method == "POST" {
id := s.GetIntNoErr("id")
data := make(map[string]interface{})
2019-02-09 09:07:47 +00:00
if c, err := file.GetCsvDb().GetClient(id); err != nil {
2019-01-29 03:20:39 +00:00
data["code"] = 0
} else {
data["code"] = 1
data["data"] = c
}
s.Data["json"] = data
s.ServeJSON()
}
}
//修改客户端
func (s *ClientController) Edit() {
2019-01-29 03:20:39 +00:00
id := s.GetIntNoErr("id")
if s.Ctx.Request.Method == "GET" {
s.Data["menu"] = "client"
2019-02-09 09:07:47 +00:00
if c, err := file.GetCsvDb().GetClient(id); err != nil {
s.error()
} else {
s.Data["c"] = c
}
s.SetInfo("edit client")
s.display()
} else {
2019-02-09 09:07:47 +00:00
if c, err := file.GetCsvDb().GetClient(id); err != nil {
s.error()
} else {
2019-03-29 02:41:57 +00:00
if s.GetString("web_username") != "" {
if s.GetString("web_username") == beego.AppConfig.String("web_username") || !file.GetCsvDb().VerifyUserName(s.GetString("web_username"), c.Id) {
s.AjaxErr("web login username duplicate, please reset")
return
}
2019-02-24 05:17:43 +00:00
}
2019-03-27 02:06:10 +00:00
if s.GetSession("isAdmin").(bool) {
2019-03-29 02:41:57 +00:00
if !file.GetCsvDb().VerifyVkey(s.GetString("vkey"), c.Id) {
s.AjaxErr("Vkey duplicate, please reset")
return
}
c.VerifyKey = s.GetString("vkey")
2019-03-27 02:06:10 +00:00
c.Flow.FlowLimit = int64(s.GetIntNoErr("flow_limit"))
c.RateLimit = s.GetIntNoErr("rate_limit")
c.MaxConn = s.GetIntNoErr("max_conn")
}
2019-03-29 02:41:57 +00:00
c.Remark = s.GetString("remark")
c.Cnf.U = s.GetString("u")
c.Cnf.P = s.GetString("p")
c.Cnf.Compress = common.GetBoolByStr(s.GetString("compress"))
c.Cnf.Crypt = s.GetBoolNoErr("crypt")
c.WebUserName = s.GetString("web_username")
c.WebPassword = s.GetString("web_password")
2019-03-23 14:19:59 +00:00
c.ConfigConnAllow = s.GetBoolNoErr("config_conn_allow")
2019-01-28 06:45:55 +00:00
if c.Rate != nil {
c.Rate.Stop()
}
if c.RateLimit > 0 {
2019-02-09 09:07:47 +00:00
c.Rate = rate.NewRate(int64(c.RateLimit * 1024))
2019-01-28 06:45:55 +00:00
c.Rate.Start()
} else {
c.Rate = rate.NewRate(int64(2 << 23))
c.Rate.Start()
2019-01-28 06:45:55 +00:00
}
2019-02-15 14:59:28 +00:00
file.GetCsvDb().StoreClientsToCsv()
}
s.AjaxOk("save success")
}
}
//更改状态
func (s *ClientController) ChangeStatus() {
id := s.GetIntNoErr("id")
2019-02-09 09:07:47 +00:00
if client, err := file.GetCsvDb().GetClient(id); err == nil {
client.Status = s.GetBoolNoErr("status")
if client.Status == false {
server.DelClientConnect(client.Id)
}
s.AjaxOk("modified success")
}
s.AjaxErr("modified fail")
}
//删除客户端
func (s *ClientController) Del() {
id := s.GetIntNoErr("id")
2019-02-09 09:07:47 +00:00
if err := file.GetCsvDb().DelClient(id); err != nil {
s.AjaxErr("delete error")
}
2019-03-29 02:41:57 +00:00
server.DelTunnelAndHostByClientId(id, false)
server.DelClientConnect(id)
s.AjaxOk("delete success")
}