mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 01:12:56 +03:00
bb63d7e60e
Co-authored-by: Rishichandra Wawhal <rishichandra.wawhal@gmail.com> Co-authored-by: Rikin Kachhia <54616969+rikinsk@users.noreply.github.com> Co-authored-by: Aravind <aravindkp@outlook.in> Co-authored-by: Anon Ray <ecthiender@users.noreply.github.com> Co-authored-by: Shahidh K Muhammed <muhammedshahid.k@gmail.com>
124 lines
2.7 KiB
Go
124 lines
2.7 KiB
Go
package source
|
|
|
|
import (
|
|
"fmt"
|
|
"io/ioutil"
|
|
"path/filepath"
|
|
"regexp"
|
|
"strconv"
|
|
|
|
yaml "github.com/ghodss/yaml"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
var (
|
|
ErrParse = fmt.Errorf("no match")
|
|
)
|
|
|
|
var (
|
|
DefaultParse = Parse
|
|
DefaultParsev2 = Parsev2
|
|
DefaultRegex = Regex
|
|
)
|
|
|
|
// Parser to parse source files
|
|
type Parser func(raw string) (*Migration, error)
|
|
|
|
// Regex matches the following pattern:
|
|
// 123_name.up.ext
|
|
// 123_name.down.ext
|
|
var Regex = regexp.MustCompile(`^([0-9]+)_(.*)\.(` + string(Down) + `|` + string(Up) + `)\.(.*)$`)
|
|
var Regexv2 = regexp.MustCompile(`^([0-9]+)_(.*)\.(` + string(Down) + `|` + string(Up) + `)\.(sql)$`)
|
|
|
|
// Parse returns Migration for matching Regex pattern.
|
|
func Parse(raw string) (*Migration, error) {
|
|
var direction Direction
|
|
m := Regex.FindStringSubmatch(raw)
|
|
if len(m) == 5 {
|
|
versionUint64, err := strconv.ParseUint(m[1], 10, 64)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// Have different direction type for yaml and sql
|
|
if m[4] == "yaml" {
|
|
if m[3] == "up" {
|
|
direction = MetaUp
|
|
} else if m[3] == "down" {
|
|
direction = MetaDown
|
|
} else {
|
|
return nil, errors.New("Invalid Direction type")
|
|
}
|
|
} else if m[4] == "sql" {
|
|
if m[3] == "up" {
|
|
direction = Up
|
|
} else if m[3] == "down" {
|
|
direction = Down
|
|
} else {
|
|
return nil, errors.New("Invalid Direction type")
|
|
}
|
|
}
|
|
|
|
return &Migration{
|
|
Version: versionUint64,
|
|
Identifier: m[2],
|
|
Direction: direction,
|
|
}, nil
|
|
}
|
|
return nil, ErrParse
|
|
}
|
|
|
|
// Parsev2 returns Migration for matching Regex (only sql) pattern.
|
|
func Parsev2(raw string) (*Migration, error) {
|
|
var direction Direction
|
|
m := Regexv2.FindStringSubmatch(raw)
|
|
if len(m) == 5 {
|
|
versionUint64, err := strconv.ParseUint(m[1], 10, 64)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// Have different direction type for sql
|
|
if m[4] == "sql" {
|
|
if m[3] == "up" {
|
|
direction = Up
|
|
} else if m[3] == "down" {
|
|
direction = Down
|
|
} else {
|
|
return nil, errors.New("Invalid Direction type")
|
|
}
|
|
}
|
|
|
|
return &Migration{
|
|
Version: versionUint64,
|
|
Identifier: m[2],
|
|
Direction: direction,
|
|
}, nil
|
|
}
|
|
return nil, ErrParse
|
|
}
|
|
|
|
// Validate file to check for empty sql or yaml content.
|
|
func IsEmptyFile(m *Migration, directory string) (bool, error) {
|
|
data, err := ioutil.ReadFile(filepath.Join(directory, m.Raw))
|
|
if err != nil {
|
|
return false, errors.Wrapf(err, "cannot read file %s", m.Raw)
|
|
}
|
|
switch direction := m.Direction; direction {
|
|
case MetaUp, MetaDown:
|
|
var t []interface{}
|
|
err = yaml.Unmarshal(data, &t)
|
|
if err != nil {
|
|
return false, errors.Wrapf(err, "invalid yaml file: %s", m.Raw)
|
|
}
|
|
if len(t) == 0 {
|
|
return false, nil
|
|
}
|
|
case Up, Down:
|
|
if string(data[:]) == "" {
|
|
return false, nil
|
|
}
|
|
}
|
|
return true, nil
|
|
}
|