Merge pull request #372 from RyanRory/punycode-for-ons

Make ONS with emoji work by punycode
pull/1061/head
Morgan Pretty 3 weeks ago committed by GitHub
commit bd70ada50b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -178,6 +178,7 @@
94367C452C6C828500814252 /* Localizable.xcstrings in Resources */ = {isa = PBXBuildFile; fileRef = 94367C422C6C828500814252 /* Localizable.xcstrings */; };
943C6D822B75E061004ACE64 /* Message+DisappearingMessages.swift in Sources */ = {isa = PBXBuildFile; fileRef = 943C6D812B75E061004ACE64 /* Message+DisappearingMessages.swift */; };
943C6D842B86B5F1004ACE64 /* Localization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 943C6D832B86B5F1004ACE64 /* Localization.swift */; };
946F5A732D5DA3AC00A5ADCE /* Punycode in Frameworks */ = {isa = PBXBuildFile; productRef = 946F5A722D5DA3AC00A5ADCE /* Punycode */; };
9473386E2BDF5F3E00B9E169 /* InfoPlist.xcstrings in Resources */ = {isa = PBXBuildFile; fileRef = 9473386D2BDF5F3E00B9E169 /* InfoPlist.xcstrings */; };
947AD6902C8968FF000B2730 /* Constants.swift in Sources */ = {isa = PBXBuildFile; fileRef = 947AD68F2C8968FF000B2730 /* Constants.swift */; };
94B3DC172AF8592200C88531 /* QuoteView_SwiftUI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 94B3DC162AF8592200C88531 /* QuoteView_SwiftUI.swift */; };
@ -2309,6 +2310,7 @@
buildActionMask = 2147483647;
files = (
C3C2A6C62553896A00C340D1 /* SessionUtilitiesKit.framework in Frameworks */,
946F5A732D5DA3AC00A5ADCE /* Punycode in Frameworks */,
FD6673F82D7021F200041530 /* SessionUtil in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
@ -5248,6 +5250,7 @@
FD6A39672C2D283A00762359 /* XCRemoteSwiftPackageReference "session-ios-yyimage" */,
FD6DA9D52D017F480092085A /* XCRemoteSwiftPackageReference "session-grdb-swift" */,
FD756BEE2D06686500BD7199 /* XCRemoteSwiftPackageReference "session-lucide" */,
946F5A712D5DA3AC00A5ADCE /* XCRemoteSwiftPackageReference "PunycodeSwift" */,
FD6673F42D7021E700041530 /* XCRemoteSwiftPackageReference "libsession-util-spm" */,
);
productRefGroup = D221A08A169C9E5E00537ABF /* Products */;
@ -10169,6 +10172,14 @@
/* End XCConfigurationList section */
/* Begin XCRemoteSwiftPackageReference section */
946F5A712D5DA3AC00A5ADCE /* XCRemoteSwiftPackageReference "PunycodeSwift" */ = {
isa = XCRemoteSwiftPackageReference;
repositoryURL = "https://github.com/gumob/PunycodeSwift.git";
requirement = {
kind = upToNextMajorVersion;
minimumVersion = 3.0.0;
};
};
FD6673F42D7021E700041530 /* XCRemoteSwiftPackageReference "libsession-util-spm" */ = {
isa = XCRemoteSwiftPackageReference;
repositoryURL = "https://github.com/session-foundation/libsession-util-spm";
@ -10276,6 +10287,11 @@
/* End XCRemoteSwiftPackageReference section */
/* Begin XCSwiftPackageProductDependency section */
946F5A722D5DA3AC00A5ADCE /* Punycode */ = {
isa = XCSwiftPackageProductDependency;
package = 946F5A712D5DA3AC00A5ADCE /* XCRemoteSwiftPackageReference "PunycodeSwift" */;
productName = Punycode;
};
FD0150512CA2446D005B08A1 /* Quick */ = {
isa = XCSwiftPackageProductDependency;
package = FD6A39302C2AD33E00762359 /* XCRemoteSwiftPackageReference "Quick" */;

@ -1,5 +1,5 @@
{
"originHash" : "688abd5f50453ed3433c8c6bf57bb60964d1c199902c2bff846544c6691cd18c",
"originHash" : "e3fdf2f44acd1f05dab295d0c9e3faf05f5e4461d512be1d5a77af42e0a25e48",
"pins" : [
{
"identity" : "cocoalumberjack",
@ -82,6 +82,15 @@
"version" : "5.2.0"
}
},
{
"identity" : "punycodeswift",
"kind" : "remoteSourceControl",
"location" : "https://github.com/gumob/PunycodeSwift.git",
"state" : {
"revision" : "30a462bdb4398ea835a3585472229e0d74b36ba5",
"version" : "3.0.0"
}
},
{
"identity" : "quick",
"kind" : "remoteSourceControl",

@ -1225,6 +1225,33 @@ SOFTWARE.
<key>Title</key>
<string>NVActivityIndicatorView</string>
</dict>
<dict>
<key>License</key>
<string>MIT License
Copyright (c) 2018 Gumob
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
</string>
<key>Title</key>
<string>PunycodeSwift</string>
</dict>
<dict>
<key>License</key>
<string>Apache License

File diff suppressed because it is too large Load Diff

@ -5,6 +5,7 @@
import Foundation
import Combine
import GRDB
import Punycode
import SessionUtilitiesKit
public final class SnodeAPI {
@ -226,7 +227,7 @@ public final class SnodeAPI {
let validationCount = 3
// The name must be lowercased
let onsName = onsName.lowercased()
let onsName = onsName.lowercased().idnaEncoded ?? onsName.lowercased()
// Hash the ONS name using BLAKE2b
guard

Loading…
Cancel
Save