2017-02-23 06:12:16 +01:00
|
|
|
package db
|
2016-04-04 15:44:34 +02:00
|
|
|
|
2024-03-09 20:23:38 +01:00
|
|
|
type InventoryType string
|
|
|
|
|
2021-09-12 00:18:26 +02:00
|
|
|
const (
|
2024-03-10 22:58:35 +01:00
|
|
|
InventoryNone InventoryType = "none"
|
2024-03-09 20:23:38 +01:00
|
|
|
InventoryStatic InventoryType = "static"
|
|
|
|
InventoryStaticYaml InventoryType = "static-yaml"
|
|
|
|
// InventoryFile means that it is path to the Ansible inventory file
|
|
|
|
InventoryFile InventoryType = "file"
|
2021-09-12 00:18:26 +02:00
|
|
|
)
|
2022-02-03 08:05:13 +01:00
|
|
|
|
2018-03-27 22:12:47 +02:00
|
|
|
// Inventory is the model of an ansible inventory file
|
2016-04-04 15:44:34 +02:00
|
|
|
type Inventory struct {
|
|
|
|
ID int `db:"id" json:"id"`
|
2016-04-11 12:02:10 +02:00
|
|
|
Name string `db:"name" json:"name" binding:"required"`
|
2016-04-04 15:44:34 +02:00
|
|
|
ProjectID int `db:"project_id" json:"project_id"`
|
|
|
|
Inventory string `db:"inventory" json:"inventory"`
|
|
|
|
|
2016-04-08 21:41:20 +02:00
|
|
|
// accesses hosts in inventory
|
2018-03-27 22:12:47 +02:00
|
|
|
SSHKeyID *int `db:"ssh_key_id" json:"ssh_key_id"`
|
|
|
|
SSHKey AccessKey `db:"-" json:"-"`
|
2016-04-08 21:41:20 +02:00
|
|
|
|
2021-09-01 21:17:28 +02:00
|
|
|
BecomeKeyID *int `db:"become_key_id" json:"become_key_id"`
|
|
|
|
BecomeKey AccessKey `db:"-" json:"-"`
|
|
|
|
|
2021-08-30 16:24:20 +02:00
|
|
|
// static/file
|
2024-03-09 20:23:38 +01:00
|
|
|
Type InventoryType `db:"type" json:"type"`
|
2024-03-10 13:13:44 +01:00
|
|
|
|
|
|
|
HolderID *int `db:"holder_id" json:"holder_id"`
|
2016-04-04 15:44:34 +02:00
|
|
|
}
|
2021-10-12 12:25:43 +02:00
|
|
|
|
|
|
|
func FillInventory(d Store, inventory *Inventory) (err error) {
|
|
|
|
if inventory.SSHKeyID != nil {
|
|
|
|
inventory.SSHKey, err = d.GetAccessKey(inventory.ProjectID, *inventory.SSHKeyID)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if inventory.BecomeKeyID != nil {
|
|
|
|
inventory.BecomeKey, err = d.GetAccessKey(inventory.ProjectID, *inventory.BecomeKeyID)
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|