mirror of
				https://gitea.com/Lydanne/buildx.git
				synced 2025-11-04 01:53:42 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			80 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			80 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package buildflags
 | 
						|
 | 
						|
import (
 | 
						|
	"encoding/csv"
 | 
						|
	"fmt"
 | 
						|
	"strconv"
 | 
						|
	"strings"
 | 
						|
 | 
						|
	"github.com/pkg/errors"
 | 
						|
)
 | 
						|
 | 
						|
func CanonicalizeAttest(attestType string, in string) string {
 | 
						|
	if in == "" {
 | 
						|
		return ""
 | 
						|
	}
 | 
						|
	if b, err := strconv.ParseBool(in); err == nil {
 | 
						|
		return fmt.Sprintf("type=%s,enabled=%t", attestType, b)
 | 
						|
	}
 | 
						|
	return fmt.Sprintf("type=%s,%s", attestType, in)
 | 
						|
}
 | 
						|
 | 
						|
func ParseAttests(in []string) (map[string]*string, error) {
 | 
						|
	out := map[string]*string{}
 | 
						|
	for _, in := range in {
 | 
						|
		in := in
 | 
						|
		attestType, enabled, err := parseAttest(in)
 | 
						|
		if err != nil {
 | 
						|
			return nil, err
 | 
						|
		}
 | 
						|
 | 
						|
		k := "attest:" + attestType
 | 
						|
		if _, ok := out[k]; ok {
 | 
						|
			return nil, errors.Errorf("duplicate attestation field %s", attestType)
 | 
						|
		}
 | 
						|
		if enabled {
 | 
						|
			out[k] = &in
 | 
						|
		} else {
 | 
						|
			out[k] = nil
 | 
						|
		}
 | 
						|
	}
 | 
						|
	return out, nil
 | 
						|
}
 | 
						|
 | 
						|
func parseAttest(in string) (string, bool, error) {
 | 
						|
	if in == "" {
 | 
						|
		return "", false, nil
 | 
						|
	}
 | 
						|
 | 
						|
	csvReader := csv.NewReader(strings.NewReader(in))
 | 
						|
	fields, err := csvReader.Read()
 | 
						|
	if err != nil {
 | 
						|
		return "", false, err
 | 
						|
	}
 | 
						|
 | 
						|
	attestType := ""
 | 
						|
	enabled := true
 | 
						|
	for _, field := range fields {
 | 
						|
		key, value, ok := strings.Cut(field, "=")
 | 
						|
		if !ok {
 | 
						|
			return "", false, errors.Errorf("invalid value %s", field)
 | 
						|
		}
 | 
						|
		key = strings.TrimSpace(strings.ToLower(key))
 | 
						|
 | 
						|
		switch key {
 | 
						|
		case "type":
 | 
						|
			attestType = value
 | 
						|
		case "enabled":
 | 
						|
			enabled, err = strconv.ParseBool(value)
 | 
						|
			if err != nil {
 | 
						|
				return "", false, err
 | 
						|
			}
 | 
						|
		}
 | 
						|
	}
 | 
						|
	if attestType == "" {
 | 
						|
		return "", false, errors.Errorf("attestation type not specified")
 | 
						|
	}
 | 
						|
 | 
						|
	return attestType, enabled, nil
 | 
						|
}
 |