1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475
|
//go:build linux && cgo && !agent
// Code generated by generate-database from the incus project - DO NOT EDIT.
package cluster
import (
"context"
"database/sql"
"errors"
"fmt"
"strings"
)
var networkIntegrationObjects = RegisterStmt(`
SELECT networks_integrations.id, networks_integrations.name, networks_integrations.description, networks_integrations.type
FROM networks_integrations
ORDER BY networks_integrations.name
`)
var networkIntegrationObjectsByName = RegisterStmt(`
SELECT networks_integrations.id, networks_integrations.name, networks_integrations.description, networks_integrations.type
FROM networks_integrations
WHERE ( networks_integrations.name = ? )
ORDER BY networks_integrations.name
`)
var networkIntegrationObjectsByID = RegisterStmt(`
SELECT networks_integrations.id, networks_integrations.name, networks_integrations.description, networks_integrations.type
FROM networks_integrations
WHERE ( networks_integrations.id = ? )
ORDER BY networks_integrations.name
`)
var networkIntegrationCreate = RegisterStmt(`
INSERT INTO networks_integrations (name, description, type)
VALUES (?, ?, ?)
`)
var networkIntegrationID = RegisterStmt(`
SELECT networks_integrations.id FROM networks_integrations
WHERE networks_integrations.name = ?
`)
var networkIntegrationRename = RegisterStmt(`
UPDATE networks_integrations SET name = ? WHERE name = ?
`)
var networkIntegrationUpdate = RegisterStmt(`
UPDATE networks_integrations
SET name = ?, description = ?, type = ?
WHERE id = ?
`)
var networkIntegrationDeleteByName = RegisterStmt(`
DELETE FROM networks_integrations WHERE name = ?
`)
// networkIntegrationColumns returns a string of column names to be used with a SELECT statement for the entity.
// Use this function when building statements to retrieve database entries matching the NetworkIntegration entity.
func networkIntegrationColumns() string {
return "networks_integrations.id, networks_integrations.name, networks_integrations.description, networks_integrations.type"
}
// getNetworkIntegrations can be used to run handwritten sql.Stmts to return a slice of objects.
func getNetworkIntegrations(ctx context.Context, stmt *sql.Stmt, args ...any) ([]NetworkIntegration, error) {
objects := make([]NetworkIntegration, 0)
dest := func(scan func(dest ...any) error) error {
n := NetworkIntegration{}
err := scan(&n.ID, &n.Name, &n.Description, &n.Type)
if err != nil {
return err
}
objects = append(objects, n)
return nil
}
err := selectObjects(ctx, stmt, dest, args...)
if err != nil {
return nil, fmt.Errorf("Failed to fetch from \"networks_integrations\" table: %w", err)
}
return objects, nil
}
// getNetworkIntegrationsRaw can be used to run handwritten query strings to return a slice of objects.
func getNetworkIntegrationsRaw(ctx context.Context, db dbtx, sql string, args ...any) ([]NetworkIntegration, error) {
objects := make([]NetworkIntegration, 0)
dest := func(scan func(dest ...any) error) error {
n := NetworkIntegration{}
err := scan(&n.ID, &n.Name, &n.Description, &n.Type)
if err != nil {
return err
}
objects = append(objects, n)
return nil
}
err := scan(ctx, db, sql, dest, args...)
if err != nil {
return nil, fmt.Errorf("Failed to fetch from \"networks_integrations\" table: %w", err)
}
return objects, nil
}
// GetNetworkIntegrations returns all available network_integrations.
// generator: network_integration GetMany
func GetNetworkIntegrations(ctx context.Context, db dbtx, filters ...NetworkIntegrationFilter) (_ []NetworkIntegration, _err error) {
defer func() {
_err = mapErr(_err, "Network_integration")
}()
var err error
// Result slice.
objects := make([]NetworkIntegration, 0)
// Pick the prepared statement and arguments to use based on active criteria.
var sqlStmt *sql.Stmt
args := []any{}
queryParts := [2]string{}
if len(filters) == 0 {
sqlStmt, err = Stmt(db, networkIntegrationObjects)
if err != nil {
return nil, fmt.Errorf("Failed to get \"networkIntegrationObjects\" prepared statement: %w", err)
}
}
for i, filter := range filters {
if filter.Name != nil && filter.ID == nil {
args = append(args, []any{filter.Name}...)
if len(filters) == 1 {
sqlStmt, err = Stmt(db, networkIntegrationObjectsByName)
if err != nil {
return nil, fmt.Errorf("Failed to get \"networkIntegrationObjectsByName\" prepared statement: %w", err)
}
break
}
query, err := StmtString(networkIntegrationObjectsByName)
if err != nil {
return nil, fmt.Errorf("Failed to get \"networkIntegrationObjects\" prepared statement: %w", err)
}
parts := strings.SplitN(query, "ORDER BY", 2)
if i == 0 {
copy(queryParts[:], parts)
continue
}
_, where, _ := strings.Cut(parts[0], "WHERE")
queryParts[0] += "OR" + where
} else if filter.ID != nil && filter.Name == nil {
args = append(args, []any{filter.ID}...)
if len(filters) == 1 {
sqlStmt, err = Stmt(db, networkIntegrationObjectsByID)
if err != nil {
return nil, fmt.Errorf("Failed to get \"networkIntegrationObjectsByID\" prepared statement: %w", err)
}
break
}
query, err := StmtString(networkIntegrationObjectsByID)
if err != nil {
return nil, fmt.Errorf("Failed to get \"networkIntegrationObjects\" prepared statement: %w", err)
}
parts := strings.SplitN(query, "ORDER BY", 2)
if i == 0 {
copy(queryParts[:], parts)
continue
}
_, where, _ := strings.Cut(parts[0], "WHERE")
queryParts[0] += "OR" + where
} else if filter.ID == nil && filter.Name == nil {
return nil, fmt.Errorf("Cannot filter on empty NetworkIntegrationFilter")
} else {
return nil, errors.New("No statement exists for the given Filter")
}
}
// Select.
if sqlStmt != nil {
objects, err = getNetworkIntegrations(ctx, sqlStmt, args...)
} else {
queryStr := strings.Join(queryParts[:], "ORDER BY")
objects, err = getNetworkIntegrationsRaw(ctx, db, queryStr, args...)
}
if err != nil {
return nil, fmt.Errorf("Failed to fetch from \"networks_integrations\" table: %w", err)
}
return objects, nil
}
// GetNetworkIntegrationConfig returns all available NetworkIntegration Config
// generator: network_integration GetMany
func GetNetworkIntegrationConfig(ctx context.Context, db tx, networkIntegrationID int, filters ...ConfigFilter) (_ map[string]string, _err error) {
defer func() {
_err = mapErr(_err, "Network_integration")
}()
networkIntegrationConfig, err := GetConfig(ctx, db, "networks_integrations", "network_integration", filters...)
if err != nil {
return nil, err
}
config, ok := networkIntegrationConfig[networkIntegrationID]
if !ok {
config = map[string]string{}
}
return config, nil
}
// GetNetworkIntegration returns the network_integration with the given key.
// generator: network_integration GetOne
func GetNetworkIntegration(ctx context.Context, db dbtx, name string) (_ *NetworkIntegration, _err error) {
defer func() {
_err = mapErr(_err, "Network_integration")
}()
filter := NetworkIntegrationFilter{}
filter.Name = &name
objects, err := GetNetworkIntegrations(ctx, db, filter)
if err != nil {
return nil, fmt.Errorf("Failed to fetch from \"networks_integrations\" table: %w", err)
}
switch len(objects) {
case 0:
return nil, ErrNotFound
case 1:
return &objects[0], nil
default:
return nil, fmt.Errorf("More than one \"networks_integrations\" entry matches")
}
}
// NetworkIntegrationExists checks if a network_integration with the given key exists.
// generator: network_integration Exists
func NetworkIntegrationExists(ctx context.Context, db dbtx, name string) (_ bool, _err error) {
defer func() {
_err = mapErr(_err, "Network_integration")
}()
stmt, err := Stmt(db, networkIntegrationID)
if err != nil {
return false, fmt.Errorf("Failed to get \"networkIntegrationID\" prepared statement: %w", err)
}
row := stmt.QueryRowContext(ctx, name)
var id int64
err = row.Scan(&id)
if errors.Is(err, sql.ErrNoRows) {
return false, nil
}
if err != nil {
return false, fmt.Errorf("Failed to get \"networks_integrations\" ID: %w", err)
}
return true, nil
}
// CreateNetworkIntegration adds a new network_integration to the database.
// generator: network_integration Create
func CreateNetworkIntegration(ctx context.Context, db dbtx, object NetworkIntegration) (_ int64, _err error) {
defer func() {
_err = mapErr(_err, "Network_integration")
}()
args := make([]any, 3)
// Populate the statement arguments.
args[0] = object.Name
args[1] = object.Description
args[2] = object.Type
// Prepared statement to use.
stmt, err := Stmt(db, networkIntegrationCreate)
if err != nil {
return -1, fmt.Errorf("Failed to get \"networkIntegrationCreate\" prepared statement: %w", err)
}
// Execute the statement.
result, err := stmt.Exec(args...)
if err != nil && strings.HasPrefix(err.Error(), "UNIQUE constraint failed:") {
return -1, ErrConflict
}
if err != nil {
return -1, fmt.Errorf("Failed to create \"networks_integrations\" entry: %w", err)
}
id, err := result.LastInsertId()
if err != nil {
return -1, fmt.Errorf("Failed to fetch \"networks_integrations\" entry ID: %w", err)
}
return id, nil
}
// CreateNetworkIntegrationConfig adds new network_integration Config to the database.
// generator: network_integration Create
func CreateNetworkIntegrationConfig(ctx context.Context, db dbtx, networkIntegrationID int64, config map[string]string) (_err error) {
defer func() {
_err = mapErr(_err, "Network_integration")
}()
referenceID := int(networkIntegrationID)
for key, value := range config {
insert := Config{
ReferenceID: referenceID,
Key: key,
Value: value,
}
err := CreateConfig(ctx, db, "networks_integrations", "network_integration", insert)
if err != nil {
return fmt.Errorf("Insert Config failed for NetworkIntegration: %w", err)
}
}
return nil
}
// GetNetworkIntegrationID return the ID of the network_integration with the given key.
// generator: network_integration ID
func GetNetworkIntegrationID(ctx context.Context, db tx, name string) (_ int64, _err error) {
defer func() {
_err = mapErr(_err, "Network_integration")
}()
stmt, err := Stmt(db, networkIntegrationID)
if err != nil {
return -1, fmt.Errorf("Failed to get \"networkIntegrationID\" prepared statement: %w", err)
}
row := stmt.QueryRowContext(ctx, name)
var id int64
err = row.Scan(&id)
if errors.Is(err, sql.ErrNoRows) {
return -1, ErrNotFound
}
if err != nil {
return -1, fmt.Errorf("Failed to get \"networks_integrations\" ID: %w", err)
}
return id, nil
}
// RenameNetworkIntegration renames the network_integration matching the given key parameters.
// generator: network_integration Rename
func RenameNetworkIntegration(ctx context.Context, db dbtx, name string, to string) (_err error) {
defer func() {
_err = mapErr(_err, "Network_integration")
}()
stmt, err := Stmt(db, networkIntegrationRename)
if err != nil {
return fmt.Errorf("Failed to get \"networkIntegrationRename\" prepared statement: %w", err)
}
result, err := stmt.Exec(to, name)
if err != nil {
return fmt.Errorf("Rename NetworkIntegration failed: %w", err)
}
n, err := result.RowsAffected()
if err != nil {
return fmt.Errorf("Fetch affected rows failed: %w", err)
}
if n != 1 {
return fmt.Errorf("Query affected %d rows instead of 1", n)
}
return nil
}
// DeleteNetworkIntegration deletes the network_integration matching the given key parameters.
// generator: network_integration DeleteOne-by-Name
func DeleteNetworkIntegration(ctx context.Context, db dbtx, name string) (_err error) {
defer func() {
_err = mapErr(_err, "Network_integration")
}()
stmt, err := Stmt(db, networkIntegrationDeleteByName)
if err != nil {
return fmt.Errorf("Failed to get \"networkIntegrationDeleteByName\" prepared statement: %w", err)
}
result, err := stmt.Exec(name)
if err != nil {
return fmt.Errorf("Delete \"networks_integrations\": %w", err)
}
n, err := result.RowsAffected()
if err != nil {
return fmt.Errorf("Fetch affected rows: %w", err)
}
if n == 0 {
return ErrNotFound
} else if n > 1 {
return fmt.Errorf("Query deleted %d NetworkIntegration rows instead of 1", n)
}
return nil
}
// UpdateNetworkIntegration updates the network_integration matching the given key parameters.
// generator: network_integration Update
func UpdateNetworkIntegration(ctx context.Context, db tx, name string, object NetworkIntegration) (_err error) {
defer func() {
_err = mapErr(_err, "Network_integration")
}()
id, err := GetNetworkIntegrationID(ctx, db, name)
if err != nil {
return err
}
stmt, err := Stmt(db, networkIntegrationUpdate)
if err != nil {
return fmt.Errorf("Failed to get \"networkIntegrationUpdate\" prepared statement: %w", err)
}
result, err := stmt.Exec(object.Name, object.Description, object.Type, id)
if err != nil {
return fmt.Errorf("Update \"networks_integrations\" entry failed: %w", err)
}
n, err := result.RowsAffected()
if err != nil {
return fmt.Errorf("Fetch affected rows: %w", err)
}
if n != 1 {
return fmt.Errorf("Query updated %d rows instead of 1", n)
}
return nil
}
// UpdateNetworkIntegrationConfig updates the network_integration Config matching the given key parameters.
// generator: network_integration Update
func UpdateNetworkIntegrationConfig(ctx context.Context, db tx, networkIntegrationID int64, config map[string]string) (_err error) {
defer func() {
_err = mapErr(_err, "Network_integration")
}()
err := UpdateConfig(ctx, db, "networks_integrations", "network_integration", int(networkIntegrationID), config)
if err != nil {
return fmt.Errorf("Replace Config for NetworkIntegration failed: %w", err)
}
return nil
}
|