cli helped
This commit is contained in:
143
src/nuget-cli/Helpers.cs
Normal file
143
src/nuget-cli/Helpers.cs
Normal file
@ -0,0 +1,143 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.IO;
|
||||||
|
using System.Net;
|
||||||
|
using System.Text;
|
||||||
|
|
||||||
|
namespace nuget_cli
|
||||||
|
{
|
||||||
|
public static class Helpers
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Creates HTTP POST request & uploads database to server. Author : Farhan Ghumra
|
||||||
|
/// </summary>
|
||||||
|
static internal void UploadFilesToServer(this PushReport report, Uri uri, Dictionary<string, string> data, string fileName, string fileContentType,
|
||||||
|
string apikey, byte[] fileData)
|
||||||
|
{
|
||||||
|
// "X-NuGet-ApiKey
|
||||||
|
string boundary = "----------" + DateTime.Now.Ticks.ToString("x");
|
||||||
|
HttpWebRequest httpWebRequest = (HttpWebRequest)WebRequest.Create(uri);
|
||||||
|
httpWebRequest.ContentType = "multipart/form-data; boundary=" + boundary;
|
||||||
|
httpWebRequest.Method = "PUT";
|
||||||
|
httpWebRequest.BeginGetRequestStream((result) =>
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
HttpWebRequest request = (HttpWebRequest)result.AsyncState;
|
||||||
|
using (Stream requestStream = request.EndGetRequestStream(result))
|
||||||
|
{
|
||||||
|
WriteMultipartForm(requestStream, boundary, data, fileName, fileContentType, apikey, fileData);
|
||||||
|
}
|
||||||
|
request.BeginGetResponse(a =>
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var response = request.EndGetResponse(a);
|
||||||
|
var responseStream = response.GetResponseStream();
|
||||||
|
using (var sr = new StreamReader(responseStream))
|
||||||
|
{
|
||||||
|
using (StreamReader streamReader = new StreamReader(response.GetResponseStream()))
|
||||||
|
{
|
||||||
|
string responseString = streamReader.ReadToEnd();
|
||||||
|
//responseString is depend upon your web service.
|
||||||
|
if (responseString == "Success")
|
||||||
|
{
|
||||||
|
report.Message = "stored successfully on server.";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
report.Message = "Error occurred while uploading packet on server.";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
report.Message = ex.Message;
|
||||||
|
Console.Error.WriteLine(ex.Message);
|
||||||
|
}
|
||||||
|
}, null);
|
||||||
|
}
|
||||||
|
catch (Exception rex)
|
||||||
|
{
|
||||||
|
report.Message = rex.Message;
|
||||||
|
Console.Error.WriteLine(rex.Message);
|
||||||
|
}
|
||||||
|
}, httpWebRequest);
|
||||||
|
httpWebRequest.GetResponse();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Writes multi part HTTP POST request. Author : Farhan Ghumra
|
||||||
|
/// </summary>
|
||||||
|
public static void WriteMultipartForm(this Stream s, string boundary, Dictionary<string, string> data, string fileName, string fileContentType,
|
||||||
|
string apiKey, byte[] fileData)
|
||||||
|
{
|
||||||
|
/// The first boundary
|
||||||
|
byte[] boundarybytes = Encoding.UTF8.GetBytes("--" + boundary + "\r\n");
|
||||||
|
/// the last boundary.
|
||||||
|
byte[] trailer = Encoding.UTF8.GetBytes("\r\n--" + boundary + "--\r\n");
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Api Key header template
|
||||||
|
/// </summary>
|
||||||
|
/// <value></value>
|
||||||
|
string apiKeyHeaderTemplate = "X-NuGet-ApiKey: \"{0}\"\r\n";
|
||||||
|
|
||||||
|
/// the form data, properly formatted
|
||||||
|
string formdataTemplate = "Content-Dis-data; name=\"{0}\"\r\n\r\n{1}";
|
||||||
|
/// the form-data file upload, properly formatted
|
||||||
|
string fileheaderTemplate = "Content-Dis-data; name=\"{0}\"; filename=\"{1}\";\r\nContent-Type: {2}\r\n\r\n";
|
||||||
|
|
||||||
|
/// Added to track if we need a CRLF or not.
|
||||||
|
bool bNeedsCRLF = false;
|
||||||
|
|
||||||
|
WriteToStream(s, string.Format(apiKeyHeaderTemplate, apiKey));
|
||||||
|
|
||||||
|
if (data != null)
|
||||||
|
{
|
||||||
|
foreach (string key in data.Keys)
|
||||||
|
{
|
||||||
|
/// if we need to drop a CRLF, do that.
|
||||||
|
if (bNeedsCRLF)
|
||||||
|
WriteToStream(s, "\r\n");
|
||||||
|
|
||||||
|
/// Write the boundary.
|
||||||
|
WriteToStream(s, boundarybytes);
|
||||||
|
|
||||||
|
/// Write the key.
|
||||||
|
WriteToStream(s, string.Format(formdataTemplate, key, data[key]));
|
||||||
|
bNeedsCRLF = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// If we don't have keys, we don't need a crlf.
|
||||||
|
if (bNeedsCRLF)
|
||||||
|
WriteToStream(s, "\r\n");
|
||||||
|
|
||||||
|
WriteToStream(s, boundarybytes);
|
||||||
|
WriteToStream(s, string.Format(fileheaderTemplate, "file", fileName, fileContentType));
|
||||||
|
/// Write the file data to the stream.
|
||||||
|
WriteToStream(s, fileData);
|
||||||
|
WriteToStream(s, trailer);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Writes string to stream. Author : Farhan Ghumra
|
||||||
|
/// </summary>
|
||||||
|
private static void WriteToStream(Stream s, string txt)
|
||||||
|
{
|
||||||
|
byte[] bytes = Encoding.UTF8.GetBytes(txt);
|
||||||
|
s.Write(bytes, 0, bytes.Length);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Writes byte array to stream. Author : Farhan Ghumra
|
||||||
|
/// </summary>
|
||||||
|
private static void WriteToStream(Stream s, byte[] bytes)
|
||||||
|
{
|
||||||
|
s.Write(bytes, 0, bytes.Length);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -8,21 +8,39 @@ namespace nuget_cli
|
|||||||
{
|
{
|
||||||
internal class PushCommand
|
internal class PushCommand
|
||||||
{
|
{
|
||||||
|
private static readonly int MAXSENDLEN = 0xffff;
|
||||||
|
|
||||||
static internal async Task<PushReport> RunAsync(string pkg, string source, string apikey)
|
static internal async Task<PushReport> RunAsync(string pkg, string source, string apikey)
|
||||||
{
|
{
|
||||||
var report = new PushReport {
|
var report = new PushReport
|
||||||
PkgName = pkg
|
{
|
||||||
};
|
PkgName = pkg
|
||||||
|
};
|
||||||
FileInfo fi = new FileInfo(pkg);
|
FileInfo fi = new FileInfo(pkg);
|
||||||
if (!fi.Exists)
|
if (!fi.Exists)
|
||||||
throw new Exception("Le fichier n'existe pas");
|
throw new Exception("Le fichier n'existe pas");
|
||||||
HttpClient client = new HttpClient();
|
if (fi.Length > MAXSENDLEN)
|
||||||
client.DefaultRequestHeaders.Add("api-key", apikey);
|
throw new Exception($"Le fichier ne passe pas, trop gros ({MAXSENDLEN}).");
|
||||||
client.BaseAddress = new Uri(source);
|
|
||||||
var content = new StreamContent(fi.OpenRead());
|
var fparams = new Dictionary<string, string> { { "userid", "9" } };
|
||||||
var response = await client.PutAsync(source, content);
|
|
||||||
report.StatusCode = response.StatusCode.ToString();
|
using (var fss = fi.OpenRead())
|
||||||
report.Message = await response.Content.ReadAsStringAsync();
|
{
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
byte[] buffer = new byte[MAXSENDLEN];
|
||||||
|
var form_bytes_read = fss.Read(buffer, 0, MAXSENDLEN);
|
||||||
|
report.UploadFilesToServer(new Uri(source), fparams, fi.Name, "application/octet-stream",
|
||||||
|
apikey, buffer);
|
||||||
|
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
await Console.Error.WriteLineAsync(ex.Message);
|
||||||
|
throw;
|
||||||
|
}
|
||||||
|
}
|
||||||
report.Executed = true;
|
report.Executed = true;
|
||||||
return report;
|
return report;
|
||||||
}
|
}
|
||||||
|
@ -1,11 +1,12 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
||||||
<RootNamespace>nuget_cli</RootNamespace>
|
<RootNamespace>nuget_cli</RootNamespace>
|
||||||
</PropertyGroup>
|
<UserSecretsId>45b74c62-05bc-4603-95b4-3e80ae2fdf50</UserSecretsId>
|
||||||
<ItemGroup>
|
</PropertyGroup>
|
||||||
<PackageReference Include="Mono.Options" Version="5.3.0" />
|
<ItemGroup>
|
||||||
</ItemGroup>
|
<PackageReference Include="Mono.Options" Version="5.3.0" />
|
||||||
</Project>
|
</ItemGroup>
|
||||||
|
</Project>
|
||||||
|
@ -92,6 +92,7 @@ namespace nuget_host.Controllers
|
|||||||
|
|
||||||
if (!destdir.Exists) destdir.Create();
|
if (!destdir.Exists) destdir.Create();
|
||||||
source.MoveTo(path);
|
source.MoveTo(path);
|
||||||
|
logger.LogWarning($"200: {entry.Name}");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -104,12 +105,13 @@ namespace nuget_host.Controllers
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
logger.LogWarning("400");
|
||||||
return new BadRequestObjectResult(ViewData);
|
return new BadRequestObjectResult(ViewData);
|
||||||
}
|
}
|
||||||
return Ok(ViewData);
|
return Ok(ViewData);
|
||||||
}
|
}
|
||||||
|
|
||||||
[HttpGet("Packages/{spec}")]
|
[HttpGet("packages/{spec}")]
|
||||||
public IActionResult Index(string spec)
|
public IActionResult Index(string spec)
|
||||||
{
|
{
|
||||||
if (string.IsNullOrEmpty(spec))
|
if (string.IsNullOrEmpty(spec))
|
||||||
|
Reference in New Issue
Block a user