Skip to content

Commit 91efbab

Browse files
committed
feat(providers): add Sourcehut provider support
1 parent 6bc7e6e commit 91efbab

File tree

6 files changed

+56
-7
lines changed

6 files changed

+56
-7
lines changed

config.schema.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@
4040
"enum": [
4141
"gitea",
4242
"github",
43-
"gitlab"
43+
"gitlab",
44+
"sourcehut"
4445
]
4546
},
4647
"repoUrl": {

constants/providers.go

+5-3
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,16 @@ import "pkg.icikowski.pl/sets"
44

55
// Providers' names
66
const (
7-
ProviderGitea string = "gitea"
8-
ProviderGitHub string = "github"
9-
ProviderGitLab string = "gitlab"
7+
ProviderGitea string = "gitea"
8+
ProviderGitHub string = "github"
9+
ProviderGitLab string = "gitlab"
10+
ProviderSourcehut string = "sourcehut"
1011
)
1112

1213
// AllProviders is a set of all providers' names
1314
var AllProviders *sets.Set[string] = sets.New(
1415
ProviderGitea,
1516
ProviderGitHub,
1617
ProviderGitLab,
18+
ProviderSourcehut,
1719
)

examples/vanitygen.json

+6
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@
2323
"repoUrl": "https://try.gitea.io/someuser/some-awesome-package",
2424
"branch": "staging",
2525
"website": "https://somesite.com/my-awesome-package"
26+
},
27+
{
28+
"name": "others",
29+
"provider": "sourcehut",
30+
"repoUrl": "https://git.sr.ht/~someuser/someotherpackage",
31+
"branch": "master"
2632
}
2733
]
2834
}

examples/vanitygen.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,7 @@ pkgs:
1717
repoUrl: "https://try.gitea.io/someuser/some-awesome-package"
1818
branch: staging
1919
website: "https://somesite.com/my-awesome-package"
20+
- name: others
21+
provider: sourcehut
22+
repoUrl: "https://git.sr.ht/~someuser/someotherpackage"
23+
branch: master

providers/all.go

+4-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@ import (
88
)
99

1010
var all map[string]providerGenerator = map[string]providerGenerator{
11-
constants.ProviderGitea: newGiteaProvider,
12-
constants.ProviderGitHub: newGithubProvider,
13-
constants.ProviderGitLab: newGitlabProvider,
11+
constants.ProviderGitea: newGiteaProvider,
12+
constants.ProviderGitHub: newGithubProvider,
13+
constants.ProviderGitLab: newGitlabProvider,
14+
constants.ProviderSourcehut: newSourcehutProvider,
1415
}
1516

1617
func New(domain string, pkg config.Package) (Provider, error) {

providers/sourcehut.go

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
package providers
2+
3+
import (
4+
"fmt"
5+
6+
"github.com/Icikowski/vanitygen/config"
7+
)
8+
9+
type sourcehutProvider struct {
10+
baseProvider
11+
}
12+
13+
// GetGoSourceTag implements Provider.
14+
func (p *sourcehutProvider) GetGoSourceTag() string {
15+
return fmt.Sprintf(
16+
"%s/%s %s %s/tree/%s/item{/dir} %s/tree/%s/item{/dir}/{file}#L{line}",
17+
p.domain, p.name,
18+
p.repo,
19+
p.repo, p.branch,
20+
p.repo, p.branch,
21+
)
22+
}
23+
24+
var _ Provider = &gitlabProvider{}
25+
26+
func newSourcehutProvider(domain string, pkg config.Package) Provider {
27+
return &sourcehutProvider{
28+
baseProvider: baseProvider{
29+
domain: domain,
30+
name: pkg.Name,
31+
repo: pkg.RepositoryURL,
32+
branch: pkg.Branch,
33+
},
34+
}
35+
}

0 commit comments

Comments
 (0)