PowerToys/Plugins/Wox.Plugin.Url/UrlPlugin.cs

122 lines
4.1 KiB
C#
Raw Normal View History

2014-05-24 16:29:56 +08:00
using System;
using System.Collections.Generic;
using System.Diagnostics;
2015-02-07 20:17:49 +08:00
using System.IO;
using System.Reflection;
2014-07-19 10:12:11 +08:00
using System.Text.RegularExpressions;
using System.Windows;
2014-05-24 16:29:56 +08:00
namespace Wox.Plugin.Url
2014-05-24 16:29:56 +08:00
{
2015-02-07 20:17:49 +08:00
public class UrlPlugin : IPlugin, IPluginI18n
2014-05-24 16:29:56 +08:00
{
2014-12-16 00:07:12 +08:00
//based on https://gist.github.com/dperini/729294
2015-02-07 20:17:49 +08:00
private const string urlPattern = "^" +
2014-12-16 00:07:12 +08:00
// protocol identifier
"(?:(?:https?|ftp)://|)" +
// user:pass authentication
"(?:\\S+(?::\\S*)?@)?" +
"(?:" +
// IP address exclusion
// private & local networks
"(?!(?:10|127)(?:\\.\\d{1,3}){3})" +
"(?!(?:169\\.254|192\\.168)(?:\\.\\d{1,3}){2})" +
"(?!172\\.(?:1[6-9]|2\\d|3[0-1])(?:\\.\\d{1,3}){2})" +
// IP address dotted notation octets
// excludes loopback network 0.0.0.0
// excludes reserved space >= 224.0.0.0
// excludes network & broacast addresses
// (first & last IP address of each class)
"(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])" +
"(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}" +
"(?:\\.(?:[1-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))" +
"|" +
// host name
"(?:(?:[a-z\\u00a1-\\uffff0-9]-*)*[a-z\\u00a1-\\uffff0-9]+)" +
// domain name
"(?:\\.(?:[a-z\\u00a1-\\uffff0-9]-*)*[a-z\\u00a1-\\uffff0-9]+)*" +
// TLD identifier
"(?:\\.(?:[a-z\\u00a1-\\uffff]{2,}))" +
")" +
// port number
"(?::\\d{2,5})?" +
// resource path
"(?:/\\S*)?" +
"$";
Regex reg = new Regex(urlPattern, RegexOptions.Compiled | RegexOptions.IgnoreCase);
2015-02-07 20:17:49 +08:00
private PluginInitContext context;
2014-07-19 10:12:11 +08:00
public List<Result> Query(Query query)
2014-05-24 16:29:56 +08:00
{
var raw = query.Search;
2014-12-16 00:07:12 +08:00
if (IsURL(raw))
2014-05-24 16:29:56 +08:00
{
return new List<Result>
{
new Result
{
Title = raw,
2015-02-07 20:17:49 +08:00
SubTitle = string.Format(context.API.GetTranslation("wox_plugin_url_open_url"),raw),
2014-07-19 10:12:11 +08:00
IcoPath = "Images/url.png",
2014-05-24 16:29:56 +08:00
Score = 8,
Action = _ =>
{
2014-07-19 10:12:11 +08:00
if (!raw.ToLower().StartsWith("http"))
{
raw = "http://" + raw;
}
try
{
Process.Start(raw);
return true;
}
catch(Exception ex)
{
2015-02-07 20:17:49 +08:00
context.API.ShowMsg(string.Format(context.API.GetTranslation("wox_plugin_url_canot_open_url"), raw));
2014-07-19 10:12:11 +08:00
return false;
}
2014-05-24 16:29:56 +08:00
}
}
};
}
return new List<Result>(0);
}
2014-12-16 00:07:12 +08:00
public bool IsURL(string raw)
{
raw = raw.ToLower();
if (reg.Match(raw).Value == raw) return true;
if (raw == "localhost" || raw.StartsWith("localhost:") ||
raw == "http://localhost" || raw.StartsWith("http://localhost:") ||
raw == "https://localhost" || raw.StartsWith("https://localhost:")
)
{
return true;
}
return false;
}
public void Init(PluginInitContext context)
{
2015-02-07 20:17:49 +08:00
this.context = context;
}
public string GetLanguagesFolder()
{
return Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), "Languages");
}
2015-02-07 20:17:49 +08:00
public string GetTranslatedPluginTitle()
{
return context.API.GetTranslation("wox_plugin_url_plugin_name");
}
public string GetTranslatedPluginDescription()
{
return context.API.GetTranslation("wox_plugin_url_plugin_description");
2014-05-24 16:29:56 +08:00
}
}
}