2021-04-18 15:41:13 -04:00
// Copyright (c) 2015-2021 MinIO, Inc.
//
// This file is part of MinIO Object Storage stack
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
2019-07-19 16:20:33 -04:00
package lifecycle
import (
2020-02-06 02:50:10 -05:00
"bytes"
2019-07-19 16:20:33 -04:00
"encoding/xml"
)
2020-02-25 10:52:28 -05:00
// Status represents lifecycle configuration status
type Status string
// Supported status types
const (
Enabled Status = "Enabled"
Disabled Status = "Disabled"
)
2019-07-19 16:20:33 -04:00
// Rule - a rule for lifecycle configuration.
type Rule struct {
XMLName xml . Name ` xml:"Rule" `
ID string ` xml:"ID,omitempty" `
2020-02-25 10:52:28 -05:00
Status Status ` xml:"Status" `
2020-02-06 02:50:10 -05:00
Filter Filter ` xml:"Filter,omitempty" `
2021-02-04 14:26:02 -05:00
Prefix Prefix ` xml:"Prefix,omitempty" `
2019-07-19 16:20:33 -04:00
Expiration Expiration ` xml:"Expiration,omitempty" `
Transition Transition ` xml:"Transition,omitempty" `
// FIXME: add a type to catch unsupported AbortIncompleteMultipartUpload AbortIncompleteMultipartUpload `xml:"AbortIncompleteMultipartUpload,omitempty"`
NoncurrentVersionExpiration NoncurrentVersionExpiration ` xml:"NoncurrentVersionExpiration,omitempty" `
NoncurrentVersionTransition NoncurrentVersionTransition ` xml:"NoncurrentVersionTransition,omitempty" `
}
var (
2020-08-24 16:56:50 -04:00
errInvalidRuleID = Errorf ( "ID length is limited to 255 characters" )
errEmptyRuleStatus = Errorf ( "Status should not be empty" )
errInvalidRuleStatus = Errorf ( "Status must be set to either Enabled or Disabled" )
2019-07-19 16:20:33 -04:00
)
2020-02-06 02:50:10 -05:00
// validateID - checks if ID is valid or not.
2019-07-19 16:20:33 -04:00
func ( r Rule ) validateID ( ) error {
2022-09-22 13:51:54 -04:00
if len ( r . ID ) > 255 {
2019-07-19 16:20:33 -04:00
return errInvalidRuleID
}
return nil
}
2020-02-06 02:50:10 -05:00
// validateStatus - checks if status is valid or not.
2019-07-19 16:20:33 -04:00
func ( r Rule ) validateStatus ( ) error {
// Status can't be empty
if len ( r . Status ) == 0 {
return errEmptyRuleStatus
}
// Status must be one of Enabled or Disabled
2020-02-25 10:52:28 -05:00
if r . Status != Enabled && r . Status != Disabled {
2019-07-19 16:20:33 -04:00
return errInvalidRuleStatus
}
return nil
}
2021-02-04 14:26:02 -05:00
func ( r Rule ) validateExpiration ( ) error {
2020-08-24 16:56:50 -04:00
return r . Expiration . Validate ( )
2019-07-19 16:20:33 -04:00
}
2021-02-04 14:26:02 -05:00
func ( r Rule ) validateNoncurrentExpiration ( ) error {
return r . NoncurrentVersionExpiration . Validate ( )
}
func ( r Rule ) validatePrefixAndFilter ( ) error {
if ! r . Prefix . set && r . Filter . IsEmpty ( ) || r . Prefix . set && ! r . Filter . IsEmpty ( ) {
return errXMLNotWellFormed
}
if ! r . Prefix . set {
return r . Filter . Validate ( )
}
return nil
2020-02-06 02:50:10 -05:00
}
2020-11-12 15:12:09 -05:00
func ( r Rule ) validateTransition ( ) error {
return r . Transition . Validate ( )
}
2021-02-04 14:26:02 -05:00
func ( r Rule ) validateNoncurrentTransition ( ) error {
return r . NoncurrentVersionTransition . Validate ( )
}
// GetPrefix - a rule can either have prefix under <rule></rule>, <filter></filter>
// or under <filter><and></and></filter>. This method returns the prefix from the
// location where it is available.
func ( r Rule ) GetPrefix ( ) string {
if p := r . Prefix . String ( ) ; p != "" {
return p
2020-02-06 02:50:10 -05:00
}
2021-02-04 14:26:02 -05:00
if p := r . Filter . Prefix . String ( ) ; p != "" {
return p
}
if p := r . Filter . And . Prefix . String ( ) ; p != "" {
return p
2020-02-06 02:50:10 -05:00
}
return ""
}
// Tags - a rule can either have tag under <filter></filter> or under
// <filter><and></and></filter>. This method returns all the tags from the
// rule in the format tag1=value1&tag2=value2
func ( r Rule ) Tags ( ) string {
if ! r . Filter . Tag . IsEmpty ( ) {
return r . Filter . Tag . String ( )
}
if len ( r . Filter . And . Tags ) != 0 {
var buf bytes . Buffer
for _ , t := range r . Filter . And . Tags {
if buf . Len ( ) > 0 {
buf . WriteString ( "&" )
}
buf . WriteString ( t . String ( ) )
}
return buf . String ( )
}
return ""
}
2019-07-19 16:20:33 -04:00
// Validate - validates the rule element
func ( r Rule ) Validate ( ) error {
if err := r . validateID ( ) ; err != nil {
return err
}
if err := r . validateStatus ( ) ; err != nil {
return err
}
2021-02-04 14:26:02 -05:00
if err := r . validateExpiration ( ) ; err != nil {
return err
}
if err := r . validateNoncurrentExpiration ( ) ; err != nil {
2019-07-19 16:20:33 -04:00
return err
}
2021-02-04 14:26:02 -05:00
if err := r . validatePrefixAndFilter ( ) ; err != nil {
2020-02-06 02:50:10 -05:00
return err
}
2020-11-12 15:12:09 -05:00
if err := r . validateTransition ( ) ; err != nil {
return err
}
2021-02-04 14:26:02 -05:00
if err := r . validateNoncurrentTransition ( ) ; err != nil {
return err
}
if ! r . Expiration . set && ! r . Transition . set && ! r . NoncurrentVersionExpiration . set && ! r . NoncurrentVersionTransition . set {
return errXMLNotWellFormed
}
2019-07-19 16:20:33 -04:00
return nil
}