Just a quick tip with example code for developers that have to upload files to JFrog Artifactory from C# code. The code snippet does also set the SHA1, SHA256, and MD5 checksums in the request header of the web request, so that JFrog Artifactory can determine if the file and checksums do match.
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
/// <summary> | |
/// Uploads a file to JFrog Artifactory and sets the recommended checksums. | |
/// </summary> | |
public static void UploadFileToArtifactory(string username, string password, string filePath, string targetUrl) | |
{ | |
// generate hash sums | |
FileStream fop = File.OpenRead(filePath); | |
string sha1checksum = BitConverter.ToString(System.Security.Cryptography.SHA1.Create().ComputeHash(fop)).ToLower().Replace("-", ""); | |
fop = File.OpenRead(filePath); | |
string sha256checksum = BitConverter.ToString(System.Security.Cryptography.SHA256.Create().ComputeHash(fop)).ToLower().Replace("-", ""); | |
fop = File.OpenRead(filePath); | |
string md5checksum = BitConverter.ToString(System.Security.Cryptography.MD5.Create().ComputeHash(fop)).ToLower().Replace("-", ""); | |
using (HttpClient client = new HttpClient(new HttpClientHandler())) | |
{ | |
// authentication | |
client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Basic", Convert.ToBase64String(Encoding.ASCII.GetBytes(username + ":" + password))); | |
// add hash sums to request header | |
client.DefaultRequestHeaders.Add("X-Checksum-Sha1", sha1checksum); | |
client.DefaultRequestHeaders.Add("X-Checksum-Sha256", sha256checksum); | |
client.DefaultRequestHeaders.Add("X-Checksum-MD5", md5checksum); | |
using (var stream = File.OpenRead(filePath)) | |
{ | |
var response = client.PutAsync(targetUrl, new StreamContent(stream)); | |
using (HttpContent content = response.Result.Content) | |
{ | |
string data = content.ReadAsStringAsync().Result; | |
} | |
} | |
} | |
} |
Short Tip: Upload files to JFrog Artifactory with checksum from C#