| 
									
										
										
										
											2023-05-07 19:53:21 +02:00
										 |  |  | // GoToSocial | 
					
						
							|  |  |  | // Copyright (C) GoToSocial Authors admin@gotosocial.org | 
					
						
							|  |  |  | // SPDX-License-Identifier: AGPL-3.0-or-later | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // This program is free software: you can redistribute it and/or modify | 
					
						
							|  |  |  | // it under the terms of the GNU Affero General Public License as published by | 
					
						
							|  |  |  | // the Free Software Foundation, either version 3 of the License, or | 
					
						
							|  |  |  | // (at your option) any later version. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  | // but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  | // GNU Affero General Public License for more details. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // You should have received a copy of the GNU Affero General Public License | 
					
						
							|  |  |  | // along with this program.  If not, see <http://www.gnu.org/licenses/>. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | package util | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2024-07-26 13:11:07 +02:00
										 |  |  | 	"net/url" | 
					
						
							| 
									
										
										
										
											2023-05-07 19:53:21 +02:00
										 |  |  | 	"strings" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	"golang.org/x/net/idna" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Punify converts the given domain to lowercase | 
					
						
							|  |  |  | // then to punycode (for international domain names). | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // Returns the resulting domain or an error if the | 
					
						
							|  |  |  | // punycode conversion fails. | 
					
						
							|  |  |  | func Punify(domain string) (string, error) { | 
					
						
							|  |  |  | 	domain = strings.ToLower(domain) | 
					
						
							|  |  |  | 	return idna.ToASCII(domain) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // DePunify converts the given punycode string | 
					
						
							|  |  |  | // to its original unicode representation (lowercased). | 
					
						
							|  |  |  | // Noop if the domain is (already) not puny. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // Returns an error if conversion fails. | 
					
						
							|  |  |  | func DePunify(domain string) (string, error) { | 
					
						
							|  |  |  | 	out, err := idna.ToUnicode(domain) | 
					
						
							|  |  |  | 	return strings.ToLower(out), err | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2024-07-26 13:11:07 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | // URIMatches returns true if the expected URI matches | 
					
						
							|  |  |  | // any of the given URIs, taking account of punycode. | 
					
						
							|  |  |  | func URIMatches(expect *url.URL, uris ...*url.URL) (bool, error) { | 
					
						
							|  |  |  | 	// Normalize expect to punycode. | 
					
						
							| 
									
										
										
										
											2024-08-13 09:01:50 +00:00
										 |  |  | 	expectStr, err := PunifyURIToStr(expect) | 
					
						
							| 
									
										
										
										
											2024-07-26 13:11:07 +02:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return false, err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for _, uri := range uris { | 
					
						
							| 
									
										
										
										
											2024-08-13 09:01:50 +00:00
										 |  |  | 		uriStr, err := PunifyURIToStr(uri) | 
					
						
							| 
									
										
										
										
											2024-07-26 13:11:07 +02:00
										 |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			return false, err | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-13 09:01:50 +00:00
										 |  |  | 		if uriStr == expectStr { | 
					
						
							| 
									
										
										
										
											2024-07-26 13:11:07 +02:00
										 |  |  | 			// Looks good. | 
					
						
							|  |  |  | 			return true, nil | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Didn't match. | 
					
						
							|  |  |  | 	return false, nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // PunifyURI returns a copy of the given URI | 
					
						
							|  |  |  | // with the 'host' part converted to punycode. | 
					
						
							|  |  |  | func PunifyURI(in *url.URL) (*url.URL, error) { | 
					
						
							| 
									
										
										
										
											2024-08-13 09:01:50 +00:00
										 |  |  | 	punyHost, err := Punify(in.Host) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return nil, err | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2024-07-26 13:11:07 +02:00
										 |  |  | 	out := new(url.URL) | 
					
						
							|  |  |  | 	*out = *in | 
					
						
							| 
									
										
										
										
											2024-08-13 09:01:50 +00:00
										 |  |  | 	out.Host = punyHost | 
					
						
							|  |  |  | 	return out, nil | 
					
						
							| 
									
										
										
										
											2024-07-26 13:11:07 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-13 09:01:50 +00:00
										 |  |  | // PunifyURIToStr returns given URI serialized | 
					
						
							|  |  |  | // with the 'host' part converted to punycode. | 
					
						
							|  |  |  | func PunifyURIToStr(in *url.URL) (string, error) { | 
					
						
							|  |  |  | 	punyHost, err := Punify(in.Host) | 
					
						
							| 
									
										
										
										
											2024-07-26 13:11:07 +02:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return "", err | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2024-08-13 09:01:50 +00:00
										 |  |  | 	oldHost := in.Host | 
					
						
							|  |  |  | 	in.Host = punyHost | 
					
						
							|  |  |  | 	str := in.String() | 
					
						
							|  |  |  | 	in.Host = oldHost | 
					
						
							|  |  |  | 	return str, nil | 
					
						
							| 
									
										
										
										
											2024-07-26 13:11:07 +02:00
										 |  |  | } |