open-vault/builtin/logical/postgresql/path_config_connection.go

76 lines
1.8 KiB
Go
Raw Normal View History

2015-04-19 00:34:36 +00:00
package postgresql
import (
"database/sql"
"fmt"
"github.com/hashicorp/vault/logical"
"github.com/hashicorp/vault/logical/framework"
_ "github.com/lib/pq"
)
2015-04-19 01:09:33 +00:00
func pathConfigConnection(b *backend) *framework.Path {
2015-04-19 00:34:36 +00:00
return &framework.Path{
Pattern: "config/connection",
Fields: map[string]*framework.FieldSchema{
"value": &framework.FieldSchema{
Type: framework.TypeString,
Description: "DB connection string",
},
},
Callbacks: map[logical.Operation]framework.OperationFunc{
2015-04-19 01:09:33 +00:00
logical.WriteOperation: b.pathConnectionWrite,
2015-04-19 00:34:36 +00:00
},
HelpSynopsis: pathConfigConnectionHelpSyn,
HelpDescription: pathConfigConnectionHelpDesc,
}
}
2015-04-19 01:09:33 +00:00
func (b *backend) pathConnectionWrite(
2015-04-19 00:34:36 +00:00
req *logical.Request, data *framework.FieldData) (*logical.Response, error) {
connString := data.Get("value").(string)
// Verify the string
db, err := sql.Open("postgres", connString)
if err != nil {
return logical.ErrorResponse(fmt.Sprintf(
"Error validating connection info: %s", err)), nil
}
defer db.Close()
if err := db.Ping(); err != nil {
return logical.ErrorResponse(fmt.Sprintf(
"Error validating connection info: %s", err)), nil
}
// Store it
entry, err := logical.StorageEntryJSON("config/connection", connString)
if err != nil {
return nil, err
}
if err := req.Storage.Put(entry); err != nil {
return nil, err
}
2015-04-19 01:09:33 +00:00
// Reset the DB connection
b.ResetDB()
2015-04-19 00:34:36 +00:00
return nil, nil
}
const pathConfigConnectionHelpSyn = `
Configure the connection string to talk to PostgreSQL.
`
const pathConfigConnectionHelpDesc = `
This path configures the connection string used to connect to PostgreSQL.
The value of the string can be a URL, or a PG style string in the
format of "user=foo host=bar" etc.
The URL looks like:
"postgresql://user:pass@host:port/dbname"
2015-04-19 00:34:36 +00:00
When configuring the connection string, the backend will verify its validity.
`