50 lines
959 B
Go
50 lines
959 B
Go
// Copyright 2016 Tim Shannon. All rights reserved.
|
|
// Use of this source code is governed by the MIT license
|
|
// that can be found in the LICENSE file.
|
|
|
|
package datastore
|
|
|
|
import (
|
|
"encoding/json"
|
|
"time"
|
|
|
|
"github.com/boltdb/bolt"
|
|
)
|
|
|
|
type release struct {
|
|
When time.Time `json:"when"`
|
|
Version string `json:"version"`
|
|
FileKey TimeKey `json:"file"`
|
|
}
|
|
|
|
const (
|
|
bucketReleases = "releases"
|
|
bucketFiles = "files"
|
|
)
|
|
|
|
// AddRelease adds a new Release
|
|
func (ds *Store) AddRelease(version string, fileData []byte) error {
|
|
key := NewTimeKey()
|
|
fileKey := NewTimeKey()
|
|
|
|
r := &release{
|
|
When: key.Time(),
|
|
Version: version,
|
|
FileKey: fileKey,
|
|
}
|
|
|
|
dsValue, err := json.Marshal(r)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return ds.bolt.Update(func(tx *bolt.Tx) error {
|
|
err = tx.Bucket([]byte(bucketReleases)).Put(key.Bytes(), dsValue)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return tx.Bucket([]byte(bucketFiles)).Put(fileKey.Bytes(), fileData)
|
|
})
|
|
}
|