blob: 71389522c945d9d441d18abee70ca0a13a52a970 (
plain) (
blame)
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
45
46
|
package config
import (
"errors"
"fmt"
)
const (
DefaultRefSpec = "+refs/heads/*:refs/remotes/%s/*"
)
var (
ErrRemoteConfigNotFound = errors.New("remote config not found")
ErrRemoteConfigEmptyURL = errors.New("remote config: empty URL")
ErrRemoteConfigEmptyName = errors.New("remote config: empty name")
)
type ConfigStorage interface {
Remote(name string) (*RemoteConfig, error)
Remotes() ([]*RemoteConfig, error)
SetRemote(*RemoteConfig) error
DeleteRemote(name string) error
}
type RemoteConfig struct {
Name string
URL string
Fetch []RefSpec
}
// Validate validate the fields and set the default values
func (c *RemoteConfig) Validate() error {
if c.Name == "" {
return ErrRemoteConfigEmptyName
}
if c.URL == "" {
return ErrRemoteConfigEmptyURL
}
if len(c.Fetch) == 0 {
c.Fetch = []RefSpec{RefSpec(fmt.Sprintf(DefaultRefSpec, c.Name))}
}
return nil
}
|