about summary refs log tree commit diff stats
path: root/internal/config/repository.go
blob: 8c17a4fbbe40b726719f9559d4ba390fbdd01662 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package config

import (
	"fmt"
	"strings"
)

type RepoType int

const (
	GitHub = iota + 1
)

type Repository struct {
	Type     string `default:"github"`
	Owner    string
	Repo     string
	Revision string
}

func (f RepoType) String() string {
	switch f {
	case GitHub:
		return "github"
	default:
		return fmt.Sprintf("RepoType(%d)", f)
	}
}

func parseRepoType(name string) (RepoType, error) {
	switch strings.ToLower(name) {
	case "github":
		return GitHub, nil
	default:
		return Unknown, fmt.Errorf("unsupported repo type %s", name)
	}
}

func (f *RepoType) UnmarshalText(text []byte) error {
	var err error
	*f, err = parseRepoType(string(text))

	return err
}