3c683dba92
This PR adds a new Storage Backend for Triton's Object Storage - Manta ``` make testacc TEST=./physical/manta ==> Checking that code complies with gofmt requirements... ==> Checking that build is using go version >= 1.9.1... go generate VAULT_ACC=1 go test -tags='vault' ./physical/manta -v -timeout 45m === RUN TestMantaBackend --- PASS: TestMantaBackend (61.18s) PASS ok github.com/hashicorp/vault/physical/manta 61.210s ``` Manta behaves differently to how S3 works - it has no such concepts of Buckets - it is merely a filesystem style object store Therefore, we have chosen the approach of when writing a secret `foo` it will actually map (on disk) as foo/.vault_value The reason for this is because if we write the secret `foo/bar` and then try and Delete a key using the name `foo` then Manta will complain that the folder is not empty because `foo/bar` exists. Therefore, `foo/bar` is written as `foo/bar/.vault_value` The value of the key is *always* written to a directory tree of the name and put in a `.vault_value` file.
55 lines
1.4 KiB
Go
55 lines
1.4 KiB
Go
//
|
|
// Copyright (c) 2018, Joyent, Inc. All rights reserved.
|
|
//
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
//
|
|
|
|
package storage
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"net/http"
|
|
|
|
"github.com/joyent/triton-go/client"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
type SnapLinksClient struct {
|
|
client *client.Client
|
|
}
|
|
|
|
// PutSnapLinkInput represents parameters to a PutSnapLink operation.
|
|
type PutSnapLinkInput struct {
|
|
LinkPath string
|
|
SourcePath string
|
|
}
|
|
|
|
// PutSnapLink creates a SnapLink to an object.
|
|
func (s *SnapLinksClient) Put(ctx context.Context, input *PutSnapLinkInput) error {
|
|
linkPath := fmt.Sprintf("/%s%s", s.client.AccountName, input.LinkPath)
|
|
sourcePath := fmt.Sprintf("/%s%s", s.client.AccountName, input.SourcePath)
|
|
headers := &http.Header{}
|
|
headers.Set("Content-Type", "application/json; type=link")
|
|
headers.Set("location", sourcePath)
|
|
headers.Set("Accept", "~1.0")
|
|
headers.Set("Accept-Version", "application/json, */*")
|
|
|
|
reqInput := client.RequestInput{
|
|
Method: http.MethodPut,
|
|
Path: linkPath,
|
|
Headers: headers,
|
|
}
|
|
respBody, _, err := s.client.ExecuteRequestStorage(ctx, reqInput)
|
|
if respBody != nil {
|
|
defer respBody.Close()
|
|
}
|
|
if err != nil {
|
|
return errors.Wrapf(err, "unable to put snaplink")
|
|
}
|
|
|
|
return nil
|
|
}
|