Compare commits
2 Commits
14c175d7af
...
088fdf16d9
Author | SHA1 | Date |
---|---|---|
Derrick Hammer | 088fdf16d9 | |
Derrick Hammer | f7f014e711 |
|
@ -0,0 +1,5 @@
|
|||
FROM alpine
|
||||
ADD aptly-publisher /bin/
|
||||
RUN chmod +x /bin/aptly-publisher
|
||||
RUN apk -Uuv add ca-certificates libc6-compat
|
||||
ENTRYPOINT /bin/aptly-publisher
|
Binary file not shown.
|
@ -0,0 +1,7 @@
|
|||
module aptly-publisher
|
||||
|
||||
go 1.18
|
||||
|
||||
require github.com/go-resty/resty/v2 v2.7.0
|
||||
|
||||
require golang.org/x/net v0.0.0-20211029224645-99673261e6eb // indirect
|
|
@ -0,0 +1,69 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/go-resty/resty/v2"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"strings"
|
||||
)
|
||||
|
||||
const APT_SERVICE_API = "https://apt.lumeweb.com"
|
||||
|
||||
func main() {
|
||||
err := run()
|
||||
|
||||
if err != nil {
|
||||
fmt.Printf("%s", err)
|
||||
}
|
||||
}
|
||||
|
||||
func run() error {
|
||||
client := resty.New()
|
||||
files, _ := filepath.Glob("*.deb")
|
||||
pkg := files[0]
|
||||
pkg_name := strings.TrimSuffix(pkg, filepath.Ext(pkg))
|
||||
pkg_parts := strings.Split(pkg_name, "_")
|
||||
pkg_parts = pkg_parts[:len(pkg_parts)-1]
|
||||
pkg_name = strings.Join(pkg_parts, "-")
|
||||
|
||||
repo := os.Getenv("PLUGIN_REPO")
|
||||
gpg_pass := os.Getenv("PLUGIN_GPG_PASSWORD")
|
||||
distro := os.Getenv("PLUGIN_DISTRO")
|
||||
folder := os.Getenv("PLUGIN_FOLDER")
|
||||
|
||||
client.SetBasicAuth(os.Getenv("PLUGIN_APT_USERNAME"), os.Getenv("PLUGIN_APT_PASSWORD")).SetBaseURL(APT_SERVICE_API)
|
||||
|
||||
resp, err := client.R().
|
||||
SetFile("file", pkg).
|
||||
Post("/api/files/" + pkg_name)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
resp, err = client.R().
|
||||
Post("/api/repos/" + repo + "/file/" + pkg_name)
|
||||
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
resp, err = client.R().
|
||||
SetBody(map[string]interface{}{
|
||||
"Architectures": []string{"amd64"},
|
||||
"Passphrase": gpg_pass,
|
||||
"SourceKind": "local",
|
||||
"Signing": map[string]interface{}{
|
||||
"Batch": true,
|
||||
"Passphrase": gpg_pass,
|
||||
},
|
||||
}).
|
||||
Put(fmt.Sprintf("/api/publish/s3:%s:%s/%s", repo, folder, distro))
|
||||
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
_ = resp
|
||||
|
||||
return nil
|
||||
}
|
Loading…
Reference in New Issue