2015-12-28 02:46:50 +01:00
|
|
|
;;; idna.el --- translate non-ASCII domain names to ASCII
|
|
|
|
|
|
|
|
;; Copyright (C) 2015 Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
|
|
|
|
;; Keywords: mail, net
|
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
|
|
|
|
|
|
|
;; GNU Emacs 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 General Public License for more details.
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
|
|
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;; Written by looking at
|
|
|
|
;; http://stackoverflow.com/questions/183485/can-anyone-recommend-a-good-free-javascript-for-punycode-to-unicode-conversion
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
2015-12-28 02:55:52 +01:00
|
|
|
(require 'seq)
|
|
|
|
|
2015-12-28 02:46:50 +01:00
|
|
|
(defun idna-encode-string (string)
|
2015-12-28 02:55:52 +01:00
|
|
|
(let ((ascii (seq-filter (lambda (char)
|
|
|
|
(< char 128))
|
|
|
|
string)))
|
2015-12-28 02:57:40 +01:00
|
|
|
(if (= (length ascii) (length string))
|
|
|
|
string
|
|
|
|
(concat "xn--" ascii "-" (idna-encode-complex (length ascii) string)))))
|
2015-12-28 02:46:50 +01:00
|
|
|
|
|
|
|
(defconst idna-initial-n 128)
|
|
|
|
(defconst idna-initial-bias 72)
|
|
|
|
(defconst idna-base 36)
|
|
|
|
(defconst idna-damp 700)
|
|
|
|
(defconst idna-tmin 1)
|
|
|
|
(defconst idna-tmax 26)
|
|
|
|
(defconst idna-skew 28)
|
|
|
|
|
|
|
|
(defun idna-decode-digit (cp)
|
2015-12-28 02:55:52 +01:00
|
|
|
(cond
|
|
|
|
((< (- cp 48) 10)
|
|
|
|
(- cp 22))
|
|
|
|
((< (- cp 65) 26)
|
|
|
|
(- cp 65))
|
|
|
|
((< (- cp 97) 26)
|
|
|
|
(- cp 97))
|
|
|
|
(t
|
|
|
|
idna-base)))
|
2015-12-28 02:46:50 +01:00
|
|
|
|
|
|
|
;; 0-25 a-z
|
|
|
|
;; 26-36 0-9
|
|
|
|
(defun idna-encode-digit (d)
|
|
|
|
(if (< d 26)
|
|
|
|
(+ ?a d)
|
|
|
|
(+ ?0 (- d 26))))
|
|
|
|
|
|
|
|
(defun idna-adapt (delta num-points first-time)
|
|
|
|
(let ((delta (if first-time
|
|
|
|
(/ delta idna-damp)
|
|
|
|
(/ delta 2)))
|
|
|
|
(k 0))
|
|
|
|
(setq delta (+ delta (/ delta num-points)))
|
2015-12-28 02:55:52 +01:00
|
|
|
(while (> delta (/ (* (- idna-base idna-tmin)
|
|
|
|
idna-tmax)
|
|
|
|
2))
|
|
|
|
(setq delta (/ delta (- idna-base idna-tmin))
|
|
|
|
k (+ k idna-base)))
|
2015-12-28 02:46:50 +01:00
|
|
|
(+ k (/ (* (1+ (- idna-base idna-tmin)) delta)
|
|
|
|
(+ delta idna-skew)))))
|
|
|
|
|
2015-12-28 02:55:52 +01:00
|
|
|
(defun idna-encode-complex (insertion-points string)
|
2015-12-28 02:46:50 +01:00
|
|
|
(let ((n idna-initial-n)
|
|
|
|
(delta 0)
|
|
|
|
(bias idna-initial-bias)
|
|
|
|
(h insertion-points)
|
2015-12-28 02:55:52 +01:00
|
|
|
result m ijv q)
|
2015-12-28 02:46:50 +01:00
|
|
|
(while (< h (length string))
|
|
|
|
(setq ijv (cl-loop for char across string
|
|
|
|
when (>= char n)
|
|
|
|
minimize char))
|
|
|
|
(setq m ijv)
|
|
|
|
(setq delta (+ delta (* (- m n) (+ h 1)))
|
|
|
|
n m)
|
|
|
|
(cl-loop for char across string
|
|
|
|
when (< char n)
|
|
|
|
do (cl-incf delta)
|
|
|
|
when (= char ijv)
|
|
|
|
do (progn
|
|
|
|
(setq q delta)
|
|
|
|
(cl-loop with k = idna-base
|
2015-12-28 02:55:52 +01:00
|
|
|
for t1 = (cond
|
|
|
|
((<= k bias)
|
|
|
|
idna-tmin)
|
|
|
|
((>= k (+ bias idna-tmax))
|
|
|
|
idna-tmax)
|
|
|
|
(t
|
|
|
|
(- k bias)))
|
2015-12-28 02:46:50 +01:00
|
|
|
while (>= q t1)
|
|
|
|
do (push (idna-encode-digit
|
|
|
|
(+ t1 (mod (- q t1)
|
|
|
|
(- idna-base t1))))
|
|
|
|
result)
|
|
|
|
do (setq q (/ (- q t1) (- idna-base t1))
|
|
|
|
k (+ k idna-base)))
|
|
|
|
(push (idna-encode-digit q) result)
|
|
|
|
(setq bias (idna-adapt delta (+ h 1) (= h insertion-points))
|
|
|
|
delta 0
|
|
|
|
h (1+ h))))
|
|
|
|
(cl-incf delta)
|
|
|
|
(cl-incf n))
|
|
|
|
(nreverse result)))
|
|
|
|
|
|
|
|
(provide 'idna)
|
|
|
|
|
|
|
|
;;; shr.el ends here
|