d2b09d854f
Implement a new error handling library based on pkg/errors. It provides stack saving on wrapping and exports some function to add stack saving also to external errors. It also implements custom zerolog error formatting without adding too much verbosity by just printing the chain error file:line without a full stack trace of every error. * Add a --detailed-errors options to print error with they full chain * Wrap all error returns. Use errors.WithStack to wrap without adding a new messsage and error.Wrap[f] to add a message. * Add golangci-lint wrapcheck to check that external packages errors are wrapped. This won't check that internal packages error are wrapped. But we want also to ensure this case so we'll have to find something else to check also these.
74 lines
2.0 KiB
Go
74 lines
2.0 KiB
Go
// Copyright 2019 Sorint.lab
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package db
|
|
|
|
import (
|
|
"context"
|
|
"database/sql"
|
|
|
|
"agola.io/agola/internal/errors"
|
|
sq "github.com/Masterminds/squirrel"
|
|
)
|
|
|
|
const dbVersionTableDDLTmpl = `
|
|
create table if not exists dbversion (version int not null, time timestamptz not null)
|
|
`
|
|
|
|
const dbVersion = 1
|
|
|
|
func (db *DB) Create(ctx context.Context, stmts []string) error {
|
|
sb := sq.StatementBuilder.PlaceholderFormat(sq.Dollar)
|
|
|
|
err := db.Do(ctx, func(tx *Tx) error {
|
|
if _, err := tx.Exec(dbVersionTableDDLTmpl); err != nil {
|
|
return errors.Wrapf(err, "failed to create dbversion table")
|
|
}
|
|
return nil
|
|
})
|
|
if err != nil {
|
|
return errors.WithStack(err)
|
|
}
|
|
|
|
err = db.Do(ctx, func(tx *Tx) error {
|
|
var version sql.NullInt64
|
|
q, args, err := sb.Select("max(version)").From("dbversion").ToSql()
|
|
if err != nil {
|
|
return errors.WithStack(err)
|
|
}
|
|
if err := tx.QueryRow(q, args...).Scan(&version); err != nil {
|
|
return errors.Wrapf(err, "cannot get current db version")
|
|
}
|
|
if version.Valid {
|
|
return nil
|
|
}
|
|
|
|
for _, stmt := range stmts {
|
|
if _, err := tx.Exec(stmt); err != nil {
|
|
return errors.Wrapf(err, "creation failed")
|
|
}
|
|
}
|
|
|
|
q, args, err = sb.Insert("dbversion").Columns("version", "time").Values(dbVersion, "now()").ToSql()
|
|
if err != nil {
|
|
return errors.WithStack(err)
|
|
}
|
|
if _, err := tx.Exec(q, args...); err != nil {
|
|
return errors.Wrapf(err, "failed to update dbversion table")
|
|
}
|
|
return nil
|
|
})
|
|
return errors.WithStack(err)
|
|
}
|