mirror of
https://github.com/googleapis/genai-toolbox.git
synced 2026-02-17 18:41:28 -05:00
Migrate yaml library from [gopkg.in/yaml.v3](https://pkg.go.dev/gopkg.in/yaml.v3) to [goccy/go-yaml](https://github.com/goccy/go-yaml). We are trying to add validation feature to the unmarshaling of yaml. However, `yaml.v3` currently does not support that and the library had not been actively maintained for awhile. This migration will allow us to use validation processing such as [go-playground/validator](https://github.com/go-playground/validator) --------- Co-authored-by: Kurtis Van Gent <31518063+kurtisvg@users.noreply.github.com>
45 lines
1.2 KiB
Go
45 lines
1.2 KiB
Go
// Copyright 2024 Google LLC
|
|
//
|
|
// 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 sources
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
)
|
|
|
|
// Dialect represents the dialect type of a database.
|
|
type Dialect string
|
|
|
|
func (i *Dialect) String() string {
|
|
if string(*i) != "" {
|
|
return strings.ToLower(string(*i))
|
|
}
|
|
return "googlesql"
|
|
}
|
|
|
|
func (i *Dialect) UnmarshalYAML(unmarshal func(interface{}) error) error {
|
|
var dialect string
|
|
if err := unmarshal(&dialect); err != nil {
|
|
return err
|
|
}
|
|
switch strings.ToLower(dialect) {
|
|
case "googlesql", "postgresql":
|
|
*i = Dialect(strings.ToLower(dialect))
|
|
return nil
|
|
default:
|
|
return fmt.Errorf(`dialect invalid: must be one of "googlesql", or "postgresql"`)
|
|
}
|
|
}
|