2015-10-20 03:20:42 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2016-11-07 22:08:26 +00:00
|
|
|
|
using System.Diagnostics;
|
2015-11-05 04:34:49 +00:00
|
|
|
|
using System.IO;
|
2015-10-20 03:20:42 +00:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
2015-10-23 22:49:04 +00:00
|
|
|
|
using System.Text.RegularExpressions;
|
2015-10-27 01:31:10 +00:00
|
|
|
|
using System.Timers;
|
2015-10-20 03:20:42 +00:00
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.Windows;
|
|
|
|
|
using System.Windows.Controls;
|
|
|
|
|
using System.Windows.Data;
|
|
|
|
|
using System.Windows.Documents;
|
|
|
|
|
using System.Windows.Input;
|
|
|
|
|
using System.Windows.Media;
|
|
|
|
|
using System.Windows.Media.Imaging;
|
|
|
|
|
using System.Windows.Navigation;
|
|
|
|
|
using System.Windows.Shapes;
|
2015-10-27 01:31:10 +00:00
|
|
|
|
using System.Windows.Threading;
|
2015-10-20 03:20:42 +00:00
|
|
|
|
|
|
|
|
|
namespace WinUI
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Interaction logic for MainWindow.xaml
|
|
|
|
|
/// </summary>
|
2016-11-09 18:32:18 +00:00
|
|
|
|
public partial class NetworkListView : Window
|
2015-10-20 03:20:42 +00:00
|
|
|
|
{
|
2015-10-27 01:08:44 +00:00
|
|
|
|
Regex charRegex = new Regex("[0-9a-fxA-FX]");
|
|
|
|
|
Regex wholeStringRegex = new Regex("^[0-9a-fxA-FX]+$");
|
2015-10-22 03:29:03 +00:00
|
|
|
|
|
2015-10-27 01:31:10 +00:00
|
|
|
|
Timer timer = new Timer();
|
|
|
|
|
|
2015-11-05 02:28:07 +00:00
|
|
|
|
bool connected = false;
|
|
|
|
|
|
2016-11-09 18:32:18 +00:00
|
|
|
|
public NetworkListView()
|
2015-10-20 03:20:42 +00:00
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
2016-11-07 22:08:26 +00:00
|
|
|
|
|
2016-11-10 22:17:57 +00:00
|
|
|
|
APIHandler.Instance.GetStatus(updateStatus);
|
2016-11-07 22:08:26 +00:00
|
|
|
|
|
2016-11-08 22:54:55 +00:00
|
|
|
|
if (!connected)
|
2015-11-05 04:34:49 +00:00
|
|
|
|
{
|
2016-11-08 22:54:55 +00:00
|
|
|
|
MessageBox.Show("Unable to connect to ZerOTier Service");
|
|
|
|
|
return;
|
2015-11-05 04:34:49 +00:00
|
|
|
|
}
|
2015-10-27 01:08:44 +00:00
|
|
|
|
|
2016-11-10 22:17:57 +00:00
|
|
|
|
APIHandler.Instance.GetNetworks(updateNetworks);
|
2016-11-07 22:08:26 +00:00
|
|
|
|
|
2016-11-08 22:54:55 +00:00
|
|
|
|
DataObject.AddPastingHandler(joinNetworkID, OnPaste);
|
2016-11-07 22:08:26 +00:00
|
|
|
|
|
2016-11-08 22:54:55 +00:00
|
|
|
|
timer.Elapsed += new ElapsedEventHandler(OnUpdateTimer);
|
|
|
|
|
timer.Interval = 2000;
|
|
|
|
|
timer.Enabled = true;
|
2016-11-10 22:17:57 +00:00
|
|
|
|
|
|
|
|
|
|
2015-10-22 03:29:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-10 22:17:57 +00:00
|
|
|
|
private void updateStatus(ZeroTierStatus status)
|
2015-10-22 03:29:03 +00:00
|
|
|
|
{
|
2015-11-05 02:28:07 +00:00
|
|
|
|
if (status != null)
|
2015-10-27 01:31:10 +00:00
|
|
|
|
{
|
2015-11-05 02:28:07 +00:00
|
|
|
|
connected = true;
|
|
|
|
|
|
|
|
|
|
networkId.Dispatcher.BeginInvoke(DispatcherPriority.Normal, new Action(() =>
|
|
|
|
|
{
|
|
|
|
|
this.networkId.Content = status.Address;
|
|
|
|
|
}));
|
|
|
|
|
versionString.Dispatcher.BeginInvoke(DispatcherPriority.Normal, new Action(() =>
|
|
|
|
|
{
|
|
|
|
|
this.versionString.Content = status.Version;
|
|
|
|
|
}));
|
|
|
|
|
onlineStatus.Dispatcher.BeginInvoke(DispatcherPriority.Normal, new Action(() =>
|
|
|
|
|
{
|
|
|
|
|
this.onlineStatus.Content = (status.Online ? "ONLINE" : "OFFLINE");
|
|
|
|
|
}));
|
|
|
|
|
}
|
|
|
|
|
else
|
2015-10-27 01:31:10 +00:00
|
|
|
|
{
|
2015-11-05 02:28:07 +00:00
|
|
|
|
connected = false;
|
|
|
|
|
|
|
|
|
|
networkId.Dispatcher.BeginInvoke(DispatcherPriority.Normal, new Action(() =>
|
|
|
|
|
{
|
|
|
|
|
this.networkId.Content = "";
|
|
|
|
|
}));
|
|
|
|
|
versionString.Dispatcher.BeginInvoke(DispatcherPriority.Normal, new Action(() =>
|
|
|
|
|
{
|
|
|
|
|
this.versionString.Content = "0";
|
|
|
|
|
}));
|
|
|
|
|
onlineStatus.Dispatcher.BeginInvoke(DispatcherPriority.Normal, new Action(() =>
|
|
|
|
|
{
|
|
|
|
|
this.onlineStatus.Content = "OFFLINE";
|
|
|
|
|
}));
|
|
|
|
|
}
|
2015-10-22 03:29:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-10 22:17:57 +00:00
|
|
|
|
private void updateNetworks(List<ZeroTierNetwork> networks)
|
2015-10-22 03:29:03 +00:00
|
|
|
|
{
|
2016-11-10 22:17:57 +00:00
|
|
|
|
if (networks != null)
|
2015-10-27 01:31:10 +00:00
|
|
|
|
{
|
2016-11-10 22:17:57 +00:00
|
|
|
|
networksPage.Dispatcher.BeginInvoke(DispatcherPriority.Normal, new Action(() =>
|
|
|
|
|
{
|
|
|
|
|
networksPage.setNetworks(networks);
|
|
|
|
|
}));
|
|
|
|
|
}
|
2015-10-27 01:31:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void OnUpdateTimer(object source, ElapsedEventArgs e)
|
|
|
|
|
{
|
2016-11-10 22:17:57 +00:00
|
|
|
|
APIHandler.Instance.GetStatus(updateStatus);
|
|
|
|
|
APIHandler.Instance.GetNetworks(updateNetworks);
|
2015-10-20 03:20:42 +00:00
|
|
|
|
}
|
2015-10-23 22:36:42 +00:00
|
|
|
|
|
|
|
|
|
private void joinButton_Click(object sender, RoutedEventArgs e)
|
|
|
|
|
{
|
2015-10-23 22:50:49 +00:00
|
|
|
|
if (joinNetworkID.Text.Length < 16)
|
|
|
|
|
{
|
|
|
|
|
MessageBox.Show("Invalid Network ID");
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2016-11-09 00:31:07 +00:00
|
|
|
|
APIHandler.Instance.JoinNetwork(joinNetworkID.Text);
|
2015-10-23 22:50:49 +00:00
|
|
|
|
}
|
2015-10-23 22:36:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-10-23 22:49:04 +00:00
|
|
|
|
private void OnNetworkEntered(object sender, TextCompositionEventArgs e)
|
2015-10-23 22:36:42 +00:00
|
|
|
|
{
|
2015-10-27 01:08:44 +00:00
|
|
|
|
e.Handled = !charRegex.IsMatch(e.Text);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void OnPaste(object sender, DataObjectPastingEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
var isText = e.SourceDataObject.GetDataPresent(DataFormats.UnicodeText, true);
|
|
|
|
|
if (!isText) return;
|
|
|
|
|
|
|
|
|
|
var text = e.SourceDataObject.GetData(DataFormats.UnicodeText) as string;
|
|
|
|
|
|
|
|
|
|
if (!wholeStringRegex.IsMatch(text))
|
|
|
|
|
{
|
|
|
|
|
e.CancelCommand();
|
|
|
|
|
}
|
2015-10-23 22:36:42 +00:00
|
|
|
|
}
|
2015-10-20 03:20:42 +00:00
|
|
|
|
}
|
|
|
|
|
}
|