package layer import ( "os" "strconv" "strings" "time" "github.com/nspcc-dev/neofs-api-go/pkg/object" "github.com/nspcc-dev/neofs-api-go/pkg/owner" ) type ( // ObjectInfo holds S3 object data. ObjectInfo struct { id *object.ID isDir bool Bucket string Name string Size int64 ContentType string Created time.Time HashSum string Owner *owner.ID Headers map[string]string } // ListObjectsInfo contains common fields of data for ListObjectsV1 and ListObjectsV2. ListObjectsInfo struct { Prefixes []string Objects []*ObjectInfo IsTruncated bool } // ListObjectsInfoV1 holds data which ListObjectsV1 returns. ListObjectsInfoV1 struct { ListObjectsInfo NextMarker string } // ListObjectsInfoV2 holds data which ListObjectsV2 returns. ListObjectsInfoV2 struct { ListObjectsInfo NextContinuationToken string } // ObjectVersionInfo stores info about objects versions. ObjectVersionInfo struct { Object *ObjectInfo IsLatest bool VersionID string } // DeletedObjectInfo stores info about deleted versions of objects. DeletedObjectInfo struct { Owner *owner.ID Key string VersionID string IsLatest bool LastModified string } // ListObjectVersionsInfo stores info and list of objects' versions. ListObjectVersionsInfo struct { CommonPrefixes []*string IsTruncated bool KeyMarker string NextKeyMarker string NextVersionIDMarker string Version []*ObjectVersionInfo DeleteMarker []*DeletedObjectInfo VersionIDMarker string } ) // PathSeparator is a path components separator string. const PathSeparator = string(os.PathSeparator) func userHeaders(attrs []*object.Attribute) map[string]string { result := make(map[string]string, len(attrs)) for _, attr := range attrs { result[attr.Key()] = attr.Value() } return result } func objectInfoFromMeta(bkt *BucketInfo, meta *object.Object, prefix, delimiter string) *ObjectInfo { var ( isDir bool size int64 mimeType string creation time.Time filename = filenameFromObject(meta) ) if !strings.HasPrefix(filename, prefix) { return nil } userHeaders := userHeaders(meta.Attributes()) delete(userHeaders, object.AttributeFileName) if contentType, ok := userHeaders[object.AttributeContentType]; ok { mimeType = contentType delete(userHeaders, object.AttributeContentType) } if val, ok := userHeaders[object.AttributeTimestamp]; !ok { // ignore empty value } else if dt, err := strconv.ParseInt(val, 10, 64); err == nil { creation = time.Unix(dt, 0) delete(userHeaders, object.AttributeTimestamp) } if len(delimiter) > 0 { tail := strings.TrimPrefix(filename, prefix) index := strings.Index(tail, delimiter) if index >= 0 { isDir = true mimeType = "" filename = prefix + tail[:index+1] userHeaders = nil } else { size = int64(meta.PayloadSize()) } } else { size = int64(meta.PayloadSize()) } return &ObjectInfo{ id: meta.ID(), isDir: isDir, Bucket: bkt.Name, Name: filename, Created: creation, ContentType: mimeType, Headers: userHeaders, Owner: meta.OwnerID(), Size: size, HashSum: meta.PayloadChecksum().String(), } } func objectVersionInfoFromMeta(bkt *BucketInfo, meta *object.Object, prefix, delimiter string) *ObjectVersionInfo { oi := objectInfoFromMeta(bkt, meta, prefix, delimiter) if oi == nil { return nil } return &ObjectVersionInfo{Object: oi, IsLatest: true, VersionID: unversionedObjectVersionID} } func filenameFromObject(o *object.Object) string { var name = o.ID().String() for _, attr := range o.Attributes() { if attr.Key() == object.AttributeFileName { return attr.Value() } } return name } // NameFromString splits name into base file name and directory path. func NameFromString(name string) (string, string) { ind := strings.LastIndex(name, PathSeparator) return name[ind+1:], name[:ind+1] } // ID returns object ID from ObjectInfo. func (o *ObjectInfo) ID() *object.ID { return o.id } // IsDir allows to check if object is a directory. func (o *ObjectInfo) IsDir() bool { return o.isDir }