mirror of
https://github.com/bitwarden/server.git
synced 2025-06-13 06:20:48 -05:00

* Avoid multiple lookups in dictionaries * Consistency in fallback to empty CollectionIds * Readability at the cost of lines changed * Readability * Changes after running dotnet format
24 lines
617 B
C#
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;
|
|
}
|
|
}
|