1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
using System;
using System.Collections.Generic;
using System.Windows.Forms;
using DomainPublicSuffix;
using KeePassRPC.Properties;
namespace KeePassRPC.Forms
{
public partial class KeeMAMOverrideForm : Form
{
public string Domain;
public MatchAccuracyMethod MAM;
public List<string> OtherKeys;
public KeeMAMOverrideForm(string domain, MatchAccuracyMethod? mam, List<string> otherKeys)
{
InitializeComponent();
Icon = Resources.KPRPCico;
Domain = domain;
OtherKeys = otherKeys;
MAM = mam.GetValueOrDefault(MatchAccuracyMethod.Domain);
textBox1.Text = Domain;
switch (MAM)
{
case MatchAccuracyMethod.Exact: radioButton3.Checked = true; break;
case MatchAccuracyMethod.Hostname: radioButton2.Checked = true; break;
case MatchAccuracyMethod.Domain: radioButton1.Checked = true; break;
}
if (string.IsNullOrEmpty(domain))
Text = "Add Override";
else
Text = "Edit Override";
}
private void button2_Click(object sender, EventArgs e)
{
}
private void buttonOK_Click(object sender, EventArgs e)
{
if (textBox1.Text.Length > 0)
Domain = textBox1.Text;
else
DialogResult = DialogResult.None;
if (OtherKeys.Contains(Domain))
{
MessageBox.Show(this, "An override for '" + Domain + "' has already been added. Cancel, then find and Edit the existing override.");
DialogResult = DialogResult.None;
return;
}
DomainName domain;
DomainName.TryParse(Domain, out domain);
if (domain == null || domain.RegistrableDomain == null || domain.RegistrableDomain != Domain)
{
MessageBox.Show(this, "Invalid domain name");
DialogResult = DialogResult.None;
return;
}
MAM = DetermineDefaultMatchAccuracy();
}
private MatchAccuracyMethod DetermineDefaultMatchAccuracy()
{
if (radioButton3.Checked) return MatchAccuracyMethod.Exact;
if (radioButton2.Checked) return MatchAccuracyMethod.Hostname;
return MatchAccuracyMethod.Domain;
}
}
}
|