mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-04 04:28:08 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			113 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			113 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package mongodb
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
	"fmt"
 | 
						|
 | 
						|
	"github.com/hashicorp/vault/sdk/framework"
 | 
						|
	"github.com/hashicorp/vault/sdk/logical"
 | 
						|
	mgo "gopkg.in/mgo.v2"
 | 
						|
)
 | 
						|
 | 
						|
func pathConfigConnection(b *backend) *framework.Path {
 | 
						|
	return &framework.Path{
 | 
						|
		Pattern: "config/connection",
 | 
						|
		Fields: map[string]*framework.FieldSchema{
 | 
						|
			"uri": {
 | 
						|
				Type:        framework.TypeString,
 | 
						|
				Description: "MongoDB standard connection string (URI)",
 | 
						|
			},
 | 
						|
			"verify_connection": {
 | 
						|
				Type:        framework.TypeBool,
 | 
						|
				Default:     true,
 | 
						|
				Description: `If set, uri is verified by actually connecting to the database`,
 | 
						|
			},
 | 
						|
		},
 | 
						|
		Callbacks: map[logical.Operation]framework.OperationFunc{
 | 
						|
			logical.ReadOperation:   b.pathConnectionRead,
 | 
						|
			logical.UpdateOperation: b.pathConnectionWrite,
 | 
						|
		},
 | 
						|
		HelpSynopsis:    pathConfigConnectionHelpSyn,
 | 
						|
		HelpDescription: pathConfigConnectionHelpDesc,
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
// pathConnectionRead reads out the connection configuration
 | 
						|
func (b *backend) pathConnectionRead(ctx context.Context, req *logical.Request, data *framework.FieldData) (*logical.Response, error) {
 | 
						|
	entry, err := req.Storage.Get(ctx, "config/connection")
 | 
						|
	if err != nil {
 | 
						|
		return nil, fmt.Errorf("failed to read connection configuration")
 | 
						|
	}
 | 
						|
	if entry == nil {
 | 
						|
		return nil, nil
 | 
						|
	}
 | 
						|
 | 
						|
	return nil, nil
 | 
						|
}
 | 
						|
 | 
						|
func (b *backend) pathConnectionWrite(ctx context.Context, req *logical.Request, data *framework.FieldData) (*logical.Response, error) {
 | 
						|
	uri := data.Get("uri").(string)
 | 
						|
	if uri == "" {
 | 
						|
		return logical.ErrorResponse("uri parameter is required"), nil
 | 
						|
	}
 | 
						|
 | 
						|
	dialInfo, err := parseMongoURI(uri)
 | 
						|
	if err != nil {
 | 
						|
		return logical.ErrorResponse(fmt.Sprintf("invalid uri: %s", err)), nil
 | 
						|
	}
 | 
						|
 | 
						|
	// Don't check the config if verification is disabled
 | 
						|
	verifyConnection := data.Get("verify_connection").(bool)
 | 
						|
	if verifyConnection {
 | 
						|
		// Verify the config
 | 
						|
		session, err := mgo.DialWithInfo(dialInfo)
 | 
						|
		if err != nil {
 | 
						|
			return logical.ErrorResponse(fmt.Sprintf(
 | 
						|
				"Error validating connection info: %s", err)), nil
 | 
						|
		}
 | 
						|
		defer session.Close()
 | 
						|
		if err := session.Ping(); err != nil {
 | 
						|
			return logical.ErrorResponse(fmt.Sprintf(
 | 
						|
				"Error validating connection info: %s", err)), nil
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	// Store it
 | 
						|
	entry, err := logical.StorageEntryJSON("config/connection", connectionConfig{
 | 
						|
		URI: uri,
 | 
						|
	})
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if err := req.Storage.Put(ctx, entry); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
 | 
						|
	// Reset the Session
 | 
						|
	b.ResetSession(ctx)
 | 
						|
 | 
						|
	resp := &logical.Response{}
 | 
						|
	resp.AddWarning("Read access to this endpoint should be controlled via ACLs as it will return the connection URI as it is, including passwords, if any.")
 | 
						|
 | 
						|
	return resp, nil
 | 
						|
}
 | 
						|
 | 
						|
type connectionConfig struct {
 | 
						|
	URI string `json:"uri" structs:"uri" mapstructure:"uri"`
 | 
						|
}
 | 
						|
 | 
						|
const pathConfigConnectionHelpSyn = `
 | 
						|
Configure the connection string to talk to MongoDB.
 | 
						|
`
 | 
						|
 | 
						|
const pathConfigConnectionHelpDesc = `
 | 
						|
This path configures the standard connection string (URI) used to connect to MongoDB.
 | 
						|
 | 
						|
A MongoDB URI looks like:
 | 
						|
"mongodb://[username:password@]host1[:port1][,host2[:port2],...[,hostN[:portN]]][/[database][?options]]"
 | 
						|
 | 
						|
See https://docs.mongodb.org/manual/reference/connection-string/ for detailed documentation of the URI format.
 | 
						|
 | 
						|
When configuring the connection string, the backend will verify its validity.
 | 
						|
`
 |