@@ -4,13 +4,13 @@ import (
4
4
"errors"
5
5
"fmt"
6
6
"reflect"
7
+ "slices"
7
8
"strconv"
8
9
"strings"
9
10
"time"
10
11
11
12
"github.com/lxc/incus/shared/osarch"
12
13
incusArch "github.com/lxc/incus/shared/osarch"
13
- "github.com/lxc/incus/shared/util"
14
14
)
15
15
16
16
// ImageTarget represents the image target.
@@ -386,7 +386,7 @@ func (d *Definition) Validate() error {
386
386
"nixos-http" ,
387
387
}
388
388
389
- if ! util . ValueInSlice ( strings .TrimSpace (d .Source .Downloader ), validDownloaders ) {
389
+ if ! slices . Contains ( validDownloaders , strings .TrimSpace (d .Source .Downloader )) {
390
390
return fmt .Errorf ("source.downloader must be one of %v" , validDownloaders )
391
391
}
392
392
@@ -407,7 +407,7 @@ func (d *Definition) Validate() error {
407
407
"slackpkg" ,
408
408
}
409
409
410
- if ! util . ValueInSlice ( strings .TrimSpace (d .Packages .Manager ), validManagers ) {
410
+ if ! slices . Contains ( validManagers , strings .TrimSpace (d .Packages .Manager )) {
411
411
return fmt .Errorf ("packages.manager must be one of %v" , validManagers )
412
412
}
413
413
@@ -453,7 +453,7 @@ func (d *Definition) Validate() error {
453
453
}
454
454
455
455
for _ , file := range d .Files {
456
- if ! util . ValueInSlice ( strings .TrimSpace (file .Generator ), validGenerators ) {
456
+ if ! slices . Contains ( validGenerators , strings .TrimSpace (file .Generator )) {
457
457
return fmt .Errorf ("files.*.generator must be one of %v" , validGenerators )
458
458
}
459
459
}
@@ -474,7 +474,7 @@ func (d *Definition) Validate() error {
474
474
475
475
architectureMap := strings .TrimSpace (d .Mappings .ArchitectureMap )
476
476
if architectureMap != "" {
477
- if ! util . ValueInSlice ( architectureMap , validMappings ) {
477
+ if ! slices . Contains ( validMappings , architectureMap ) {
478
478
return fmt .Errorf ("mappings.architecture_map must be one of %v" , validMappings )
479
479
}
480
480
}
@@ -487,7 +487,7 @@ func (d *Definition) Validate() error {
487
487
}
488
488
489
489
for _ , action := range d .Actions {
490
- if ! util . ValueInSlice ( action .Trigger , validTriggers ) {
490
+ if ! slices . Contains ( validTriggers , action .Trigger ) {
491
491
return fmt .Errorf ("actions.*.trigger must be one of %v" , validTriggers )
492
492
}
493
493
}
@@ -498,7 +498,7 @@ func (d *Definition) Validate() error {
498
498
}
499
499
500
500
for _ , set := range d .Packages .Sets {
501
- if ! util . ValueInSlice ( set .Action , validPackageActions ) {
501
+ if ! slices . Contains ( validPackageActions , set .Action ) {
502
502
return fmt .Errorf ("packages.*.set.*.action must be one of %v" , validPackageActions )
503
503
}
504
504
}
@@ -643,15 +643,15 @@ func getFieldByTag(v reflect.Value, t reflect.Type, tag string) (reflect.Value,
643
643
644
644
// ApplyFilter returns true if the filter matches.
645
645
func ApplyFilter (filter Filter , release string , architecture string , variant string , targetType DefinitionFilterType , acceptedImageTargets ImageTarget ) bool {
646
- if len (filter .GetReleases ()) > 0 && ! util . ValueInSlice ( release , filter .GetReleases ()) {
646
+ if len (filter .GetReleases ()) > 0 && ! slices . Contains ( filter .GetReleases (), release ) {
647
647
return false
648
648
}
649
649
650
- if len (filter .GetArchitectures ()) > 0 && ! util . ValueInSlice ( architecture , filter .GetArchitectures ()) {
650
+ if len (filter .GetArchitectures ()) > 0 && ! slices . Contains ( filter .GetArchitectures (), architecture ) {
651
651
return false
652
652
}
653
653
654
- if len (filter .GetVariants ()) > 0 && ! util . ValueInSlice ( variant , filter .GetVariants ()) {
654
+ if len (filter .GetVariants ()) > 0 && ! slices . Contains ( filter .GetVariants (), variant ) {
655
655
return false
656
656
}
657
657
0 commit comments