internal/fetcher/fetcher.go (view raw)
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 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 | package fetcher import ( "context" "io" "io/fs" "math" "net/http" "os" "path/filepath" "regexp" "strconv" "strings" "time" "github.com/google/renameio/v2" "gitlab.com/tozd/go/errors" "go.alanpearce.eu/homestead/internal/config" "go.alanpearce.eu/homestead/internal/events" "go.alanpearce.eu/x/log" ) var files = []string{"config.toml", "site.db"} var numericFilename = regexp.MustCompile("[0-9]{3,}") var timeout = 10 * time.Second type Fetcher struct { options *Options log *log.Logger updater events.Listener current uint64 } type Options struct { Root string RedisEnabled bool FetchURL config.URL Listener events.Listener } func New(log *log.Logger, options *Options) Fetcher { return Fetcher{ log: log, options: options, updater: options.Listener, } } func (f *Fetcher) getArtefacts(run uint64) errors.E { runID := strconv.FormatUint(run, 10) f.log.Debug("getting artefacts", "run_id", runID) err := os.MkdirAll(filepath.Join(f.options.Root, runID), 0o750) if err != nil { return errors.WithMessage(err, "could not create directory") } for _, file := range files { err := f.getFile(runID, file) if err != nil { return errors.WithMessage(err, "could not fetch file") } } f.current = run err = renameio.Symlink(runID, filepath.Join(f.options.Root, "current")) if err != nil { return errors.WithMessage(err, "could not create/update symlink") } return nil } func (f *Fetcher) checkFolder() errors.E { contents, err := os.ReadDir(f.options.Root) if err != nil { return errors.WithMessage(err, "could not read root directory") } var badFiles []string for _, f := range contents { name := f.Name() if name != "current" && !numericFilename.MatchString(name) { badFiles = append(badFiles, name) } } if len(badFiles) > 0 { return errors.WithStack( errors.Basef("unexpected files in root directory: %s", strings.Join(badFiles, ", ")), ) } return nil } func (f *Fetcher) CleanOldRevisions() errors.E { contents, err := os.ReadDir(f.options.Root) if err != nil { return errors.WithMessage(err, "could not read root directory") } for _, file := range contents { name := file.Name() if name == "current" { continue } if numericFilename.MatchString(name) { v, err := strconv.ParseUint(name, 10, 64) if err != nil { return errors.WithMessagef(err, "could not parse numeric filename %s", name) } if v < f.current-1 { err := os.RemoveAll(filepath.Join(f.options.Root, name)) if err != nil { return errors.WithMessage(err, "could not remove folder") } } } } return nil } func (f *Fetcher) cleanOldRevisionsAsync() { go func() { if err := f.CleanOldRevisions(); err != nil { f.log.Warn("error cleaning up old revisions", "error", err) } }() } func (f *Fetcher) getFile(runID, basename string) errors.E { filename := filepath.Join(f.options.Root, runID, basename) url := f.options.FetchURL.JoinPath(runID, basename).String() f.log.Debug("getting file", "filename", filename, "url", url) file, err := os.OpenFile(filename, os.O_CREATE|os.O_WRONLY, 0o600) if err != nil { return errors.WithMessage(err, "could not open file") } defer file.Close() ctx, cancel := context.WithTimeout(context.Background(), timeout) defer cancel() req, err := http.NewRequestWithContext(ctx, "GET", url, nil) if err != nil { return errors.WithMessage(err, "could not create request") } res, err := http.DefaultClient.Do(req) if err != nil { return errors.WithMessage(err, "could not issue request") } _, err = io.Copy(file, res.Body) if err != nil { return errors.WithMessage(err, "could not write file") } err = file.Sync() if err != nil { return errors.WithMessage(err, "could not sync file") } return nil } func (f *Fetcher) getCurrentVersion() (uint64, errors.E) { target, err := os.Readlink(filepath.Join(f.options.Root, "current")) if err != nil && errors.Is(err, fs.ErrNotExist) { return 0, errors.WithMessage(err, "could not stat current link") } f.current, err = strconv.ParseUint(target, 10, 64) if err != nil { return 0, errors.WithMessagef(err, "unexpected symlink target (current -> %s)", target) } return f.current, nil } func (f *Fetcher) initialiseStorage() (uint64, errors.E) { latest, err := f.updater.GetLatestRunID() if err != nil { f.log.Warn("could not get latest run ID, using fallback", "error", err) } f.log.Debug("versions", "current", f.current, "latest", latest) defer f.cleanOldRevisionsAsync() if latest > f.current { err = f.getArtefacts(latest) if err != nil { return latest, errors.WithMessage(err, "could not fetch artefacts") } return latest, nil } return f.current, nil } func (f *Fetcher) Subscribe() (<-chan string, errors.E) { err := f.checkFolder() if err != nil { return nil, err } var root string f.current, err = f.getCurrentVersion() if err != nil { f.log.Warn("could not get current version", "error", err) } if !f.options.RedisEnabled { root = f.path(f.current) } else { runID, err := f.initialiseStorage() if err != nil { return nil, err } root = f.path(runID) } ch := make(chan string, 1) go func() { var err error var attempt uint for { err = f.connect(root, ch) if err == nil { return } next := expBackoff(attempt) attempt++ f.log.Warn( "could not connect to update listener", "error", err, "attempt", attempt, "next_try", next, ) <-time.After(next) } }() return ch, nil } func (f *Fetcher) connect(root string, ch chan string) errors.E { updates, err := f.updater.Subscribe() if err != nil { return errors.WithMessage(err, "could not subscribe to updates") } go func() { ch <- root for update := range updates { if update.RunID == 0 { if f.options.RedisEnabled { f.log.Warn("got zero runID") continue } ch <- f.path(f.current) } else { err := f.getArtefacts(update.RunID) if err != nil { f.log.Warn("could not get artefacts for version", "run_id", update.RunID, "error", err) continue } ch <- f.path(update.RunID) } } }() return nil } func (f *Fetcher) path(runID uint64) string { return filepath.Join(f.options.Root, strconv.FormatUint(runID, 10)) } func expBackoff(attempt uint) time.Duration { return time.Duration(math.Exp2(float64(attempt))) * time.Second } |