generated from adrienaury/go-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
72172c8
commit 233797f
Showing
6 changed files
with
188 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
// Copyright (C) 2024 CGI France | ||
// | ||
// This file is part of SILO. | ||
// | ||
// SILO is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
// | ||
// SILO 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 General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU General Public License | ||
// along with SILO. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
package silo | ||
|
||
import "errors" | ||
|
||
type Config struct { | ||
Include map[string]bool | ||
Aliases map[string]string | ||
} | ||
|
||
func DefaultConfig() *Config { | ||
config := Config{ | ||
Include: map[string]bool{}, | ||
Aliases: map[string]string{}, | ||
} | ||
|
||
return &config | ||
} | ||
|
||
func (cfg *Config) validate() error { | ||
var errs []error | ||
|
||
for key := range cfg.Aliases { | ||
if _, ok := cfg.Include[key]; !ok && len(cfg.Include) > 0 { | ||
errs = append(errs, &ConfigScanAliasIsNotIncludedError{alias: key}) | ||
} | ||
} | ||
|
||
if len(errs) != 0 { | ||
return errors.Join(errs...) | ||
} | ||
|
||
return nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
// Copyright (C) 2024 CGI France | ||
// | ||
// This file is part of SILO. | ||
// | ||
// SILO is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
// | ||
// SILO 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 General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU General Public License | ||
// along with SILO. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
package silo | ||
|
||
type Option interface { | ||
applier | ||
} | ||
|
||
type option func(*Config) error | ||
|
||
func (f option) apply(cfg *Config) error { | ||
return f(cfg) | ||
} | ||
|
||
type applier interface { | ||
apply(cfg *Config) error | ||
} | ||
|
||
func Alias(key, alias string) Option { //nolint:ireturn | ||
applier := func(cfg *Config) error { | ||
cfg.Aliases[key] = alias | ||
|
||
return nil | ||
} | ||
|
||
return option(applier) | ||
} | ||
|
||
func Include(key string) Option { //nolint:ireturn | ||
applier := func(cfg *Config) error { | ||
cfg.Include[key] = true | ||
|
||
return nil | ||
} | ||
|
||
return option(applier) | ||
} | ||
|
||
func WithAliases(aliases map[string]string) Option { //nolint:ireturn | ||
applier := func(cfg *Config) error { | ||
for key, alias := range aliases { | ||
cfg.Aliases[key] = alias | ||
} | ||
|
||
return nil | ||
} | ||
|
||
return option(applier) | ||
} | ||
|
||
func WithKeys(keys []string) Option { //nolint:ireturn | ||
applier := func(cfg *Config) error { | ||
for _, key := range keys { | ||
cfg.Include[key] = true | ||
} | ||
|
||
return nil | ||
} | ||
|
||
return option(applier) | ||
} |