began creating cred import form

This commit is contained in:
David Sparer
2019-01-23 22:16:08 -06:00
parent d524df6315
commit 9e217dba79
6 changed files with 298 additions and 0 deletions

View File

@@ -6,6 +6,7 @@ using mRemoteNG.Config.Import;
using mRemoteNG.Connection.Protocol;
using mRemoteNG.Container;
using mRemoteNG.Tools;
using mRemoteNG.UI.Forms;
namespace mRemoteNG.App
{

View File

@@ -4,6 +4,8 @@ using mRemoteNG.Config.Serializers.Csv;
using mRemoteNG.Container;
using mRemoteNG.Messages;
using System.IO;
using System.Linq;
using mRemoteNG.UI.Forms;
namespace mRemoteNG.Config.Import
{
@@ -25,6 +27,12 @@ namespace mRemoteNG.Config.Import
var xmlConnectionsDeserializer = new CsvConnectionsDeserializerMremotengFormat();
var serializationResult = xmlConnectionsDeserializer.Deserialize(xmlString);
var credentialImportForm = new CredentialImportForm
{
CredentialRecords = serializationResult.ConnectionToCredentialMap.DistinctCredentialRecords.ToList()
};
credentialImportForm.ShowDialog();
var rootImportContainer = new ContainerInfo { Name = Path.GetFileNameWithoutExtension(filePath) };
rootImportContainer.AddChildRange(serializationResult.ConnectionRecords);
destinationContainer.AddChild(rootImportContainer);

View File

@@ -0,0 +1,126 @@
namespace mRemoteNG.UI.Forms
{
partial class CredentialImportForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.olvCredentials = new BrightIdeasSoftware.ObjectListView();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.colUsername = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
this.colDomain = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
this.colRepo = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
this.buttonAccept = new mRemoteNG.UI.Controls.Base.NGButton();
((System.ComponentModel.ISupportInitialize)(this.olvCredentials)).BeginInit();
this.tableLayoutPanel1.SuspendLayout();
this.SuspendLayout();
//
// olvCredentials
//
this.olvCredentials.AllColumns.Add(this.colUsername);
this.olvCredentials.AllColumns.Add(this.colDomain);
this.olvCredentials.AllColumns.Add(this.colRepo);
this.olvCredentials.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.colUsername,
this.colDomain,
this.colRepo});
this.tableLayoutPanel1.SetColumnSpan(this.olvCredentials, 2);
this.olvCredentials.Cursor = System.Windows.Forms.Cursors.Default;
this.olvCredentials.Dock = System.Windows.Forms.DockStyle.Fill;
this.olvCredentials.FullRowSelect = true;
this.olvCredentials.Location = new System.Drawing.Point(3, 3);
this.olvCredentials.Name = "olvCredentials";
this.olvCredentials.ShowGroups = false;
this.olvCredentials.Size = new System.Drawing.Size(794, 399);
this.olvCredentials.TabIndex = 0;
this.olvCredentials.UseCompatibleStateImageBehavior = false;
this.olvCredentials.View = System.Windows.Forms.View.Details;
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 2;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 80F));
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 20F));
this.tableLayoutPanel1.Controls.Add(this.olvCredentials, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.buttonAccept, 1, 1);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 2;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 90F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(800, 450);
this.tableLayoutPanel1.TabIndex = 1;
//
// colUsername
//
this.colUsername.Text = "Username";
//
// colDomain
//
this.colDomain.Text = "Domain";
//
// colRepo
//
this.colRepo.FillsFreeSpace = true;
this.colRepo.Text = "Repository";
//
// buttonAccept
//
this.buttonAccept._mice = mRemoteNG.UI.Controls.Base.NGButton.MouseState.HOVER;
this.buttonAccept.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.buttonAccept.Location = new System.Drawing.Point(722, 424);
this.buttonAccept.Name = "buttonAccept";
this.buttonAccept.Size = new System.Drawing.Size(75, 23);
this.buttonAccept.TabIndex = 1;
this.buttonAccept.Text = "Accept";
this.buttonAccept.UseVisualStyleBackColor = true;
this.buttonAccept.Click += new System.EventHandler(this.buttonAccept_Click);
//
// CredentialImportForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.tableLayoutPanel1);
this.Name = "CredentialImportForm";
this.Text = "CredentialImportForm";
((System.ComponentModel.ISupportInitialize)(this.olvCredentials)).EndInit();
this.tableLayoutPanel1.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private BrightIdeasSoftware.ObjectListView olvCredentials;
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
private BrightIdeasSoftware.OLVColumn colUsername;
private BrightIdeasSoftware.OLVColumn colDomain;
private BrightIdeasSoftware.OLVColumn colRepo;
private Controls.Base.NGButton buttonAccept;
}
}

View File

@@ -0,0 +1,34 @@
using System.Collections.Generic;
using System.Windows.Forms;
using mRemoteNG.Credential;
namespace mRemoteNG.UI.Forms
{
public partial class CredentialImportForm : Form
{
private List<ICredentialRecord> _credentialRecords;
public List<ICredentialRecord> CredentialRecords
{
get => _credentialRecords;
set
{
_credentialRecords = value;
olvCredentials.SetObjects(_credentialRecords);
}
}
public CredentialImportForm()
{
InitializeComponent();
colUsername.AspectName = nameof(ICredentialRecord.Username);
colDomain.AspectName = nameof(ICredentialRecord.Domain);
}
private void buttonAccept_Click(object sender, System.EventArgs e)
{
}
}
}

View File

@@ -0,0 +1,120 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>

View File

@@ -505,6 +505,12 @@
<Compile Include="UI\Forms\CompositeCredentialRepoUnlockerForm.Designer.cs">
<DependentUpon>CompositeCredentialRepoUnlockerForm.cs</DependentUpon>
</Compile>
<Compile Include="UI\Forms\CredentialImportForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="UI\Forms\CredentialImportForm.Designer.cs">
<DependentUpon>CredentialImportForm.cs</DependentUpon>
</Compile>
<Compile Include="UI\Forms\CredentialManager\CredentialManagerForm.cs">
<SubType>Form</SubType>
</Compile>
@@ -911,6 +917,9 @@
<EmbeddedResource Include="UI\Forms\CompositeCredentialRepoUnlockerForm.resx">
<DependentUpon>CompositeCredentialRepoUnlockerForm.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="UI\Forms\CredentialImportForm.resx">
<DependentUpon>CredentialImportForm.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="UI\Forms\CredentialManager\CredentialManagerForm.resx">
<DependentUpon>CredentialManagerForm.cs</DependentUpon>
</EmbeddedResource>