mirror of
https://github.com/openziti/zrok.git
synced 2024-11-08 01:04:08 +01:00
68 lines
2.0 KiB
Go
68 lines
2.0 KiB
Go
package store
|
|
|
|
import (
|
|
"github.com/jmoiron/sqlx"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
type Environment struct {
|
|
Model
|
|
AccountId int
|
|
Description string
|
|
Host string
|
|
Address string
|
|
ZId string
|
|
}
|
|
|
|
func (self *Store) CreateEnvironment(accountId int, i *Environment, tx *sqlx.Tx) (int, error) {
|
|
stmt, err := tx.Prepare("insert into environments (account_id, description, host, address, z_id) values (?, ?, ?, ?, ?)")
|
|
if err != nil {
|
|
return 0, errors.Wrap(err, "error preparing environments insert statement")
|
|
}
|
|
res, err := stmt.Exec(accountId, i.Description, i.Host, i.Address, i.ZId)
|
|
if err != nil {
|
|
return 0, errors.Wrap(err, "error executing environments insert statement")
|
|
}
|
|
id, err := res.LastInsertId()
|
|
if err != nil {
|
|
return 0, errors.Wrap(err, "error retrieving last environments insert id")
|
|
}
|
|
return int(id), nil
|
|
}
|
|
|
|
func (self *Store) GetEnvironment(id int, tx *sqlx.Tx) (*Environment, error) {
|
|
i := &Environment{}
|
|
if err := tx.QueryRowx("select * from environments where id = ?", id).StructScan(i); err != nil {
|
|
return nil, errors.Wrap(err, "error selecting environment by id")
|
|
}
|
|
return i, nil
|
|
}
|
|
|
|
func (self *Store) FindEnvironmentsForAccount(accountId int, tx *sqlx.Tx) ([]*Environment, error) {
|
|
rows, err := tx.Queryx("select environments.* from environments where account_id = ?", accountId)
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "error selecting environments by account id")
|
|
}
|
|
var is []*Environment
|
|
for rows.Next() {
|
|
i := &Environment{}
|
|
if err := rows.StructScan(i); err != nil {
|
|
return nil, errors.Wrap(err, "error scanning environment")
|
|
}
|
|
is = append(is, i)
|
|
}
|
|
return is, nil
|
|
}
|
|
|
|
func (self *Store) DeleteEnvironment(id int, tx *sqlx.Tx) error {
|
|
stmt, err := tx.Prepare("delete from environments where id = ?")
|
|
if err != nil {
|
|
return errors.Wrap(err, "error preparing environments delete statement")
|
|
}
|
|
_, err = stmt.Exec(id)
|
|
if err != nil {
|
|
return errors.Wrap(err, "error executing environments delete statement")
|
|
}
|
|
return nil
|
|
}
|