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
|
//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"
"github.com/lxc/incus/v6/internal/server/certificate"
)
var certificateObjects = RegisterStmt(`
SELECT certificates.id, certificates.fingerprint, certificates.type, certificates.name, certificates.certificate, certificates.restricted, certificates.description
FROM certificates
ORDER BY certificates.fingerprint
`)
var certificateObjectsByID = RegisterStmt(`
SELECT certificates.id, certificates.fingerprint, certificates.type, certificates.name, certificates.certificate, certificates.restricted, certificates.description
FROM certificates
WHERE ( certificates.id = ? )
ORDER BY certificates.fingerprint
`)
var certificateObjectsByFingerprint = RegisterStmt(`
SELECT certificates.id, certificates.fingerprint, certificates.type, certificates.name, certificates.certificate, certificates.restricted, certificates.description
FROM certificates
WHERE ( certificates.fingerprint = ? )
ORDER BY certificates.fingerprint
`)
var certificateID = RegisterStmt(`
SELECT certificates.id FROM certificates
WHERE certificates.fingerprint = ?
`)
var certificateCreate = RegisterStmt(`
INSERT INTO certificates (fingerprint, type, name, certificate, restricted, description)
VALUES (?, ?, ?, ?, ?, ?)
`)
var certificateDeleteByFingerprint = RegisterStmt(`
DELETE FROM certificates WHERE fingerprint = ?
`)
var certificateDeleteByNameAndType = RegisterStmt(`
DELETE FROM certificates WHERE name = ? AND type = ?
`)
var certificateUpdate = RegisterStmt(`
UPDATE certificates
SET fingerprint = ?, type = ?, name = ?, certificate = ?, restricted = ?, description = ?
WHERE id = ?
`)
// certificateColumns 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 Certificate entity.
func certificateColumns() string {
return "certificates.id, certificates.fingerprint, certificates.type, certificates.name, certificates.certificate, certificates.restricted, certificates.description"
}
// getCertificates can be used to run handwritten sql.Stmts to return a slice of objects.
func getCertificates(ctx context.Context, stmt *sql.Stmt, args ...any) ([]Certificate, error) {
objects := make([]Certificate, 0)
dest := func(scan func(dest ...any) error) error {
c := Certificate{}
err := scan(&c.ID, &c.Fingerprint, &c.Type, &c.Name, &c.Certificate, &c.Restricted, &c.Description)
if err != nil {
return err
}
objects = append(objects, c)
return nil
}
err := selectObjects(ctx, stmt, dest, args...)
if err != nil {
return nil, fmt.Errorf("Failed to fetch from \"certificates\" table: %w", err)
}
return objects, nil
}
// getCertificatesRaw can be used to run handwritten query strings to return a slice of objects.
func getCertificatesRaw(ctx context.Context, db dbtx, sql string, args ...any) ([]Certificate, error) {
objects := make([]Certificate, 0)
dest := func(scan func(dest ...any) error) error {
c := Certificate{}
err := scan(&c.ID, &c.Fingerprint, &c.Type, &c.Name, &c.Certificate, &c.Restricted, &c.Description)
if err != nil {
return err
}
objects = append(objects, c)
return nil
}
err := scan(ctx, db, sql, dest, args...)
if err != nil {
return nil, fmt.Errorf("Failed to fetch from \"certificates\" table: %w", err)
}
return objects, nil
}
// GetCertificates returns all available certificates.
// generator: certificate GetMany
func GetCertificates(ctx context.Context, db dbtx, filters ...CertificateFilter) (_ []Certificate, _err error) {
defer func() {
_err = mapErr(_err, "Certificate")
}()
var err error
// Result slice.
objects := make([]Certificate, 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, certificateObjects)
if err != nil {
return nil, fmt.Errorf("Failed to get \"certificateObjects\" prepared statement: %w", err)
}
}
for i, filter := range filters {
if filter.ID != nil && filter.Fingerprint == nil && filter.Name == nil && filter.Type == nil {
args = append(args, []any{filter.ID}...)
if len(filters) == 1 {
sqlStmt, err = Stmt(db, certificateObjectsByID)
if err != nil {
return nil, fmt.Errorf("Failed to get \"certificateObjectsByID\" prepared statement: %w", err)
}
break
}
query, err := StmtString(certificateObjectsByID)
if err != nil {
return nil, fmt.Errorf("Failed to get \"certificateObjects\" 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.Fingerprint != nil && filter.ID == nil && filter.Name == nil && filter.Type == nil {
args = append(args, []any{filter.Fingerprint}...)
if len(filters) == 1 {
sqlStmt, err = Stmt(db, certificateObjectsByFingerprint)
if err != nil {
return nil, fmt.Errorf("Failed to get \"certificateObjectsByFingerprint\" prepared statement: %w", err)
}
break
}
query, err := StmtString(certificateObjectsByFingerprint)
if err != nil {
return nil, fmt.Errorf("Failed to get \"certificateObjects\" 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.Fingerprint == nil && filter.Name == nil && filter.Type == nil {
return nil, fmt.Errorf("Cannot filter on empty CertificateFilter")
} else {
return nil, errors.New("No statement exists for the given Filter")
}
}
// Select.
if sqlStmt != nil {
objects, err = getCertificates(ctx, sqlStmt, args...)
} else {
queryStr := strings.Join(queryParts[:], "ORDER BY")
objects, err = getCertificatesRaw(ctx, db, queryStr, args...)
}
if err != nil {
return nil, fmt.Errorf("Failed to fetch from \"certificates\" table: %w", err)
}
return objects, nil
}
// GetCertificate returns the certificate with the given key.
// generator: certificate GetOne
func GetCertificate(ctx context.Context, db dbtx, fingerprint string) (_ *Certificate, _err error) {
defer func() {
_err = mapErr(_err, "Certificate")
}()
filter := CertificateFilter{}
filter.Fingerprint = &fingerprint
objects, err := GetCertificates(ctx, db, filter)
if err != nil {
return nil, fmt.Errorf("Failed to fetch from \"certificates\" 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 \"certificates\" entry matches")
}
}
// GetCertificateID return the ID of the certificate with the given key.
// generator: certificate ID
func GetCertificateID(ctx context.Context, db tx, fingerprint string) (_ int64, _err error) {
defer func() {
_err = mapErr(_err, "Certificate")
}()
stmt, err := Stmt(db, certificateID)
if err != nil {
return -1, fmt.Errorf("Failed to get \"certificateID\" prepared statement: %w", err)
}
row := stmt.QueryRowContext(ctx, fingerprint)
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 \"certificates\" ID: %w", err)
}
return id, nil
}
// CertificateExists checks if a certificate with the given key exists.
// generator: certificate Exists
func CertificateExists(ctx context.Context, db dbtx, fingerprint string) (_ bool, _err error) {
defer func() {
_err = mapErr(_err, "Certificate")
}()
stmt, err := Stmt(db, certificateID)
if err != nil {
return false, fmt.Errorf("Failed to get \"certificateID\" prepared statement: %w", err)
}
row := stmt.QueryRowContext(ctx, fingerprint)
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 \"certificates\" ID: %w", err)
}
return true, nil
}
// CreateCertificate adds a new certificate to the database.
// generator: certificate Create
func CreateCertificate(ctx context.Context, db dbtx, object Certificate) (_ int64, _err error) {
defer func() {
_err = mapErr(_err, "Certificate")
}()
args := make([]any, 6)
// Populate the statement arguments.
args[0] = object.Fingerprint
args[1] = object.Type
args[2] = object.Name
args[3] = object.Certificate
args[4] = object.Restricted
args[5] = object.Description
// Prepared statement to use.
stmt, err := Stmt(db, certificateCreate)
if err != nil {
return -1, fmt.Errorf("Failed to get \"certificateCreate\" 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 \"certificates\" entry: %w", err)
}
id, err := result.LastInsertId()
if err != nil {
return -1, fmt.Errorf("Failed to fetch \"certificates\" entry ID: %w", err)
}
return id, nil
}
// DeleteCertificate deletes the certificate matching the given key parameters.
// generator: certificate DeleteOne-by-Fingerprint
func DeleteCertificate(ctx context.Context, db dbtx, fingerprint string) (_err error) {
defer func() {
_err = mapErr(_err, "Certificate")
}()
stmt, err := Stmt(db, certificateDeleteByFingerprint)
if err != nil {
return fmt.Errorf("Failed to get \"certificateDeleteByFingerprint\" prepared statement: %w", err)
}
result, err := stmt.Exec(fingerprint)
if err != nil {
return fmt.Errorf("Delete \"certificates\": %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 Certificate rows instead of 1", n)
}
return nil
}
// DeleteCertificates deletes the certificate matching the given key parameters.
// generator: certificate DeleteMany-by-Name-and-Type
func DeleteCertificates(ctx context.Context, db dbtx, name string, certificateType certificate.Type) (_err error) {
defer func() {
_err = mapErr(_err, "Certificate")
}()
stmt, err := Stmt(db, certificateDeleteByNameAndType)
if err != nil {
return fmt.Errorf("Failed to get \"certificateDeleteByNameAndType\" prepared statement: %w", err)
}
result, err := stmt.Exec(name, certificateType)
if err != nil {
return fmt.Errorf("Delete \"certificates\": %w", err)
}
_, err = result.RowsAffected()
if err != nil {
return fmt.Errorf("Fetch affected rows: %w", err)
}
return nil
}
// UpdateCertificate updates the certificate matching the given key parameters.
// generator: certificate Update
func UpdateCertificate(ctx context.Context, db tx, fingerprint string, object Certificate) (_err error) {
defer func() {
_err = mapErr(_err, "Certificate")
}()
id, err := GetCertificateID(ctx, db, fingerprint)
if err != nil {
return err
}
stmt, err := Stmt(db, certificateUpdate)
if err != nil {
return fmt.Errorf("Failed to get \"certificateUpdate\" prepared statement: %w", err)
}
result, err := stmt.Exec(object.Fingerprint, object.Type, object.Name, object.Certificate, object.Restricted, object.Description, id)
if err != nil {
return fmt.Errorf("Update \"certificates\" 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
}
|