f11bf46a11
* add bucketstore, add init uplink bucket * update uplink to use bucket rpc * fix tests * wrap metainfo client errors * add allowedBucket struct, fix tests * update comment * add paging * updates per CR * add test for pagination * fix lint * fix uplink test so its easier tyo understand * fix gateway pagination bug * changes per cr * fix bug w/allowedBuckets, add test to catch
32 lines
924 B
Go
32 lines
924 B
Go
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package kvmetainfo
|
|
|
|
import (
|
|
"storj.io/storj/pkg/eestream"
|
|
"storj.io/storj/pkg/storage/buckets"
|
|
"storj.io/storj/pkg/storage/streams"
|
|
"storj.io/storj/uplink/metainfo"
|
|
)
|
|
|
|
// Project implements project management operations
|
|
type Project struct {
|
|
buckets buckets.Store
|
|
streams streams.Store
|
|
encryptedBlockSize int32
|
|
redundancy eestream.RedundancyStrategy
|
|
segmentsSize int64
|
|
}
|
|
|
|
// NewProject constructs a *Project
|
|
func NewProject(streams streams.Store, encryptedBlockSize int32, redundancy eestream.RedundancyStrategy, segmentsSize int64, metainfoClient metainfo.Client) *Project {
|
|
return &Project{
|
|
buckets: buckets.NewStore(metainfoClient),
|
|
streams: streams,
|
|
encryptedBlockSize: encryptedBlockSize,
|
|
redundancy: redundancy,
|
|
segmentsSize: segmentsSize,
|
|
}
|
|
}
|