2017-02-23 06:12:16 +01:00
|
|
|
package db
|
2016-04-04 15:44:34 +02:00
|
|
|
|
2021-11-02 20:30:45 +01:00
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
)
|
|
|
|
|
2018-03-27 22:12:47 +02:00
|
|
|
// Environment is used to pass additional arguments, in json form to ansible
|
2016-04-04 15:44:34 +02:00
|
|
|
type Environment struct {
|
2016-04-08 21:41:20 +02:00
|
|
|
ID int `db:"id" json:"id"`
|
2016-04-11 12:02:10 +02:00
|
|
|
Name string `db:"name" json:"name" binding:"required"`
|
2016-04-08 21:41:20 +02:00
|
|
|
ProjectID int `db:"project_id" json:"project_id"`
|
|
|
|
Password *string `db:"password" json:"password"`
|
2016-04-11 12:02:10 +02:00
|
|
|
JSON string `db:"json" json:"json" binding:"required"`
|
2016-06-17 22:16:46 +02:00
|
|
|
Removed bool `db:"removed" json:"removed"`
|
2016-04-04 15:44:34 +02:00
|
|
|
}
|
2021-11-02 20:30:45 +01:00
|
|
|
|
|
|
|
func (env *Environment) Validate() error {
|
|
|
|
if env.Name == "" {
|
|
|
|
return &ValidationError{"environment name can not be empty"}
|
|
|
|
}
|
|
|
|
|
|
|
|
if !json.Valid([]byte(env.JSON)) {
|
|
|
|
return &ValidationError{"environment must be valid JSON"}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|