perkeep/cmd/camput/uploader.go

128 lines
3.5 KiB
Go

/*
Copyright 2012 Google Inc.
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 main
import (
"errors"
"net/http"
"strings"
"time"
"camlistore.org/pkg/blobserver"
"camlistore.org/pkg/client"
"camlistore.org/pkg/httputil"
"camlistore.org/pkg/jsonsign"
"camlistore.org/pkg/schema"
)
type Uploader struct {
*client.Client
fileOpts *fileOptions // per-file options; may be nil
// for debugging; normally nil, but overrides Client if set
// TODO(bradfitz): clean this up? embed a StatReceiver instead
// of a Client?
altStatReceiver blobserver.StatReceiver
entityFetcher jsonsign.EntityFetcher
transport *httputil.StatsTransport // for HTTP statistics
pwd string
statCache UploadCache
haveCache HaveCache
fs http.FileSystem // virtual filesystem to read from; nil means OS filesystem.
}
// possible options when uploading a file
type fileOptions struct {
permanode bool // create a content-based permanode for each uploaded file
// tag is an optional tag or comma-delimited tags to apply to
// the above permanode.
tag string
// perform for the client the actions needing gpg signing when uploading a file.
vivify bool
exifTime bool // use the time in exif metadata as the modtime if possible.
}
func (o *fileOptions) tags() []string {
if o == nil || o.tag == "" {
return nil
}
return strings.Split(o.tag, ",")
}
func (o *fileOptions) wantFilePermanode() bool {
return o != nil && o.permanode
}
func (o *fileOptions) wantVivify() bool {
return o != nil && o.vivify
}
// sigTime optionally specifies the signature time.
// If zero, the current time is used.
func (up *Uploader) SignBlob(bb schema.Buildable, sigTime time.Time) (string, error) {
camliSigBlobref := up.Client.SignerPublicKeyBlobref()
if camliSigBlobref == nil {
// TODO: more helpful error message
return "", errors.New("No public key configured.")
}
b := bb.Builder().SetSigner(camliSigBlobref).Blob()
sr := &jsonsign.SignRequest{
UnsignedJSON: b.JSON(),
Fetcher: up.Client.GetBlobFetcher(),
EntityFetcher: up.entityFetcher,
SignatureTime: sigTime,
}
return sr.Sign()
}
func (up *Uploader) UploadAndSignBlob(b schema.AnyBlob) (*client.PutResult, error) {
signed, err := up.SignBlob(b.Blob(), time.Time{})
if err != nil {
return nil, err
}
return up.uploadString(signed)
}
func (up *Uploader) UploadBlob(b schema.AnyBlob) (*client.PutResult, error) {
// TODO(bradfitz): ask the blob for its own blobref, rather
// than changing the hash function with uploadString?
return up.uploadString(b.Blob().JSON())
}
func (up *Uploader) uploadString(s string) (*client.PutResult, error) {
return up.Upload(client.NewUploadHandleFromString(s))
}
func (up *Uploader) UploadNewPermanode() (*client.PutResult, error) {
unsigned := schema.NewUnsignedPermanode()
return up.UploadAndSignBlob(unsigned)
}
func (up *Uploader) UploadPlannedPermanode(key string, sigTime time.Time) (*client.PutResult, error) {
unsigned := schema.NewPlannedPermanode(key)
signed, err := up.SignBlob(unsigned, sigTime)
if err != nil {
return nil, err
}
return up.uploadString(signed)
}