2023-05-15 07:29:40 +00:00
|
|
|
package metasnap
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"net/http"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/rs/zerolog/log"
|
|
|
|
"golang.org/x/time/rate"
|
|
|
|
)
|
|
|
|
|
2023-05-15 07:41:44 +00:00
|
|
|
// Note: Metasnap does not have all the packages, and its API is
|
|
|
|
// rather buggy.
|
2023-05-15 07:29:40 +00:00
|
|
|
|
2023-05-15 07:41:44 +00:00
|
|
|
const apiURL = "http://metasnap.debian.net/cgi-bin/api?"
|
2023-05-15 07:29:40 +00:00
|
|
|
|
|
|
|
var (
|
2023-05-28 09:38:09 +00:00
|
|
|
limiterTimeout time.Duration = time.Second / 20
|
2023-05-28 20:36:20 +00:00
|
|
|
limiterMaxTimeout time.Duration = time.Second * 2
|
2023-05-28 12:31:52 +00:00
|
|
|
limiterBurst int = 1
|
2023-05-28 17:22:16 +00:00
|
|
|
limiterUpdateDelay time.Duration = time.Second
|
2023-05-15 07:29:40 +00:00
|
|
|
|
|
|
|
Limiter = rate.NewLimiter(rate.Every(limiterTimeout), limiterBurst)
|
|
|
|
)
|
|
|
|
|
|
|
|
func lowerLimit() {
|
|
|
|
limiterTimeout = limiterTimeout * 2
|
2023-05-28 12:16:05 +00:00
|
|
|
if limiterTimeout > limiterMaxTimeout {
|
|
|
|
limiterTimeout = limiterMaxTimeout
|
|
|
|
}
|
2023-05-15 07:29:40 +00:00
|
|
|
log.Info().Msgf("limiter timeout set to %v", limiterTimeout)
|
2023-05-28 09:38:09 +00:00
|
|
|
Limiter.SetLimitAt(
|
|
|
|
time.Now().Add(limiterUpdateDelay),
|
|
|
|
rate.Every(limiterTimeout),
|
|
|
|
)
|
2023-05-28 12:42:01 +00:00
|
|
|
log.Info().Msgf("wait %v", limiterUpdateDelay)
|
2023-05-28 09:38:09 +00:00
|
|
|
time.Sleep(limiterUpdateDelay)
|
2023-05-15 07:29:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Retries in case of 5xx errors
|
|
|
|
var Retries = 10
|
|
|
|
|
|
|
|
var ErrNotFound = errors.New("404 not found")
|
|
|
|
|
|
|
|
func query(q string) (result string, err error) {
|
|
|
|
flog := log.With().Str("url", q).Logger()
|
|
|
|
|
|
|
|
var resp *http.Response
|
|
|
|
for i := Retries; i > 0; i-- {
|
|
|
|
flog.Trace().Msg("wait")
|
|
|
|
Limiter.Wait(context.Background())
|
|
|
|
|
|
|
|
flog.Trace().Msg("start")
|
|
|
|
resp, err = http.Get(q)
|
|
|
|
if err != nil {
|
|
|
|
if strings.Contains(err.Error(), "reset by peer") {
|
|
|
|
flog.Debug().Err(err).Msg("")
|
|
|
|
lowerLimit()
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
flog.Error().Err(err).Msg("")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
defer resp.Body.Close()
|
|
|
|
|
|
|
|
flog.Debug().Msgf("%s", resp.Status)
|
|
|
|
|
|
|
|
if resp.StatusCode == 404 {
|
|
|
|
err = ErrNotFound
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if resp.StatusCode < 500 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
flog.Debug().Msgf("retry (%d left)", i)
|
|
|
|
}
|
|
|
|
|
|
|
|
if resp.StatusCode >= 400 {
|
|
|
|
err = fmt.Errorf("%d (%s)", resp.StatusCode, q)
|
|
|
|
}
|
|
|
|
|
|
|
|
buf, err := io.ReadAll(resp.Body)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
result = string(buf)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func queryAPIf(f string, s ...interface{}) (result string, err error) {
|
|
|
|
return query(apiURL + fmt.Sprintf(f, s...))
|
|
|
|
}
|
|
|
|
|
|
|
|
type Snapshot struct {
|
|
|
|
First string
|
|
|
|
Last string
|
|
|
|
}
|
|
|
|
|
2023-05-15 07:41:44 +00:00
|
|
|
type Repo struct {
|
|
|
|
Archive string
|
2023-05-15 07:29:40 +00:00
|
|
|
Suite string
|
|
|
|
Component string
|
|
|
|
Snapshot Snapshot
|
|
|
|
}
|
|
|
|
|
2023-05-28 09:38:09 +00:00
|
|
|
func GetRepos(archive, pkg, arch, ver string) (repos []Repo, err error) {
|
|
|
|
result, err := queryAPIf("archive=%s&pkg=%s&arch=%s",
|
|
|
|
archive, pkg, arch)
|
2023-05-15 07:29:40 +00:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if result == "" {
|
|
|
|
err = ErrNotFound
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, line := range strings.Split(result, "\n") {
|
|
|
|
if line == "" {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
fields := strings.Split(line, " ")
|
2023-05-28 09:38:09 +00:00
|
|
|
if len(fields) != 5 {
|
2023-05-15 07:29:40 +00:00
|
|
|
err = fmt.Errorf("metasnap api returned %s", result)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-05-15 07:41:44 +00:00
|
|
|
repo := Repo{
|
|
|
|
Archive: archive,
|
2023-05-28 09:38:09 +00:00
|
|
|
Suite: fields[1],
|
|
|
|
Component: fields[2],
|
2023-05-15 07:29:40 +00:00
|
|
|
Snapshot: Snapshot{
|
2023-05-28 09:38:09 +00:00
|
|
|
First: fields[3],
|
|
|
|
Last: fields[4],
|
2023-05-15 07:29:40 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2023-05-28 09:38:09 +00:00
|
|
|
if fields[0] == ver {
|
|
|
|
repos = append(repos, repo)
|
|
|
|
}
|
2023-05-15 07:29:40 +00:00
|
|
|
}
|
|
|
|
|
2023-05-15 07:41:44 +00:00
|
|
|
if len(repos) == 0 {
|
2023-05-15 07:29:40 +00:00
|
|
|
err = ErrNotFound
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|