0
0
RhSolutions-Api/RhSolutions.QueryModifiers/DrinkingWaterHeatingFittings/DrinkingWaterHeatingFitting.cs

32 lines
918 B
C#
Raw Normal View History

2023-10-11 22:35:19 +03:00
using System.Text.RegularExpressions;
2023-10-13 15:04:27 +03:00
namespace RhSolutions.QueryModifiers.DrinkingWaterHeatingFittings;
2023-10-11 22:35:19 +03:00
2023-10-13 15:04:27 +03:00
public abstract class DrinkingWaterHeatingFitting : IProductQueryModifier
2023-10-11 22:35:19 +03:00
{
protected static readonly Regex _diameter =
2023-10-13 15:04:27 +03:00
new(@"([\b\D]|^)?(?<Diameter>16|20|25|32|40|50|63)([\b\D]|$)");
2023-10-11 22:35:19 +03:00
protected static readonly Regex _angle =
2023-10-13 15:04:27 +03:00
new(@"([\b\D])(?<Angle>45|90)([\b\D]|$)");
2023-10-11 22:35:19 +03:00
protected static readonly Regex _thread =
2023-10-13 15:04:27 +03:00
new(@"([\b\D])(?<Thread>1\s+1/4|1\s+1/2|1/2|3/4|2|1)([\b\D]|$)");
2023-10-11 22:35:19 +03:00
protected virtual string _title { get; } = string.Empty;
2023-10-20 22:35:44 +03:00
public bool TryQueryModify(string input, out string output)
2023-10-11 22:35:19 +03:00
{
2023-10-20 22:35:44 +03:00
output = BuildRhSolutionsName(input) ?? string.Empty;
return !string.IsNullOrEmpty(output);
2023-10-11 22:35:19 +03:00
}
protected virtual string? BuildRhSolutionsName(string query)
{
var match = _diameter.Match(query);
if (match.Success)
{
return $"{_title} {match.Groups["Diameter"]}";
}
return null;
}
2023-10-14 14:24:46 +03:00
}