package source import ( "context" "git.unistack.org/unistack-org/pkgdash/internal/configcli" "git.unistack.org/unistack-org/pkgdash/internal/modules" "git.unistack.org/unistack-org/pkgdash/internal/source/gitea" "git.unistack.org/unistack-org/pkgdash/internal/source/github" "git.unistack.org/unistack-org/pkgdash/internal/source/gitlab" "git.unistack.org/unistack-org/pkgdash/internal/source/gogs" ) type SourceControl interface { Name() string RequestOpen(ctx context.Context, branch string, path string, mod modules.Update) error RequestClose(ctx context.Context, branch string, path string) error RequestUpdate(ctx context.Context, branch string, path string, mod modules.Update) error RequestList(ctx context.Context, branch string) (map[string]string, error) } func NewSourceControl(cfg configcli.Config) SourceControl { switch cfg.Source.TypeGit { case "github": return github.NewGithub(cfg) case "gitlab": return gitlab.NewGitlab(cfg) case "gitea": return gitea.NewGitea(cfg) case "gogs": return gogs.NewGogs(cfg) } return nil }