gocron/models/host.go

135 lines
3.5 KiB
Go
Raw Normal View History

2017-03-10 09:24:06 +00:00
package models
import (
"github.com/ouqiang/gocron/modules/ssh"
"github.com/go-xorm/xorm"
2017-05-01 05:59:52 +00:00
"github.com/ouqiang/gocron/modules/app"
"github.com/ouqiang/gocron/modules/utils"
"errors"
"io/ioutil"
"strings"
"github.com/ouqiang/gocron/modules/logger"
)
2017-04-20 01:36:42 +00:00
2017-03-10 09:24:06 +00:00
// 主机
type Host struct {
2017-04-02 02:38:49 +00:00
Id int16 `xorm:"smallint pk autoincr"`
2017-04-25 11:05:24 +00:00
Name string `xorm:"varchar(64) notnull"` // 主机名称
2017-04-02 02:38:49 +00:00
Alias string `xorm:"varchar(32) notnull default '' "` // 主机别名
Username string `xorm:"varchar(32) notnull default '' "` // ssh 用户名
Port int `xorm:"notnull default 22"` // 主机端口
2017-04-25 11:54:06 +00:00
Remark string `xorm:"varchar(100) notnull default '' "` // 备注
2017-04-20 01:36:42 +00:00
AuthType ssh.HostAuthType `xorm:"tinyint notnull default 1"` // 认证方式 1: 密码 2: 公钥
2017-04-23 06:11:53 +00:00
BaseModel `xorm:"-"`
2017-03-10 09:24:06 +00:00
}
// 新增
2017-04-02 02:19:52 +00:00
func (host *Host) Create() (insertId int16, err error) {
2017-04-02 02:38:49 +00:00
_, err = Db.Insert(host)
if err == nil {
insertId = host.Id
}
2017-03-24 09:55:44 +00:00
2017-04-02 02:38:49 +00:00
return
2017-03-10 09:24:06 +00:00
}
func (host *Host) UpdateBean(id int16) (int64, error) {
2017-05-01 05:59:52 +00:00
return Db.ID(id).Cols("name,alias,username,port,remark,auth_type").Update(host)
2017-04-20 01:36:42 +00:00
}
2017-03-10 09:24:06 +00:00
// 更新
2017-04-02 02:19:52 +00:00
func (host *Host) Update(id int, data CommonMap) (int64, error) {
2017-04-02 02:38:49 +00:00
return Db.Table(host).ID(id).Update(data)
2017-03-10 09:24:06 +00:00
}
// 删除
2017-04-02 02:19:52 +00:00
func (host *Host) Delete(id int) (int64, error) {
2017-04-02 02:38:49 +00:00
return Db.Id(id).Delete(host)
2017-03-10 09:24:06 +00:00
}
2017-04-16 08:24:09 +00:00
func (host *Host) Find(id int) error {
_, err := Db.Id(id).Get(host)
return err
}
2017-04-20 01:36:42 +00:00
func (host *Host) NameExists(name string, id int16) (bool, error) {
if id == 0 {
count, err := Db.Where("name = ?", name).Count(host);
return count > 0, err
}
2017-04-13 09:35:59 +00:00
2017-04-20 01:36:42 +00:00
count, err := Db.Where("name = ? AND id != ?", name, id).Count(host);
2017-04-13 09:35:59 +00:00
return count > 0, err
}
func (host *Host) List(params CommonMap) ([]Host, error) {
2017-04-23 06:11:53 +00:00
host.parsePageAndPageSize(params)
2017-04-02 02:38:49 +00:00
list := make([]Host, 0)
session := Db.Desc("id")
host.parseWhere(session, params)
err := session.Limit(host.PageSize, host.pageLimitOffset()).Find(&list)
2017-03-10 09:24:06 +00:00
2017-04-02 02:38:49 +00:00
return list, err
2017-03-10 09:24:06 +00:00
}
func (host *Host) AllList() ([]Host, error) {
list := make([]Host, 0)
err := Db.Desc("id").Find(&list)
return list, err
}
2017-04-23 06:11:53 +00:00
func (host *Host) Total(params CommonMap) (int64, error) {
session := Db.NewSession()
host.parseWhere(session, params)
return session.Count(host)
2017-03-10 09:24:06 +00:00
}
2017-05-01 05:59:52 +00:00
func (h *Host) GetPasswordByHost(host string) (string, error) {
path := app.DataDir + "/ssh/password/" + host
return h.readFile(path)
}
func (h *Host) GetPrivateKeyByHost(host string) (string,error) {
path := app.DataDir + "/ssh/private_key/" + host
return h.readFile(path)
}
func (host *Host) readFile(file string) (string, error) {
logger.Debug("认证文件路径: ", file)
if !utils.FileExist(file) {
return "", errors.New(file + "-认证文件不存在或无权限访问")
}
contentByte, err := ioutil.ReadFile(file)
if err != nil {
return "", err
}
content := string(contentByte)
content = strings.TrimSpace(content)
if content == "" {
return "", errors.New("密码为空")
}
return content, nil
}
// 解析where
func (host *Host) parseWhere(session *xorm.Session, params CommonMap) {
if len(params) == 0 {
return
}
id, ok := params["Id"]
if ok && id.(int) > 0 {
session.And("id = ?", id)
}
name, ok := params["Name"]
if ok && name.(string) != "" {
session.And("name = ?", name)
}
2017-04-23 06:11:53 +00:00
}