2021-09-07 11:32:24 +00:00
|
|
|
|
using BookmarkManager;
|
|
|
|
|
using FizzyLauncher.Models;
|
|
|
|
|
using RyzStudio.Windows.Forms;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Reflection;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
|
|
|
|
|
namespace FizzyLauncher
|
|
|
|
|
{
|
|
|
|
|
public partial class MainForm : Form
|
|
|
|
|
{
|
|
|
|
|
public enum AppMode
|
|
|
|
|
{
|
|
|
|
|
Clear = 0,
|
|
|
|
|
Open,
|
|
|
|
|
New
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
protected OptionsForm optionsForm = null;
|
|
|
|
|
|
|
|
|
|
protected AppMode appMode = AppMode.Clear;
|
|
|
|
|
protected string sessionFilename = null;
|
|
|
|
|
protected string sessionPassword = null;
|
|
|
|
|
protected bool isBusy = false;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public MainForm()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
|
|
|
|
|
this.AutoScaleMode = AutoScaleMode.None;
|
|
|
|
|
this.StartPosition = FormStartPosition.WindowsDefaultLocation;
|
|
|
|
|
this.ClientSize = new System.Drawing.Size(300, 580);
|
|
|
|
|
//this.Visible = false;
|
|
|
|
|
|
|
|
|
|
ApplicationMode = AppMode.Clear;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnLoad(EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
base.OnLoad(e);
|
|
|
|
|
|
|
|
|
|
//ThreadControl.SetVisible(this, false);
|
|
|
|
|
ThreadControl.SetSize(this, 300, 580);
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-07 16:21:28 +00:00
|
|
|
|
//protected async override void OnShown(EventArgs e)
|
|
|
|
|
//{
|
|
|
|
|
// base.OnShown(e);
|
2021-09-07 11:32:24 +00:00
|
|
|
|
|
|
|
|
|
//ThreadControl.SetVisible(this, false);
|
|
|
|
|
|
|
|
|
|
//string jsonfigFilename = Path.ChangeExtension(Application.ExecutablePath, "jsonfig");
|
|
|
|
|
//if (File.Exists(jsonfigFilename))
|
|
|
|
|
//{
|
|
|
|
|
// await loadFile(jsonfigFilename);
|
|
|
|
|
//}
|
|
|
|
|
//else
|
|
|
|
|
//{
|
|
|
|
|
// this.CurrentSession = new LauncherSession();
|
|
|
|
|
|
|
|
|
|
// ThreadControl.SetVisible(this, true);
|
|
|
|
|
//}
|
2021-09-07 16:21:28 +00:00
|
|
|
|
//}
|
2021-09-07 11:32:24 +00:00
|
|
|
|
|
2021-09-07 16:21:28 +00:00
|
|
|
|
protected async override void OnClosing(CancelEventArgs e)
|
2021-09-07 11:32:24 +00:00
|
|
|
|
{
|
2021-09-07 16:21:28 +00:00
|
|
|
|
e.Cancel = true;
|
|
|
|
|
|
|
|
|
|
if (this.IsBusy)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.IsBusy = true;
|
|
|
|
|
|
|
|
|
|
Result result = await CloseFile();
|
|
|
|
|
if (!result.IsSuccess)
|
|
|
|
|
{
|
|
|
|
|
MessageBox.Show(result.Message, "Close", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
|
|
|
this.IsBusy = false;
|
|
|
|
|
|
|
|
|
|
e.Cancel = true;
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sessionFilename = null;
|
|
|
|
|
sessionPassword = null;
|
|
|
|
|
|
|
|
|
|
treeView1.Clear();
|
2021-09-07 11:32:24 +00:00
|
|
|
|
|
2021-09-07 16:21:28 +00:00
|
|
|
|
ApplicationMode = AppMode.Clear;
|
|
|
|
|
|
|
|
|
|
this.IsBusy = false;
|
|
|
|
|
|
|
|
|
|
Application.Exit();
|
2021-09-07 11:32:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public LauncherSession CurrentSession { get; set; } = null;
|
|
|
|
|
|
|
|
|
|
public bool IsBusy
|
|
|
|
|
{
|
|
|
|
|
get => isBusy;
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
treeView1.Enabled = !value;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected AppMode ApplicationMode
|
|
|
|
|
{
|
|
|
|
|
get => appMode;
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
appMode = value;
|
|
|
|
|
|
|
|
|
|
switch (value)
|
|
|
|
|
{
|
|
|
|
|
case AppMode.Clear:
|
|
|
|
|
ThreadControl.SetText(this, AppResource.app_name);
|
|
|
|
|
|
|
|
|
|
ThreadControl.SetEnable(closeToolStripMenuItem, false);
|
|
|
|
|
|
|
|
|
|
ThreadControl.SetEnable(saveToolStripMenuItem, false);
|
|
|
|
|
ThreadControl.SetEnable(saveAsToolStripMenuItem, false);
|
|
|
|
|
|
2021-09-07 16:21:28 +00:00
|
|
|
|
ThreadControl.SetEnable(findToolStripMenuItem, false);
|
|
|
|
|
|
2021-09-07 11:32:24 +00:00
|
|
|
|
ThreadControl.SetEnable(expandAllToolStripMenuItem, false);
|
|
|
|
|
ThreadControl.SetEnable(collapseAllToolStripMenuItem, false);
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
case AppMode.Open:
|
|
|
|
|
ThreadControl.SetEnable(closeToolStripMenuItem, true);
|
|
|
|
|
|
|
|
|
|
ThreadControl.SetEnable(saveToolStripMenuItem, true);
|
|
|
|
|
ThreadControl.SetEnable(saveAsToolStripMenuItem, true);
|
|
|
|
|
|
2021-09-07 16:21:28 +00:00
|
|
|
|
ThreadControl.SetEnable(findToolStripMenuItem, true);
|
|
|
|
|
|
2021-09-07 11:32:24 +00:00
|
|
|
|
ThreadControl.SetEnable(expandAllToolStripMenuItem, true);
|
|
|
|
|
ThreadControl.SetEnable(collapseAllToolStripMenuItem, true);
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
case AppMode.New:
|
|
|
|
|
ThreadControl.SetText(this, AppResource.app_name);
|
|
|
|
|
|
|
|
|
|
ThreadControl.SetEnable(closeToolStripMenuItem, true);
|
|
|
|
|
|
|
|
|
|
ThreadControl.SetEnable(saveToolStripMenuItem, false);
|
|
|
|
|
ThreadControl.SetEnable(saveAsToolStripMenuItem, true);
|
|
|
|
|
|
2021-09-07 16:21:28 +00:00
|
|
|
|
ThreadControl.SetEnable(findToolStripMenuItem, true);
|
|
|
|
|
|
2021-09-07 11:32:24 +00:00
|
|
|
|
ThreadControl.SetEnable(expandAllToolStripMenuItem, true);
|
|
|
|
|
ThreadControl.SetEnable(collapseAllToolStripMenuItem, true);
|
|
|
|
|
|
|
|
|
|
break;
|
2021-09-07 16:21:28 +00:00
|
|
|
|
default: break;
|
2021-09-07 11:32:24 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#region main menu
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// New
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="sender"></param>
|
|
|
|
|
/// <param name="e"></param>
|
2021-09-07 16:21:28 +00:00
|
|
|
|
private async void newToolStripMenuItem_Click(object sender, EventArgs e)
|
2021-09-07 11:32:24 +00:00
|
|
|
|
{
|
|
|
|
|
if (this.IsBusy)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.IsBusy = true;
|
|
|
|
|
|
2021-09-07 16:21:28 +00:00
|
|
|
|
Result result = await CloseFile();
|
|
|
|
|
if (!result.IsSuccess)
|
|
|
|
|
{
|
|
|
|
|
MessageBox.Show(result.Message, "New Session", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
|
|
|
this.IsBusy = false;
|
|
|
|
|
return;
|
|
|
|
|
}
|
2021-09-07 11:32:24 +00:00
|
|
|
|
|
|
|
|
|
sessionFilename = null;
|
|
|
|
|
sessionPassword = null;
|
|
|
|
|
|
|
|
|
|
treeView1.Clear("Untitled");
|
|
|
|
|
|
|
|
|
|
ApplicationMode = AppMode.New;
|
|
|
|
|
|
|
|
|
|
this.IsBusy = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Open file
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="sender"></param>
|
|
|
|
|
/// <param name="e"></param>
|
|
|
|
|
private async void openToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (this.IsBusy)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.IsBusy = true;
|
|
|
|
|
|
2021-09-07 16:21:28 +00:00
|
|
|
|
Result result = await CloseFile();
|
|
|
|
|
if (!result.IsSuccess)
|
|
|
|
|
{
|
|
|
|
|
MessageBox.Show(result.Message, "Open File", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
|
|
|
this.IsBusy = false;
|
|
|
|
|
return;
|
|
|
|
|
}
|
2021-09-07 11:32:24 +00:00
|
|
|
|
|
|
|
|
|
if (openFileDialog1.ShowDialog() == DialogResult.OK)
|
|
|
|
|
{
|
2021-09-07 16:21:28 +00:00
|
|
|
|
result = await LoadFile(openFileDialog1.FileName);
|
|
|
|
|
if (result.IsSuccess)
|
|
|
|
|
{
|
|
|
|
|
ThreadControl.SetText(this, Path.GetFileNameWithoutExtension(openFileDialog1.FileName) + " - " + AppResource.app_name);
|
|
|
|
|
}
|
|
|
|
|
else
|
2021-09-07 11:32:24 +00:00
|
|
|
|
{
|
|
|
|
|
MessageBox.Show(result.Message, "Open File", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.IsBusy = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Close
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="sender"></param>
|
|
|
|
|
/// <param name="e"></param>
|
2021-09-07 16:21:28 +00:00
|
|
|
|
private async void closeToolStripMenuItem_Click(object sender, EventArgs e)
|
2021-09-07 11:32:24 +00:00
|
|
|
|
{
|
|
|
|
|
if (this.IsBusy)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.IsBusy = true;
|
|
|
|
|
|
2021-09-07 16:21:28 +00:00
|
|
|
|
Result result = await CloseFile();
|
|
|
|
|
if (!result.IsSuccess)
|
|
|
|
|
{
|
|
|
|
|
MessageBox.Show(result.Message, "Close File", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
|
|
|
this.IsBusy = false;
|
|
|
|
|
return;
|
|
|
|
|
}
|
2021-09-07 11:32:24 +00:00
|
|
|
|
|
|
|
|
|
sessionFilename = null;
|
|
|
|
|
sessionPassword = null;
|
|
|
|
|
|
|
|
|
|
treeView1.Clear();
|
|
|
|
|
|
|
|
|
|
ApplicationMode = AppMode.Clear;
|
|
|
|
|
|
|
|
|
|
this.IsBusy = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Save
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="sender"></param>
|
|
|
|
|
/// <param name="e"></param>
|
|
|
|
|
private async void saveToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (this.IsBusy)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (ApplicationMode == AppMode.Clear)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.IsBusy = true;
|
|
|
|
|
|
|
|
|
|
Result result = await SaveFile(sessionFilename, sessionPassword);
|
|
|
|
|
if (result.IsSuccess)
|
|
|
|
|
{
|
|
|
|
|
MessageBox.Show("File saved!", "Save File", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
MessageBox.Show(result.Message, "Save File", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.IsBusy = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Save As
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="sender"></param>
|
|
|
|
|
/// <param name="e"></param>
|
|
|
|
|
private async void saveAsToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (this.IsBusy)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (ApplicationMode == AppMode.Clear)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.IsBusy = true;
|
|
|
|
|
|
|
|
|
|
if (saveFileDialog1.ShowDialog() == DialogResult.OK)
|
|
|
|
|
{
|
|
|
|
|
Result result = await SaveAsFile(saveFileDialog1.FileName);
|
|
|
|
|
if (result.IsSuccess)
|
|
|
|
|
{
|
|
|
|
|
MessageBox.Show("File saved!", "Save As File", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
MessageBox.Show(result.Message, "Save As File", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.IsBusy = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Exit
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="sender"></param>
|
|
|
|
|
/// <param name="e"></param>
|
|
|
|
|
private void exitToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (this.IsBusy)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.Close();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Find
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="sender"></param>
|
|
|
|
|
/// <param name="e"></param>
|
|
|
|
|
private void findToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
//tileContainer1.Add();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Expand all
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="sender"></param>
|
|
|
|
|
/// <param name="e"></param>
|
|
|
|
|
private void expandAllToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (this.IsBusy) return;
|
|
|
|
|
if (ApplicationMode == AppMode.Clear) return;
|
|
|
|
|
|
|
|
|
|
if (treeView1.SelectedNode == null)
|
|
|
|
|
{
|
|
|
|
|
treeView1.ExpandAll();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
treeView1.SelectedNode.ExpandAll();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Collapse all
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="sender"></param>
|
|
|
|
|
/// <param name="e"></param>
|
|
|
|
|
private void collapseAllToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (this.IsBusy) return;
|
|
|
|
|
if (ApplicationMode == AppMode.Clear) return;
|
|
|
|
|
|
|
|
|
|
if (treeView1.SelectedNode == null)
|
|
|
|
|
{
|
|
|
|
|
treeView1.CollapseAll();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
treeView1.SelectedNode.Collapse(false);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Always on top
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="sender"></param>
|
|
|
|
|
/// <param name="e"></param>
|
|
|
|
|
private void alwaysOnTopToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
this.TopMost = !this.TopMost;
|
|
|
|
|
|
|
|
|
|
alwaysOnTopToolStripMenuItem.Checked = this.TopMost;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Options
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="sender"></param>
|
|
|
|
|
/// <param name="e"></param>
|
|
|
|
|
private void optionsToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (this.IsBusy)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (optionsForm == null) optionsForm = new OptionsForm(this);
|
|
|
|
|
optionsForm.ShowDialog();
|
|
|
|
|
|
|
|
|
|
//invalidateHotKey();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// View help
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="sender"></param>
|
|
|
|
|
/// <param name="e"></param>
|
|
|
|
|
private void viewHelpToolStripMenuItem1_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
System.Diagnostics.Process.Start("https://www.hiimray.co.uk/software-bookmark-manager");
|
|
|
|
|
}
|
|
|
|
|
catch
|
|
|
|
|
{
|
|
|
|
|
// do nothing
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// About
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="sender"></param>
|
|
|
|
|
/// <param name="e"></param>
|
|
|
|
|
private void aboutToolStripMenuItem1_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
MessageBox.Show(Application.ProductName + " v" + Application.ProductVersion, "About", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-07 16:21:28 +00:00
|
|
|
|
#endregion
|
2021-09-07 11:32:24 +00:00
|
|
|
|
|
|
|
|
|
|
2021-09-07 16:21:28 +00:00
|
|
|
|
protected async Task<Result> CloseFile()
|
2021-09-07 11:32:24 +00:00
|
|
|
|
{
|
2021-09-07 16:21:28 +00:00
|
|
|
|
return await Task.Run<Result>(async () =>
|
2021-09-07 11:32:24 +00:00
|
|
|
|
{
|
2021-09-07 16:21:28 +00:00
|
|
|
|
if (this.ApplicationMode == AppMode.Clear)
|
2021-09-07 11:32:24 +00:00
|
|
|
|
{
|
2021-09-07 16:21:28 +00:00
|
|
|
|
return Result.Create(true);
|
2021-09-07 11:32:24 +00:00
|
|
|
|
}
|
2021-09-07 16:21:28 +00:00
|
|
|
|
|
|
|
|
|
if (!treeView1.HasChanged)
|
2021-09-07 11:32:24 +00:00
|
|
|
|
{
|
2021-09-07 16:21:28 +00:00
|
|
|
|
return Result.Create(true);
|
2021-09-07 11:32:24 +00:00
|
|
|
|
}
|
2021-09-07 16:21:28 +00:00
|
|
|
|
|
|
|
|
|
if (this.ApplicationMode == AppMode.New)
|
2021-09-07 11:32:24 +00:00
|
|
|
|
{
|
2021-09-07 16:21:28 +00:00
|
|
|
|
DialogResult response = MessageBox.Show("Save bookmarks", "Save?", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Question);
|
|
|
|
|
if (response == DialogResult.Yes)
|
2021-09-07 11:32:24 +00:00
|
|
|
|
{
|
2021-09-07 16:21:28 +00:00
|
|
|
|
Result result = await SaveAsFile(sessionFilename);
|
|
|
|
|
if (!result.IsSuccess)
|
|
|
|
|
{
|
|
|
|
|
return Result.Create(false, result.Message);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (response == DialogResult.Cancel)
|
|
|
|
|
{
|
|
|
|
|
return Result.Create(false, "User cancelled");
|
2021-09-07 11:32:24 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2021-09-07 16:21:28 +00:00
|
|
|
|
else if (this.ApplicationMode == AppMode.Open)
|
2021-09-07 11:32:24 +00:00
|
|
|
|
{
|
2021-09-07 16:21:28 +00:00
|
|
|
|
DialogResult response = MessageBox.Show("Save changes to open bookmarks", "Save?", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Question);
|
|
|
|
|
if (response == DialogResult.Yes)
|
|
|
|
|
{
|
|
|
|
|
Result result = await SaveFile(sessionFilename, sessionPassword);
|
|
|
|
|
if (!result.IsSuccess)
|
|
|
|
|
{
|
|
|
|
|
return Result.Create(false, result.Message);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (response == DialogResult.Cancel)
|
|
|
|
|
{
|
|
|
|
|
return Result.Create(false, "User cancelled");
|
|
|
|
|
}
|
2021-09-07 11:32:24 +00:00
|
|
|
|
}
|
2021-09-07 16:21:28 +00:00
|
|
|
|
|
|
|
|
|
return Result.Create(true);
|
|
|
|
|
});
|
2021-09-07 11:32:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected SupportedFileBase GetSupportedFileHandler(string filename)
|
|
|
|
|
{
|
|
|
|
|
SupportedFileBase rs = null;
|
|
|
|
|
|
|
|
|
|
List<Type> typeList = Assembly.GetExecutingAssembly().GetTypes().Where(x => x.IsSubclassOf(typeof(SupportedFileBase))).ToList();
|
|
|
|
|
foreach (Type t in typeList)
|
|
|
|
|
{
|
|
|
|
|
rs = (SupportedFileBase)Activator.CreateInstance(t);
|
|
|
|
|
if (rs == null)
|
|
|
|
|
{
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (rs.IsSupported(filename))
|
|
|
|
|
{
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
rs = null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return rs;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected async Task<Result> LoadFile(string filename)
|
|
|
|
|
{
|
|
|
|
|
return await Task.Run(() =>
|
|
|
|
|
{
|
|
|
|
|
sessionFilename = null;
|
|
|
|
|
sessionPassword = null;
|
|
|
|
|
ApplicationMode = AppMode.Clear;
|
|
|
|
|
|
|
|
|
|
treeView1.Clear();
|
|
|
|
|
|
|
|
|
|
if (string.IsNullOrWhiteSpace(filename))
|
|
|
|
|
{
|
|
|
|
|
return Result.Create(false, "Filename is empty");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!File.Exists(filename))
|
|
|
|
|
{
|
|
|
|
|
return Result.Create(false, "File not found");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sessionFilename = filename;
|
|
|
|
|
|
|
|
|
|
SupportedFileBase fileHandler = GetSupportedFileHandler(sessionFilename);
|
|
|
|
|
if (fileHandler == null)
|
|
|
|
|
{
|
|
|
|
|
return Result.Create(false, "Handler not found for this file type");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (fileHandler.IsEncrypted(sessionFilename))
|
|
|
|
|
{
|
|
|
|
|
PasswordForm passwordForm = new PasswordForm(this);
|
|
|
|
|
if (passwordForm.ShowDialog() == DialogResult.OK)
|
|
|
|
|
{
|
|
|
|
|
sessionPassword = passwordForm.Password;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Result result = fileHandler.Load(treeView1, sessionFilename, sessionPassword);
|
|
|
|
|
if (!result.IsSuccess)
|
|
|
|
|
{
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (treeView1.Nodes.Count > 0)
|
|
|
|
|
{
|
|
|
|
|
ThreadControl.Expand(treeView1.Nodes[0]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ApplicationMode = AppMode.Open;
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected async Task<Result> SaveFile(string filename, string password = null)
|
|
|
|
|
{
|
|
|
|
|
return await Task.Run(() =>
|
|
|
|
|
{
|
|
|
|
|
if (string.IsNullOrWhiteSpace(filename))
|
|
|
|
|
{
|
|
|
|
|
return Result.Create(false, "Filename is empty");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SupportedFileBase fileHandler = GetSupportedFileHandler(filename);
|
|
|
|
|
if (fileHandler == null)
|
|
|
|
|
{
|
|
|
|
|
return Result.Create(false, "Handler not found for this file type");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Result result = fileHandler.Save(treeView1, filename, password);
|
|
|
|
|
if (result.IsSuccess)
|
|
|
|
|
{
|
|
|
|
|
treeView1.SetNoChanges();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected async Task<Result> SaveAsFile(string filename)
|
|
|
|
|
{
|
|
|
|
|
return await Task.Run(() =>
|
|
|
|
|
{
|
|
|
|
|
if (string.IsNullOrWhiteSpace(filename))
|
|
|
|
|
{
|
|
|
|
|
return Result.Create(false, "Filename is empty");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SupportedFileBase fileHandler = GetSupportedFileHandler(filename);
|
|
|
|
|
if (fileHandler == null)
|
|
|
|
|
{
|
|
|
|
|
return Result.Create(false, "Handler not found for this file type");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
string password = null;
|
|
|
|
|
|
|
|
|
|
if (fileHandler.IsEncryptionSupported)
|
|
|
|
|
{
|
|
|
|
|
PasswordForm passwordForm = new PasswordForm(this);
|
|
|
|
|
if (passwordForm.ShowDialog() == DialogResult.OK)
|
|
|
|
|
{
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(passwordForm.Password))
|
|
|
|
|
{
|
|
|
|
|
password = passwordForm.Password;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Result result = fileHandler.Save(treeView1, filename, password);
|
|
|
|
|
if (result.IsSuccess)
|
|
|
|
|
{
|
|
|
|
|
treeView1.SetNoChanges();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|