about summary refs log tree commit diff stats
path: root/internal/importer/source-type.go
blob: 5d84547709dd3a8a390e053cdeb962aadc297303 (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 importer

import (
	"fmt"

	"github.com/stoewer/go-strcase"
)

type Type int

const (
	Unknown = iota
	Channel
	ChannelNixpkgs
)

func (f Type) String() string {
	switch f {
	case Channel:
		return "channel"
	case ChannelNixpkgs:
		return "channel-nixpkgs"
	}

	return fmt.Sprintf("Fetcher(%d)", f)
}

func parseType(name string) (Type, error) {
	switch strcase.KebabCase(name) {
	case "channel":
		return Channel, nil
	case "channel-nixpkgs":
		return ChannelNixpkgs, nil
	default:
		return Unknown, fmt.Errorf("unsupported fetcher %s", name)
	}
}

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

	return err
}