Password handling for the SSH client
This commit is contained in:
@@ -35,6 +35,7 @@
|
|||||||
<Private>True</Private>
|
<Private>True</Private>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="System" />
|
<Reference Include="System" />
|
||||||
|
<Reference Include="System.Configuration" />
|
||||||
<Reference Include="System.Core" />
|
<Reference Include="System.Core" />
|
||||||
<Reference Include="System.Xml.Linq" />
|
<Reference Include="System.Xml.Linq" />
|
||||||
<Reference Include="System.Data.DataSetExtensions" />
|
<Reference Include="System.Data.DataSetExtensions" />
|
||||||
|
|||||||
@@ -1,4 +1,6 @@
|
|||||||
using LeafWeb.Core.Entities;
|
using System.Configuration;
|
||||||
|
using LeafWeb.Core.Entities;
|
||||||
|
using LeafWeb.Core.Utility;
|
||||||
using NUnit.Framework;
|
using NUnit.Framework;
|
||||||
|
|
||||||
namespace LeafWeb.Core.Tests.Remote
|
namespace LeafWeb.Core.Tests.Remote
|
||||||
@@ -9,8 +11,9 @@ namespace LeafWeb.Core.Tests.Remote
|
|||||||
[Test]
|
[Test]
|
||||||
public void Client()
|
public void Client()
|
||||||
{
|
{
|
||||||
var leafInputFile = new LeafInputFile {Filename = "blah", Id = 1};
|
var leafInputFile = new LeafInputFile {Filename = "blah", Id = 1, Contents = "test".GetBytes()};
|
||||||
var client = new PiscalSshClient();
|
var piscalConnectionString = ConfigurationManager.ConnectionStrings["PiscalServer"];
|
||||||
|
var client = new PiscalSshClient(piscalConnectionString.ConnectionString);
|
||||||
client.SubmitLeafInputFile(leafInputFile);
|
client.SubmitLeafInputFile(leafInputFile);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
using System;
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using LeafWeb.Core.Entities;
|
using LeafWeb.Core.Entities;
|
||||||
using Renci.SshNet;
|
using Renci.SshNet;
|
||||||
@@ -14,13 +16,22 @@ namespace LeafWeb.Core
|
|||||||
|
|
||||||
public class PiscalSshClient : IPiscalClient
|
public class PiscalSshClient : IPiscalClient
|
||||||
{
|
{
|
||||||
|
private readonly Dictionary<string, string> _conn;
|
||||||
|
|
||||||
|
public PiscalSshClient(string connectionString)
|
||||||
|
{
|
||||||
|
_conn = connectionString.Split(';')
|
||||||
|
.Select(t => t.Split(new [] { '=' }, 2))
|
||||||
|
.ToDictionary(t => t[0].Trim(), t => t[1].Trim(), StringComparer.InvariantCultureIgnoreCase);
|
||||||
|
}
|
||||||
|
|
||||||
private SshClient GetSshClient()
|
private SshClient GetSshClient()
|
||||||
{
|
{
|
||||||
return new SshClient("40.76.47.173", "piscaladmin", "password");
|
return new SshClient(_conn["host"], _conn["username"], _conn["password"]);
|
||||||
}
|
}
|
||||||
private ScpClient GetScpClient()
|
private ScpClient GetScpClient()
|
||||||
{
|
{
|
||||||
return new ScpClient("40.76.47.173", "piscaladmin", "password");
|
return new ScpClient(_conn["host"], _conn["username"], _conn["password"]);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void SubmitLeafInputFile(LeafInputFile file)
|
public void SubmitLeafInputFile(LeafInputFile file)
|
||||||
@@ -35,13 +46,13 @@ namespace LeafWeb.Core
|
|||||||
using (var ssh = GetSshClient())
|
using (var ssh = GetSshClient())
|
||||||
{
|
{
|
||||||
ssh.Connect();
|
ssh.Connect();
|
||||||
var cmd = ssh.CreateCommand("ps");
|
var lsCommend = ssh.CreateCommand("ls");
|
||||||
cmd.Execute();
|
lsCommend.Execute();
|
||||||
//var extendedData = Encoding.ASCII.GetString(cmd.ExtendedOutputStream.ToArray());
|
//var extendedData = Encoding.ASCII.GetString(cmd.ExtendedOutputStream.ToArray());
|
||||||
var extendedData = new StreamReader(cmd.ExtendedOutputStream, Encoding.ASCII).ReadToEnd();
|
var extendedData = new StreamReader(lsCommend.ExtendedOutputStream, Encoding.ASCII).ReadToEnd();
|
||||||
ssh.Disconnect();
|
ssh.Disconnect();
|
||||||
|
|
||||||
Console.Write(cmd.Result);
|
Console.Write(lsCommend.Result);
|
||||||
Console.Write(extendedData);
|
Console.Write(extendedData);
|
||||||
//Assert.AreEqual("12345\n", cmd.Result);
|
//Assert.AreEqual("12345\n", cmd.Result);
|
||||||
//Assert.AreEqual("654321\n", extendedData);
|
//Assert.AreEqual("654321\n", extendedData);
|
||||||
|
|||||||
@@ -24,5 +24,19 @@ namespace LeafWeb.Core.Utility
|
|||||||
// Return char and concat substring.
|
// Return char and concat substring.
|
||||||
return char.ToLowerInvariant(s[0]) + s.Substring(1);
|
return char.ToLowerInvariant(s[0]) + s.Substring(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static byte[] GetBytes(this string str)
|
||||||
|
{
|
||||||
|
var bytes = new byte[str.Length * sizeof(char)];
|
||||||
|
Buffer.BlockCopy(str.ToCharArray(), 0, bytes, 0, bytes.Length);
|
||||||
|
return bytes;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static string GetString(this byte[] bytes)
|
||||||
|
{
|
||||||
|
var chars = new char[bytes.Length / sizeof(char)];
|
||||||
|
Buffer.BlockCopy(bytes, 0, chars, 0, bytes.Length);
|
||||||
|
return new string(chars);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -33,7 +33,7 @@ namespace LeafWeb.Web.ViewModels.LeafInput
|
|||||||
public string SiteId { get; set; }
|
public string SiteId { get; set; }
|
||||||
|
|
||||||
[Display(Name = "Photosynthetic Pathways")]
|
[Display(Name = "Photosynthetic Pathways")]
|
||||||
[Required(ErrorMessage = "A photosynthesis pathway must be chosen")]
|
[Required(ErrorMessage = "A Photosynthetic pathway must be chosen")]
|
||||||
public SelectListViewModel PhotosynthesisType { get; set; }
|
public SelectListViewModel PhotosynthesisType { get; set; }
|
||||||
|
|
||||||
static CreateViewModel()
|
static CreateViewModel()
|
||||||
|
|||||||
Reference in New Issue
Block a user