1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-13 06:20:48 -05:00
bitwarden/src/Icons/Services/DomainMappingService.cs
Henrik 8bac7f0145
[PM-14476] Avoid multiple lookups in dictionaries (#4973)
* Avoid multiple lookups in dictionaries

* Consistency in fallback to empty CollectionIds

* Readability at the cost of lines changed

* Readability

* Changes after running dotnet format
2025-06-02 11:18:28 -05:00

24 lines
617 B
C#

namespace Bit.Icons.Services;
public class DomainMappingService : IDomainMappingService
{
private readonly Dictionary<string, string> _map = new Dictionary<string, string>
{
["login.yahoo.com"] = "yahoo.com",
["accounts.google.com"] = "google.com",
["photo.walgreens.com"] = "walgreens.com",
["passport.yandex.com"] = "yandex.com",
// TODO: Add others here
};
public string MapDomain(string hostname)
{
if (_map.TryGetValue(hostname, out var mappedDomain))
{
return mappedDomain;
}
return hostname;
}
}