PowerToys/Wox.Plugin/SharedCommands/SearchWeb.cs

55 lines
1.9 KiB
C#
Raw Normal View History

2019-08-21 06:30:18 +08:00
using System;
2019-08-06 19:27:54 +08:00
using System.Diagnostics;
using System.IO;
using System.Linq;
2019-08-06 19:58:46 +08:00
namespace Wox.Plugin.SharedCommands
2019-08-06 19:27:54 +08:00
{
2019-08-06 19:58:46 +08:00
public static class SearchWeb
2019-08-06 19:27:54 +08:00
{
/// <summary>
/// Opens search in a new browser. If no browser path is passed in then Chrome is used.
2019-08-06 19:27:54 +08:00
/// Leave browser path blank to use Chrome.
/// </summary>
2019-08-06 19:58:46 +08:00
public static void NewBrowserWindow(this string url, string browserPath)
2019-08-06 19:27:54 +08:00
{
var browserExecutableName = browserPath?
.Split(new[] { Path.DirectorySeparatorChar }, StringSplitOptions.None)
.Last();
var browser = string.IsNullOrEmpty(browserExecutableName) ? "chrome" : browserPath;
// Internet Explorer will open url in new browser window, and does not take the --new-window parameter
var browserArguements = browserExecutableName == "iexplore.exe" ? "" : "--new-window ";
2019-08-06 19:27:54 +08:00
OpenWebSearch(browser, browserArguements, url);
}
/// <summary>
/// Opens search as a tab in the default browser chosen in Windows settings.
/// </summary>
public static void NewTabInBrowser(this string url, string browserPath)
{
var browserExecutableName = browserPath?
.Split(new[] { Path.DirectorySeparatorChar }, StringSplitOptions.None)
.Last();
var browser = string.IsNullOrEmpty(browserExecutableName) ? "" : browserPath;
OpenWebSearch(browser, "", url);
}
private static void OpenWebSearch(string chosenBrowser, string browserArguements, string url)
{
2019-08-21 06:30:18 +08:00
try
{
Process.Start(chosenBrowser, browserArguements + url);
2019-08-21 06:30:18 +08:00
}
catch (System.ComponentModel.Win32Exception)
{
Process.Start(url);
}
2019-08-06 19:27:54 +08:00
}
}
}