mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-03 17:56:44 +02:00
## Summary of the Pull Request - #39572 updated check-spelling but ignored: > 🐣 Breaking Changes [Code Scanning action requires a Code Scanning Ruleset](https://github.com/check-spelling/check-spelling/wiki/Breaking-Change:-Code-Scanning-action-requires-a-Code-Scanning-Ruleset) If you use SARIF reporting, then instead of the workflow yielding an ❌ when it fails, it will rely on [github-advanced-security 🤖](https://github.com/apps/github-advanced-security) to report the failure. You will need to adjust your checks for PRs. This means that check-spelling hasn't been properly doing its job 😦. I'm sorry, I should have pushed a thing to this repo earlier,... Anyway, as with most refreshes, this comes with a number of fixes, some are fixes for typos that snuck in before the 0.0.25 upgrade, some are for things that snuck in after, some are based on new rules in spell-check-this, and some are hand written patterns based on running through this repository a few times. About the 🐣 **breaking change**: someone needs to create a ruleset for this repository (see [Code Scanning action requires a Code Scanning Ruleset: Sample ruleset ](https://github.com/check-spelling/check-spelling/wiki/Breaking-Change:-Code-Scanning-action-requires-a-Code-Scanning-Ruleset#sample-ruleset)). The alternative to adding a ruleset is to change the condition to not use sarif for this repository. In general, I think the github integration from sarif is prettier/more helpful, so I think that it's the better choice. You can see an example of it working in: - https://github.com/check-spelling-sandbox/PowerToys/pull/23 --------- Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> Co-authored-by: Mike Griese <migrie@microsoft.com> Co-authored-by: Dustin L. Howett <dustin@howett.net>
303 lines
11 KiB
C#
303 lines
11 KiB
C#
// Copyright (c) Microsoft Corporation
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Globalization;
|
|
using System.Linq;
|
|
using System.Text.RegularExpressions;
|
|
|
|
using UnitsNet;
|
|
using Wox.Plugin;
|
|
|
|
namespace Community.PowerToys.Run.Plugin.UnitConverter
|
|
{
|
|
public static class InputInterpreter
|
|
{
|
|
private static readonly string Pattern = @"(?<=\d)(?![,.\-])(?=[\D])|(?<=[\D])(?<![,.\-])(?=\d)";
|
|
|
|
public static string[] RegexSplitter(string[] split)
|
|
{
|
|
return Regex.Split(split[0], Pattern);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Separates input like: "1ft in cm" to "1 ft in cm"
|
|
/// </summary>
|
|
public static void InputSpaceInserter(ref string[] split)
|
|
{
|
|
if (split.Length != 3)
|
|
{
|
|
return;
|
|
}
|
|
|
|
string[] parseInputWithoutSpace = Regex.Split(split[0], Pattern);
|
|
|
|
if (parseInputWithoutSpace.Length > 1)
|
|
{
|
|
string[] firstEntryRemoved = split.Skip(1).ToArray();
|
|
string[] newSplit = new string[] { parseInputWithoutSpace[0], parseInputWithoutSpace[1] };
|
|
|
|
split = newSplit.Concat(firstEntryRemoved).ToArray();
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Replaces a split input array with shorthand feet/inch notation (1', 1'2", etc.) to 'x foot in cm'.
|
|
/// </summary>
|
|
public static void ShorthandFeetInchHandler(ref string[] split, CultureInfo culture)
|
|
{
|
|
if (!split[0].Contains('\'') && !split[0].Contains('\"'))
|
|
{
|
|
return;
|
|
}
|
|
|
|
// catches 1' || 1" || 1'2 || 1'2" in cm
|
|
// by converting it to "x foot in cm"
|
|
if (split.Length == 3)
|
|
{
|
|
string[] shortsplit = RegexSplitter(split);
|
|
|
|
switch (shortsplit.Length)
|
|
{
|
|
case 2:
|
|
// ex: 1' & 1"
|
|
if (shortsplit[1] == "\'")
|
|
{
|
|
string[] newInput = new string[] { shortsplit[0], "foot", split[1], split[2] };
|
|
split = newInput;
|
|
}
|
|
else if (shortsplit[1] == "\"")
|
|
{
|
|
string[] newInput = new string[] { shortsplit[0], "inch", split[1], split[2] };
|
|
split = newInput;
|
|
}
|
|
|
|
break;
|
|
|
|
case 3:
|
|
case 4:
|
|
// ex: 1'2 and 1'2"
|
|
if (shortsplit[1] == "\'")
|
|
{
|
|
bool isNegative = shortsplit[0].StartsWith('-');
|
|
if (isNegative)
|
|
{
|
|
shortsplit[0] = shortsplit[0].Remove(0, 1);
|
|
}
|
|
|
|
bool isFeet = double.TryParse(shortsplit[0], NumberStyles.AllowDecimalPoint, culture, out double feet);
|
|
bool isInches = double.TryParse(shortsplit[2], NumberStyles.AllowDecimalPoint, culture, out double inches);
|
|
|
|
if (!isFeet || !isInches)
|
|
{
|
|
// at least one could not be parsed correctly
|
|
break;
|
|
}
|
|
|
|
double convertedTotalInFeet = Length.FromFeetInches(feet, inches).Feet;
|
|
if (isNegative)
|
|
{
|
|
convertedTotalInFeet *= -1;
|
|
}
|
|
|
|
string[] newInput = new string[] { convertedTotalInFeet.ToString(culture), "foot", split[1], split[2] };
|
|
split = newInput;
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Adds degree prefixes to degree units for shorthand notation. E.g. '10 c in fahrenheit' becomes '10 °C in DegreeFahrenheit'.
|
|
/// </summary>
|
|
public static void DegreePrefixer(ref string[] split)
|
|
{
|
|
switch (split[1].ToLower(CultureInfo.CurrentCulture))
|
|
{
|
|
case "celsius":
|
|
split[1] = "DegreeCelsius";
|
|
break;
|
|
|
|
case "fahrenheit":
|
|
split[1] = "DegreeFahrenheit";
|
|
break;
|
|
|
|
case "c":
|
|
split[1] = "°C";
|
|
break;
|
|
|
|
case "f":
|
|
split[1] = "°F";
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
|
|
switch (split[3].ToLower(CultureInfo.CurrentCulture))
|
|
{
|
|
case "celsius":
|
|
split[3] = "DegreeCelsius";
|
|
break;
|
|
|
|
case "fahrenheit":
|
|
split[3] = "DegreeFahrenheit";
|
|
break;
|
|
|
|
case "c":
|
|
split[3] = "°C";
|
|
break;
|
|
|
|
case "f":
|
|
split[3] = "°F";
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Converts spelling "kph" to "km/h"
|
|
/// </summary>
|
|
public static void KPHHandler(ref string[] split)
|
|
{
|
|
split[1] = split[1].Replace("cph", "cm/h", System.StringComparison.CurrentCultureIgnoreCase);
|
|
split[1] = split[1].Replace("kph", "km/h", System.StringComparison.CurrentCultureIgnoreCase);
|
|
split[1] = split[1].Replace("kmph", "km/h", System.StringComparison.CurrentCultureIgnoreCase);
|
|
split[1] = split[1].Replace("cmph", "cm/h", System.StringComparison.CurrentCultureIgnoreCase);
|
|
|
|
split[3] = split[3].Replace("cph", "cm/h", System.StringComparison.CurrentCultureIgnoreCase);
|
|
split[3] = split[3].Replace("kph", "km/h", System.StringComparison.CurrentCultureIgnoreCase);
|
|
split[3] = split[3].Replace("kmph", "km/h", System.StringComparison.CurrentCultureIgnoreCase);
|
|
split[3] = split[3].Replace("cmph", "cm/h", System.StringComparison.CurrentCultureIgnoreCase);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Converts spelling "metre" to "meter", also for centimetre and other variants
|
|
/// </summary>
|
|
public static void MetreToMeter(ref string[] split)
|
|
{
|
|
split[1] = split[1].Replace("metre", "meter", System.StringComparison.CurrentCultureIgnoreCase);
|
|
split[3] = split[3].Replace("metre", "meter", System.StringComparison.CurrentCultureIgnoreCase);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Choose "UsGallon" or "ImperialGallon" according to current culture when the input contains "gal" or "gallon".
|
|
/// </summary>
|
|
public static void GallonHandler(ref string[] split, CultureInfo culture)
|
|
{
|
|
HashSet<string> britishCultureNames = new HashSet<string>() { "en-AI", "en-VG", "en-GB", "en-KY", "en-MS", "en-AG", "en-DM", "en-GD", "en-KN", "en-LC", "en-VC", "en-IE", "en-GY", "en-AE" };
|
|
if (string.Equals(split[1], "gal", StringComparison.OrdinalIgnoreCase) ||
|
|
string.Equals(split[1], "gallon", StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
if (britishCultureNames.Contains(culture.Name))
|
|
{
|
|
split[1] = "ImperialGallon";
|
|
}
|
|
else
|
|
{
|
|
split[1] = "UsGallon";
|
|
}
|
|
}
|
|
|
|
if (string.Equals(split[3], "gal", StringComparison.OrdinalIgnoreCase) ||
|
|
string.Equals(split[3], "gallon", StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
if (britishCultureNames.Contains(culture.Name))
|
|
{
|
|
split[3] = "ImperialGallon";
|
|
}
|
|
else
|
|
{
|
|
split[3] = "UsGallon";
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Choose "UsOunce" or "ImperialOunce" according to current culture when the input contains "o.z", "o.z.", "oz" or "ounce".
|
|
/// </summary>
|
|
public static void OunceHandler(ref string[] split, CultureInfo culture)
|
|
{
|
|
HashSet<string> britishCultureNames = new HashSet<string>() { "en-AI", "en-VG", "en-GB", "en-KY", "en-MS", "en-AG", "en-DM", "en-GD", "en-KN", "en-LC", "en-VC", "en-IE", "en-GY", "en-AE" };
|
|
if (string.Equals(split[1], "o.z", StringComparison.OrdinalIgnoreCase) ||
|
|
string.Equals(split[1], "ounce", StringComparison.OrdinalIgnoreCase) ||
|
|
string.Equals(split[1], "o.z.", StringComparison.OrdinalIgnoreCase) ||
|
|
string.Equals(split[1], "oz", StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
if (britishCultureNames.Contains(culture.Name))
|
|
{
|
|
split[1] = "ImperialOunce";
|
|
}
|
|
else
|
|
{
|
|
split[1] = "UsOunce";
|
|
}
|
|
}
|
|
|
|
if (string.Equals(split[3], "o.z", StringComparison.OrdinalIgnoreCase) ||
|
|
string.Equals(split[3], "ounce", StringComparison.OrdinalIgnoreCase) ||
|
|
string.Equals(split[3], "o.z.", StringComparison.OrdinalIgnoreCase) ||
|
|
string.Equals(split[3], "oz", StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
if (britishCultureNames.Contains(culture.Name))
|
|
{
|
|
split[3] = "ImperialOunce";
|
|
}
|
|
else
|
|
{
|
|
split[3] = "UsOunce";
|
|
}
|
|
}
|
|
}
|
|
|
|
public static void SquareHandler(ref string[] split)
|
|
{
|
|
split[1] = Regex.Replace(split[1], "sq(s|μm|mm|cm|dm|m|km|mil|in|ft|yd|mi|nmi)", "$1²");
|
|
split[3] = Regex.Replace(split[3], "sq(s|μm|mm|cm|dm|m|km|mil|in|ft|yd|mi|nmi)", "$1²");
|
|
}
|
|
|
|
public static ConvertModel Parse(Query query)
|
|
{
|
|
string[] split = query.Search.Split(' ');
|
|
|
|
InputInterpreter.ShorthandFeetInchHandler(ref split, CultureInfo.CurrentCulture);
|
|
InputInterpreter.InputSpaceInserter(ref split);
|
|
|
|
if (split.Length != 4)
|
|
{
|
|
// deny any other queries than:
|
|
// 10 ft in cm
|
|
// 10 ft to cm
|
|
return null;
|
|
}
|
|
|
|
InputInterpreter.DegreePrefixer(ref split);
|
|
InputInterpreter.MetreToMeter(ref split);
|
|
InputInterpreter.KPHHandler(ref split);
|
|
InputInterpreter.GallonHandler(ref split, CultureInfo.CurrentCulture);
|
|
InputInterpreter.OunceHandler(ref split, CultureInfo.CurrentCulture);
|
|
InputInterpreter.SquareHandler(ref split);
|
|
if (!double.TryParse(split[0], out double value))
|
|
{
|
|
return null;
|
|
}
|
|
|
|
return new ConvertModel()
|
|
{
|
|
Value = value,
|
|
FromUnit = split[1],
|
|
ToUnit = split[3],
|
|
};
|
|
}
|
|
}
|
|
}
|