graphql-engine/cli/internal/metadataobject/querycollections/query_collections.go
Aravind K P 3136ffad1b cli: update go.mod
>

### Description
Update `go.mod` to allow other packages to import [v2.0.0 versions](https://blog.golang.org/v2-go-modules).

### Changelog

- [x] `CHANGELOG.md` is updated with user-facing content relevant to this PR. If no changelog is required, then add the `no-changelog-required` label.

### Affected components

- [x] CLI

https://github.com/hasura/graphql-engine-mono/pull/1584

GitOrigin-RevId: a5d17ad20289d1cd7217763f56ef3ba6552d69c4
2021-06-16 11:45:07 +00:00

91 lines
1.8 KiB
Go

package querycollections
import (
"io/ioutil"
"path/filepath"
"github.com/sirupsen/logrus"
"github.com/hasura/graphql-engine/cli/v2"
"gopkg.in/yaml.v2"
)
const (
fileName string = "query_collections.yaml"
)
type QueryCollectionConfig struct {
MetadataDir string
logger *logrus.Logger
}
func New(ec *cli.ExecutionContext, baseDir string) *QueryCollectionConfig {
return &QueryCollectionConfig{
MetadataDir: baseDir,
logger: ec.Logger,
}
}
func (q *QueryCollectionConfig) Validate() error {
return nil
}
func (q *QueryCollectionConfig) CreateFiles() error {
v := make([]interface{}, 0)
data, err := yaml.Marshal(v)
if err != nil {
return err
}
err = ioutil.WriteFile(filepath.Join(q.MetadataDir, fileName), data, 0644)
if err != nil {
return err
}
return nil
}
func (q *QueryCollectionConfig) Build(metadata *yaml.MapSlice) error {
data, err := ioutil.ReadFile(filepath.Join(q.MetadataDir, fileName))
if err != nil {
return err
}
item := yaml.MapItem{
Key: "query_collections",
}
var obj []yaml.MapSlice
err = yaml.Unmarshal(data, &obj)
if err != nil {
return err
}
if len(obj) != 0 {
item.Value = obj
*metadata = append(*metadata, item)
}
return nil
}
func (q *QueryCollectionConfig) Export(metadata yaml.MapSlice) (map[string][]byte, error) {
var queryCollections interface{}
for _, item := range metadata {
k, ok := item.Key.(string)
if !ok || k != "query_collections" {
continue
}
queryCollections = item.Value
}
if queryCollections == nil {
queryCollections = make([]interface{}, 0)
}
data, err := yaml.Marshal(queryCollections)
if err != nil {
return nil, err
}
return map[string][]byte{
filepath.ToSlash(filepath.Join(q.MetadataDir, fileName)): data,
}, nil
}
func (q *QueryCollectionConfig) Name() string {
return "query_collections"
}