Scope adustments
This commit is contained in:
parent
2f56639f5b
commit
09c1bd44c9
@ -1,3 +0,0 @@
|
|||||||
package main
|
|
||||||
|
|
||||||
//anvildb.NewSelect().Model(&SSHKey{}).OrderExpr("ssh_key_user_name ASC").
|
|
14
functions.go
Normal file
14
functions.go
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"database/sql"
|
||||||
|
|
||||||
|
"github.com/uptrace/bun"
|
||||||
|
"github.com/uptrace/bun/dialect/pgdialect"
|
||||||
|
"github.com/uptrace/bun/driver/pgdriver"
|
||||||
|
)
|
||||||
|
|
||||||
|
func OpenDB(dsn string) *sql.DB {
|
||||||
|
sqldb := sql.OpenDB(pgdriver.NewConnector(pgdriver.WithDSN(dsn)))
|
||||||
|
return bun.NewDB(sqldb, pgdialect.New())
|
||||||
|
}
|
39
main.go
39
main.go
@ -2,17 +2,15 @@ package main
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"database/sql"
|
|
||||||
|
|
||||||
"github.com/uptrace/bun/driver/pgdriver"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
// Tofu Provider is the goal
|
// Tofu Provider is the goal
|
||||||
// Data Sources first
|
// Data Sources first
|
||||||
// Resources later
|
// Resources later
|
||||||
|
|
||||||
//var users []UserModel
|
var users []UserModel
|
||||||
//var ssh_keys []SSHKeyModel
|
var ssh_keys []SSHKeyModel
|
||||||
|
|
||||||
//var servers []Server
|
//var servers []Server
|
||||||
//var server_definitions []ServerDefinition
|
//var server_definitions []ServerDefinition
|
||||||
//var manifests []Manifest
|
//var manifests []Manifest
|
||||||
@ -21,48 +19,25 @@ import (
|
|||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
var (
|
var (
|
||||||
err error
|
|
||||||
ctx = context.Background()
|
ctx = context.Background()
|
||||||
dsn = "postgres://postgres:Initial1@localhost:15432/anvil?sslmode=disable"
|
dsn = "postgres://postgres:Initial1@localhost:15432/anvil?sslmode=disable"
|
||||||
// dsn := "unix://user:pass@dbname/var/run/postgresql/.s.PGSQL.5432"
|
// dsn := "unix://user:pass@dbname/var/run/postgresql/.s.PGSQL.5432"
|
||||||
)
|
)
|
||||||
|
// Calling PostgresClient as an instance method as per:
|
||||||
sqldb := sql.OpenDB(pgdriver.NewConnector(pgdriver.WithDSN(dsn)))
|
// https://stackoverflow.com/questions/38666404/not-enough-arguments-in-call-to-method-expression
|
||||||
anvil := &Anvil{
|
anvildb := OpenDB(dsn)
|
||||||
Strikers: []Striker{
|
|
||||||
Striker{
|
|
||||||
FQDN: "mh-striker01.libre.audio",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
anvil.Strikers[0].Endpoints.Postgresql = &sqldb
|
|
||||||
|
|
||||||
// Turn these into funcs with error handling, logging, return vals etc.
|
// Turn these into funcs with error handling, logging, return vals etc.
|
||||||
// if usererr := anvildb.NewSelect().
|
// if usererr := anvildb.NewSelect().
|
||||||
// // Turning *User into an interface &User{}
|
// // Turning *User into an interface &User{}
|
||||||
// Model(&User{}).
|
// Model(&UserModel{}).
|
||||||
// OrderExpr("user_uuid ASC").
|
// OrderExpr("user_uuid ASC").
|
||||||
// Limit(10).
|
// Limit(10).
|
||||||
// Scan(ctx, &users); usererr != nil {
|
// Scan(ctx, &users); usererr != nil {
|
||||||
// errors.Join(usererr, err)
|
// errors.Join(usererr, err)
|
||||||
// }
|
// }
|
||||||
// if sshkeyerr := anvildb.NewSelect().
|
|
||||||
// Model(&SSHKey{}).
|
|
||||||
// OrderExpr("ssh_key_user_name ASC").
|
|
||||||
// Scan(ctx, &ssh_keys); sshkeyerr != nil {
|
|
||||||
// errors.Join(sshkeyerr, err)
|
|
||||||
// }
|
|
||||||
// fmt.Printf("##\n## Users\n###\n\n")
|
// fmt.Printf("##\n## Users\n###\n\n")
|
||||||
// for _, val := range users {
|
// for _, val := range users {
|
||||||
// fmt.Printf("%s\n", val.Username)
|
// fmt.Printf("%s\n", val.Username)
|
||||||
// }
|
// }
|
||||||
// fmt.Printf("##\n## SSH Keys\n##\n\n")
|
|
||||||
// for _, val := range ssh_keys {
|
|
||||||
// fmt.Printf("UUID :\n%s\n", val.UUID.String())
|
|
||||||
// fmt.Printf("Username :\n%s\n", val.Username)
|
|
||||||
// fmt.Printf("PublicKey :\n%s\n", val.PublicKey)
|
|
||||||
// fmt.Printf("####\n\n")
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// fmt.Printf("%+v\n", users)
|
|
||||||
}
|
}
|
||||||
|
28
types.go
28
types.go
@ -16,20 +16,24 @@ type Anvil struct {
|
|||||||
UPSes []UPS
|
UPSes []UPS
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type WebClient struct {
|
||||||
|
*http.Client
|
||||||
|
}
|
||||||
|
|
||||||
|
type SSHClient struct {
|
||||||
|
*ssh.Client
|
||||||
|
}
|
||||||
|
|
||||||
|
type PostgresClient struct {
|
||||||
|
*sql.DB
|
||||||
|
}
|
||||||
|
|
||||||
type Striker struct {
|
type Striker struct {
|
||||||
FQDN string
|
FQDN string
|
||||||
Endpoints struct {
|
|
||||||
StrikerWebUI *http.Client
|
|
||||||
Postgresql *sql.DB
|
|
||||||
SecureShell *ssh.Client
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type Host struct {
|
type Host struct {
|
||||||
FQDN string
|
FQDN string
|
||||||
Endpoints struct {
|
|
||||||
SecureShell *ssh.Client
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type BMC struct {
|
type BMC struct {
|
||||||
@ -43,7 +47,3 @@ type PDU struct {
|
|||||||
|
|
||||||
type UPS struct {
|
type UPS struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
//func (d *DB) GetManifests() *SelectQuery {
|
|
||||||
//
|
|
||||||
//}
|
|
||||||
|
Loading…
Reference in New Issue
Block a user