Create Heating Fitting Base
This commit is contained in:
parent
f4188b4269
commit
f7a0febddb
48
RhSolutions.QueryModifiers/Heating/HeatingFittingBase.cs
Normal file
48
RhSolutions.QueryModifiers/Heating/HeatingFittingBase.cs
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
using System.Text.RegularExpressions;
|
||||||
|
using Microsoft.AspNetCore.Http;
|
||||||
|
using Microsoft.AspNetCore.Http.Extensions;
|
||||||
|
|
||||||
|
namespace RhSolutions.QueryModifiers.Heating;
|
||||||
|
|
||||||
|
public abstract class HeatingFittingBase : IProductQueryModifier
|
||||||
|
{
|
||||||
|
protected static readonly Regex _diameter =
|
||||||
|
new(@"([\b\D]|^)(?<Diameter>16|20|25|32|40|50|63)([\b\D]|$)");
|
||||||
|
protected static readonly Regex _angle =
|
||||||
|
new(@"([\b\D]|^)(?<Angle>45|90)([\b\D]|$)");
|
||||||
|
protected static readonly Regex _thread =
|
||||||
|
new(@"(\D|^)(?<Thread>1\s+1/4|1\s+1/2|1/2|3/4|2|1)(\D|$)");
|
||||||
|
|
||||||
|
protected virtual string _title { get; } = string.Empty;
|
||||||
|
|
||||||
|
public bool TryQueryModify(IQueryCollection collection, out QueryString queryString)
|
||||||
|
{
|
||||||
|
queryString = QueryString.Empty;
|
||||||
|
string query = collection["query"].ToString();
|
||||||
|
if (string.IsNullOrEmpty(query))
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
string? result = BuildRhSolutionsName(query);
|
||||||
|
if (result != null)
|
||||||
|
{
|
||||||
|
QueryBuilder qb = new()
|
||||||
|
{
|
||||||
|
{ "query", result }
|
||||||
|
};
|
||||||
|
queryString = qb.ToQueryString();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected virtual string? BuildRhSolutionsName(string query)
|
||||||
|
{
|
||||||
|
var match = _diameter.Match(query);
|
||||||
|
if (match.Success)
|
||||||
|
{
|
||||||
|
return $"{_title} {match.Groups["Diameter"]}";
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,5 @@
|
|||||||
|
namespace RhSolutions.QueryModifiers.Heating;
|
||||||
|
public class SleeveQueryModifier : HeatingFittingBase
|
||||||
|
{
|
||||||
|
protected override string _title => "Монтажная гильза";
|
||||||
|
}
|
@ -1,38 +0,0 @@
|
|||||||
using System.Text.RegularExpressions;
|
|
||||||
using System.Text;
|
|
||||||
using Microsoft.AspNetCore.Http.Extensions;
|
|
||||||
using Microsoft.AspNetCore.Http;
|
|
||||||
|
|
||||||
namespace RhSolutions.QueryModifiers;
|
|
||||||
|
|
||||||
public class SleeveQueryModifier : IProductQueryModifier
|
|
||||||
{
|
|
||||||
private readonly string pattern = @"\b(16|20|25|32|40|50|63)\b";
|
|
||||||
|
|
||||||
public bool TryQueryModify(IQueryCollection collection, out QueryString queryString)
|
|
||||||
{
|
|
||||||
queryString = QueryString.Empty;
|
|
||||||
var query = collection["query"].ToString();
|
|
||||||
if (string.IsNullOrEmpty(query))
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
var matches = Regex.Matches(query, pattern);
|
|
||||||
StringBuilder sb = new();
|
|
||||||
sb.Append("Монтажная гильза ");
|
|
||||||
if (matches.Count > 0)
|
|
||||||
{
|
|
||||||
sb.Append(matches.First());
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
QueryBuilder qb = new()
|
|
||||||
{
|
|
||||||
{"query", sb.ToString() }
|
|
||||||
};
|
|
||||||
queryString = qb.ToQueryString();
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user