-
-
Notifications
You must be signed in to change notification settings - Fork 406
[breaking] Refactoring of download subroutines #1697
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
c4c41d4
Moved downloaders subroutines in 'resources' package
cmaglie e297d4f
Moved function to the correct file
cmaglie 41cfd94
Merge Download subroutine for resources
cmaglie 49b57be
Factored all download subroutines
cmaglie af425f6
Allow passing nil Config in resource.Download method
cmaglie 999ced2
Moved some package in their appropriate place.
cmaglie 462f226
Created IndexResource and factored out all download utilities
cmaglie f628407
Fix regression in unit-tests
cmaglie 76461e8
Adjusted integration tests
cmaglie ec606c4
Fixed linter problems
cmaglie 7efde33
Moved DownloadFile from 'resources' package into 'httpclient'
cmaglie 61f198d
Factored all progress reports callback definitions in the rpc package
cmaglie e0e3506
Updated UPGRADING.md
cmaglie 69c5fd0
Applied suggestions from code review
cmaglie ee303d1
Fixed typos
cmaglie File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
// This file is part of arduino-cli. | ||
// | ||
// Copyright 2020 ARDUINO SA (http://www.arduino.cc/) | ||
// | ||
// This software is released under the GNU General Public License version 3, | ||
// which covers the main part of arduino-cli. | ||
// The terms of this license can be found at: | ||
// https://www.gnu.org/licenses/gpl-3.0.en.html | ||
// | ||
// You can be released from the requirements of the above licenses by purchasing | ||
// a commercial license. Buying such a license is mandatory if you want to | ||
// modify or otherwise use the software for commercial activities involving the | ||
// Arduino software without disclosing the source code of your own applications. | ||
// To purchase a commercial license, send an email to license@arduino.cc. | ||
|
||
package resources | ||
|
||
import ( | ||
"net/url" | ||
"path" | ||
"strings" | ||
|
||
"github.com/arduino/arduino-cli/arduino" | ||
"github.com/arduino/arduino-cli/arduino/security" | ||
"github.com/arduino/go-paths-helper" | ||
"go.bug.st/downloader/v2" | ||
) | ||
|
||
// IndexResource is a reference to a package_index.json | ||
type IndexResource struct { | ||
URL *url.URL | ||
SignatureURL *url.URL | ||
} | ||
|
||
// Download will download the index and possibly check the signature using the Arduino's public key. | ||
// If the file is in .gz format it will be unpacked first. | ||
func (res *IndexResource) Download(destDir *paths.Path, downloadCB DownloadProgressCB) error { | ||
// Create destination directory | ||
if err := destDir.MkdirAll(); err != nil { | ||
return &arduino.PermissionDeniedError{Message: tr("Can't create data directory %s", destDir), Cause: err} | ||
} | ||
|
||
// Create a temp dir to stage all downloads | ||
tmp, err := paths.MkTempDir("", "library_index_download") | ||
if err != nil { | ||
return &arduino.TempDirCreationFailedError{Cause: err} | ||
} | ||
defer tmp.RemoveAll() | ||
|
||
// Download index file | ||
indexFileName := path.Base(res.URL.Path) // == pakcage_index.json[.gz] | ||
tmpIndexPath := tmp.Join(indexFileName) | ||
if err := DownloadFile(tmpIndexPath, res.URL.String(), tr("Downloading index: %s", indexFileName), downloadCB, nil, downloader.NoResume); err != nil { | ||
return &arduino.FailedDownloadError{Message: tr("Error downloading index '%s'", res.URL), Cause: err} | ||
} | ||
|
||
// Expand the index if it is compressed | ||
if strings.HasSuffix(indexFileName, ".gz") { | ||
indexFileName = strings.TrimSuffix(indexFileName, ".gz") // == pakcage_index.json | ||
cmaglie marked this conversation as resolved.
Show resolved
Hide resolved
|
||
tmpUnzippedIndexPath := tmp.Join(indexFileName) | ||
if err := paths.GUnzip(tmpIndexPath, tmpUnzippedIndexPath); err != nil { | ||
return &arduino.PermissionDeniedError{Message: tr("Error extracting %s", indexFileName), Cause: err} | ||
} | ||
tmpIndexPath = tmpUnzippedIndexPath | ||
} | ||
|
||
// Check the signature if needed | ||
var signaturePath, tmpSignaturePath *paths.Path | ||
if res.SignatureURL != nil { | ||
// Compose signature URL | ||
signatureFileName := path.Base(res.SignatureURL.Path) | ||
|
||
// Download signature | ||
signaturePath = destDir.Join(signatureFileName) | ||
tmpSignaturePath = tmp.Join(signatureFileName) | ||
if err := DownloadFile(tmpSignaturePath, res.SignatureURL.String(), tr("Downloading index signature: %s", signatureFileName), downloadCB, nil, downloader.NoResume); err != nil { | ||
return &arduino.FailedDownloadError{Message: tr("Error downloading index signature '%s'", res.SignatureURL), Cause: err} | ||
} | ||
|
||
// Check signature... | ||
if valid, _, err := security.VerifyArduinoDetachedSignature(tmpIndexPath, tmpSignaturePath); err != nil { | ||
return &arduino.PermissionDeniedError{Message: tr("Error verifying signature"), Cause: err} | ||
} else if !valid { | ||
return &arduino.SignatureVerificationFailedError{File: res.URL.String()} | ||
} | ||
} | ||
|
||
// TODO: Implement a ResourceValidator | ||
cmaglie marked this conversation as resolved.
Show resolved
Hide resolved
|
||
// if !validate(tmpIndexPath) { return error } | ||
|
||
// Make a backup copy of old index and signature so the defer function can rollback in case of errors. | ||
indexPath := destDir.Join(indexFileName) | ||
oldIndex := tmp.Join("old_index") | ||
if err := indexPath.CopyTo(oldIndex); err != nil { | ||
return &arduino.PermissionDeniedError{Message: tr("Error saving downloaded index %s", res.URL), Cause: err} | ||
} | ||
defer oldIndex.CopyTo(indexPath) // will silently fail in case of success | ||
oldSignature := tmp.Join("old_signature") | ||
if err := signaturePath.CopyTo(oldSignature); err != nil { | ||
return &arduino.PermissionDeniedError{Message: tr("Error saving downloaded index %s", res.URL), Cause: err} | ||
} | ||
defer oldSignature.CopyTo(signaturePath) // will silently fail in case of success | ||
|
||
if err := tmpIndexPath.CopyTo(indexPath); err != nil { | ||
return &arduino.PermissionDeniedError{Message: tr("Error saving downloaded index %s", res.URL), Cause: err} | ||
} | ||
if res.SignatureURL != nil { | ||
if err := tmpSignaturePath.CopyTo(signaturePath); err != nil { | ||
return &arduino.PermissionDeniedError{Message: tr("Error saving downloaded index signature"), Cause: err} | ||
} | ||
} | ||
oldIndex.Remove() | ||
oldSignature.Remove() | ||
return nil | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.