From c202f2eca32e1ab2e313417168351df1c58ee062 Mon Sep 17 00:00:00 2001 From: Mitch Riedstra Date: Wed, 4 Aug 2021 23:53:36 -0400 Subject: More major changes. Web UI works. Downloading games works. Status works. extractFile needs work --- steam/http.go | 61 ----------------------------------------------------------- 1 file changed, 61 deletions(-) delete mode 100644 steam/http.go (limited to 'steam/http.go') diff --git a/steam/http.go b/steam/http.go deleted file mode 100644 index df756e4..0000000 --- a/steam/http.go +++ /dev/null @@ -1,61 +0,0 @@ -package steam - -import ( - "fmt" - "net/http" - "os" - "strconv" -) - -// ExtractFile is a wrapper around Extract that handles an HTTP endpoint. -// this spawns an "extractFile" on the library. Status will be updated there -// as this goes along. Non fatal and fatal errors will be populated there -func (l *Library) ExtractFile(fn string) (*Game, error) { - g := &Game{} - j := newJob("extractFile", g) - defer j.done() - - l.status.addJob(j) - - fi, err := os.Stat(fn) - if err != nil { - j.addError(err) - return g, err - } - j.setSize(fi.Size()) - - fh, err := os.Open(fn) - if err != nil { - j.addError(err) - return g, err - } - - return l.extractUpdate(j, g, fh) -} - -// ExtractHTTP is a wrapper around Extract that handles an HTTP endpoint. -// this spawns an "extractHTTP" on the library. Status will be updated there -// as this goes along. Non fatal and fatal errors will be populated there -func (l *Library) ExtractHTTP(url string) (*Game, error) { - g := &Game{} - j := newJob("extractHTTP", g) - defer j.done() - - l.status.addJob(j) - - resp, err := http.Get(url) - if err != nil { - j.addError(err) - return g, err - } - - estSize, err := strconv.ParseInt(resp.Header.Get("Estimated-size"), 10, 64) - if err != nil { - j.addError(err) - return g, fmt.Errorf("Failed to convert estimated size header: %w", err) - } - - j.setSize(estSize) - - return l.extractUpdate(j, g, resp.Body) -} -- cgit v1.2.3