-
Notifications
You must be signed in to change notification settings - Fork 6
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
Download BalenaOS images from URL #1132
Draft
vipulgupta2048
wants to merge
3
commits into
master
Choose a base branch
from
vipulgupta2048/download-url
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
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 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
This file contains 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
This file contains 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
This file contains 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,107 @@ | ||
/* | ||
* Copyright 2024 balena | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
'use strict'; | ||
|
||
const { spawn } = require("child_process"); | ||
|
||
const fs = require('fs'); | ||
const path = require('path'); | ||
const crypto = require('crypto'); | ||
const retry = require('bluebird-retry'); | ||
const config = require('../config'); | ||
const { join } = require('path'); | ||
|
||
// Function for generating SHA-256 checksum | ||
function generateChecksum(filePath) { | ||
return new Promise((resolve, reject) => { | ||
const hash = crypto.createHash('MD5'); | ||
const stream = fs.createReadStream(filePath); | ||
|
||
stream.on('data', (data) => hash.update(data)); | ||
stream.on('end', () => resolve(hash.digest('hex'))); | ||
stream.on('error', (error) => reject(error)); | ||
}); | ||
} | ||
|
||
module.exports = { | ||
|
||
/** | ||
* Download a file with `curl`. | ||
* | ||
* @param {string} downloadUrl - The URL to download the file from. | ||
* @param {string[]} otherArgs - Optional arguments to pass to curl. | ||
* | ||
* @category helper | ||
* @remark https://www.jenkins.io/doc/book/system-administration/authenticating-scripted-clients/ | ||
*/ | ||
downloadFromUrl: async function (downloadUrl, otherArgs = []) { | ||
const downloadFileName = new URL(downloadUrl).pathname.split('/').pop() | ||
const downloadHost = new URL(downloadUrl).hostname | ||
const downloadPath = join( | ||
config.leviathan.downloads, | ||
`${downloadFileName}`, | ||
); | ||
|
||
// Prepare curl command with necessary options | ||
const args = [ | ||
// "-vvv", // Debugging options | ||
'--silent', "--show-error", // No Progress Bar | ||
'-C', '-', '--fail', // Fail options | ||
'--connect-timeout', '1060', '--keepalive-time', '1060', // Timeout options | ||
'-H', 'accept-encoding: gzip, deflate', // Headers | ||
'-O', '--output-dir', config.leviathan.downloads, // Output options | ||
downloadUrl, // Auth options | ||
...otherArgs // Custom options | ||
] | ||
|
||
return retry(() => { | ||
return new Promise((resolve, reject) => { | ||
const curl = spawn('curl', args); | ||
console.log(`Download started from ${downloadHost}... `); | ||
|
||
curl.stdout.on('data', (data) => { | ||
console.log(`${data}`); | ||
}); | ||
|
||
curl.stderr.on('data', (data) => { | ||
// To get any logs disable silent option | ||
console.log(`${data}`); // Display progress data from curl, even errors | ||
}); | ||
|
||
// when the spawn child process exits, check if there were any errors | ||
curl.on('exit', function (code, signal) { | ||
if (code != 0) { | ||
reject(`received code ${code} and signal ${signal}`) | ||
} | ||
}); | ||
|
||
curl.on('close', async (code, signal) => { | ||
if (code === 0) { | ||
console.log(`File downloaded to ${downloadPath}. File size: ${fs.statSync(downloadPath).size / (1024 * 1024)} MB`); // Size in Megabytes | ||
console.log(`Downloaded file checksum: ${await generateChecksum(downloadPath)}`); | ||
resolve(downloadPath); | ||
} else { | ||
reject(`received code ${code} and signal ${signal}`) | ||
} | ||
}), | ||
{ | ||
max_tries: 3, | ||
} | ||
}) | ||
}) | ||
} | ||
} |
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
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.
Check failure
Code scanning / CodeQL
Inefficient regular expression High