Semaphore/db/AccessKey.go

33 lines
781 B
Go
Raw Normal View History

2017-02-23 06:12:16 +01:00
package db
2016-04-04 01:10:12 +02:00
import (
"strconv"
"github.com/ansible-semaphore/semaphore/util"
)
2021-08-30 16:24:20 +02:00
const (
AccessKeySSH = "ssh"
AccessKeyNone = "none"
)
// AccessKey represents a key used to access a machine with ansible from semaphore
2016-04-04 01:10:12 +02:00
type AccessKey struct {
ID int `db:"id" json:"id"`
Name string `db:"name" json:"name" binding:"required"`
2021-08-30 16:24:20 +02:00
// 'ssh/none'
2016-04-04 01:10:12 +02:00
Type string `db:"type" json:"type" binding:"required"`
ProjectID *int `db:"project_id" json:"project_id"`
Key *string `db:"key" json:"key"`
Secret *string `db:"secret" json:"secret"`
Removed bool `db:"removed" json:"removed"`
2016-04-04 01:10:12 +02:00
}
// GetPath returns the location of the access key once written to disk
func (key AccessKey) GetPath() string {
return util.Config.TmpPath + "/access_key_" + strconv.Itoa(key.ID)
}