LibraryConnector baseUrl regex

This commit is contained in:
glax 2023-09-19 19:22:49 +02:00
parent 48d312da0b
commit 4f4b0cb3a8

View File

@ -1,5 +1,6 @@
using System.Net;
using System.Net.Http.Headers;
using System.Text.RegularExpressions;
using Logging;
namespace Tranga.LibraryConnectors;
@ -20,7 +21,10 @@ public abstract class LibraryConnector : GlobalBase
protected LibraryConnector(GlobalBase clone, string baseUrl, string auth, LibraryType libraryType) : base(clone)
{
this.baseUrl = baseUrl;
Regex urlRex = new(@"https?:\/\/[0-9A-z\.]*");
if (!urlRex.IsMatch(baseUrl))
throw new ArgumentException("Base url does not match pattern");
this.baseUrl = urlRex.Match(baseUrl).Value;
this.auth = auth;
this.libraryType = libraryType;
}