2020-03-19 03:48:19 +01:00
|
|
|
// Copyright Project Harbor Authors
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package project
|
|
|
|
|
|
|
|
// Option option for `Get` and `Exist` method of `Controller`
|
|
|
|
type Option func(*Options)
|
|
|
|
|
|
|
|
// Options options used by `Get` method of `Controller`
|
|
|
|
type Options struct {
|
2020-06-22 04:34:03 +02:00
|
|
|
CVEAllowlist bool // get project with cve allowlist
|
2020-03-19 03:48:19 +01:00
|
|
|
Metadata bool // get project with metadata
|
|
|
|
}
|
|
|
|
|
2020-06-22 04:34:03 +02:00
|
|
|
// CVEAllowlist set CVEAllowlist for the Options
|
|
|
|
func CVEAllowlist(allowlist bool) Option {
|
2020-03-19 03:48:19 +01:00
|
|
|
return func(opts *Options) {
|
2020-06-22 04:34:03 +02:00
|
|
|
opts.CVEAllowlist = allowlist
|
2020-03-19 03:48:19 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Metadata set Metadata for the Options
|
|
|
|
func Metadata(metadata bool) Option {
|
|
|
|
return func(opts *Options) {
|
|
|
|
opts.Metadata = metadata
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func newOptions(options ...Option) *Options {
|
|
|
|
opts := &Options{
|
|
|
|
Metadata: true, // default get project with metadata
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, f := range options {
|
|
|
|
f(opts)
|
|
|
|
}
|
|
|
|
|
|
|
|
return opts
|
|
|
|
}
|