parent
c6ec632dd2
commit
8f0c872873
@ -0,0 +1,21 @@
|
|||||||
|
using System.Text.RegularExpressions;
|
||||||
|
|
||||||
|
namespace NzbDrone.Core.Parser
|
||||||
|
{
|
||||||
|
public static class UserAgentParser
|
||||||
|
{
|
||||||
|
private static readonly Regex AppSourceRegex = new Regex(@"(?<agent>.*)\/.*\(.*\)",
|
||||||
|
RegexOptions.IgnoreCase | RegexOptions.Compiled);
|
||||||
|
public static string ParseSource(string userAgent)
|
||||||
|
{
|
||||||
|
var match = AppSourceRegex.Match(userAgent);
|
||||||
|
|
||||||
|
if (match.Groups["agent"].Success)
|
||||||
|
{
|
||||||
|
return match.Groups["agent"].Value;
|
||||||
|
}
|
||||||
|
|
||||||
|
return "Other";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue