diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /dom/media/webrtc/PeerIdentity.cpp | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'dom/media/webrtc/PeerIdentity.cpp')
-rw-r--r-- | dom/media/webrtc/PeerIdentity.cpp | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/dom/media/webrtc/PeerIdentity.cpp b/dom/media/webrtc/PeerIdentity.cpp new file mode 100644 index 000000000..4b4abea3b --- /dev/null +++ b/dom/media/webrtc/PeerIdentity.cpp @@ -0,0 +1,86 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- + * vim: sw=2 ts=2 sts=2 expandtab + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include "PeerIdentity.h" + +#include "mozilla/DebugOnly.h" +#include "nsCOMPtr.h" +#include "nsIIDNService.h" +#include "nsNetCID.h" +#include "nsServiceManagerUtils.h" + +namespace mozilla { + +bool +PeerIdentity::Equals(const PeerIdentity& aOther) const +{ + return Equals(aOther.mPeerIdentity); +} + +bool +PeerIdentity::Equals(const nsAString& aOtherString) const +{ + nsString user; + GetUser(mPeerIdentity, user); + nsString otherUser; + GetUser(aOtherString, otherUser); + if (user != otherUser) { + return false; + } + + nsString host; + GetHost(mPeerIdentity, host); + nsString otherHost; + GetHost(aOtherString, otherHost); + + nsresult rv; + nsCOMPtr<nsIIDNService> idnService + = do_GetService("@mozilla.org/network/idn-service;1", &rv); + if (NS_WARN_IF(NS_FAILED(rv))) { + return host == otherHost; + } + + nsCString normHost; + GetNormalizedHost(idnService, host, normHost); + nsCString normOtherHost; + GetNormalizedHost(idnService, otherHost, normOtherHost); + return normHost == normOtherHost; +} + +/* static */ void +PeerIdentity::GetUser(const nsAString& aPeerIdentity, nsAString& aUser) +{ + int32_t at = aPeerIdentity.FindChar('@'); + if (at >= 0) { + aUser = Substring(aPeerIdentity, 0, at); + } else { + aUser.Truncate(); + } +} + +/* static */ void +PeerIdentity::GetHost(const nsAString& aPeerIdentity, nsAString& aHost) +{ + int32_t at = aPeerIdentity.FindChar('@'); + if (at >= 0) { + aHost = Substring(aPeerIdentity, at + 1); + } else { + aHost = aPeerIdentity; + } +} + +/* static */ void +PeerIdentity::GetNormalizedHost(const nsCOMPtr<nsIIDNService>& aIdnService, + const nsAString& aHost, + nsACString& aNormalizedHost) +{ + const nsCString chost = NS_ConvertUTF16toUTF8(aHost); + DebugOnly<nsresult> rv = aIdnService->ConvertUTF8toACE(chost, aNormalizedHost); + NS_WARNING_ASSERTION(NS_SUCCEEDED(rv), + "Failed to convert UTF-8 host to ASCII"); +} + +} /* namespace mozilla */ |