]> code.delx.au - gnu-emacs/blob - lisp/url/url-util.el
Nuke arch-tags.
[gnu-emacs] / lisp / url / url-util.el
1 ;;; url-util.el --- Miscellaneous helper routines for URL library
2
3 ;; Copyright (C) 1996, 1997, 1998, 1999, 2001, 2004, 2005, 2006, 2007,
4 ;; 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
5
6 ;; Author: Bill Perry <wmperry@gnu.org>
7 ;; Keywords: comm, data, processes
8
9 ;; This file is part of GNU Emacs.
10 ;;
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
15
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23
24 ;;; Commentary:
25
26 ;;; Code:
27
28 (require 'url-parse)
29 (require 'url-vars)
30 (eval-when-compile (require 'cl))
31 (autoload 'timezone-parse-date "timezone")
32 (autoload 'timezone-make-date-arpa-standard "timezone")
33 (autoload 'mail-header-extract "mailheader")
34
35 (defvar url-parse-args-syntax-table
36 (copy-syntax-table emacs-lisp-mode-syntax-table)
37 "A syntax table for parsing sgml attributes.")
38
39 (modify-syntax-entry ?' "\"" url-parse-args-syntax-table)
40 (modify-syntax-entry ?` "\"" url-parse-args-syntax-table)
41 (modify-syntax-entry ?{ "(" url-parse-args-syntax-table)
42 (modify-syntax-entry ?} ")" url-parse-args-syntax-table)
43
44 ;;;###autoload
45 (defcustom url-debug nil
46 "What types of debug messages from the URL library to show.
47 Debug messages are logged to the *URL-DEBUG* buffer.
48
49 If t, all messages will be logged.
50 If a number, all messages will be logged, as well shown via `message'.
51 If a list, it is a list of the types of messages to be logged."
52 :type '(choice (const :tag "none" nil)
53 (const :tag "all" t)
54 (checklist :tag "custom"
55 (const :tag "HTTP" :value http)
56 (const :tag "DAV" :value dav)
57 (const :tag "General" :value retrieval)
58 (const :tag "Filename handlers" :value handlers)
59 (symbol :tag "Other")))
60 :group 'url-hairy)
61
62 ;;;###autoload
63 (defun url-debug (tag &rest args)
64 (if quit-flag
65 (error "Interrupted!"))
66 (if (or (eq url-debug t)
67 (numberp url-debug)
68 (and (listp url-debug) (memq tag url-debug)))
69 (with-current-buffer (get-buffer-create "*URL-DEBUG*")
70 (goto-char (point-max))
71 (insert (symbol-name tag) " -> " (apply 'format args) "\n")
72 (if (numberp url-debug)
73 (apply 'message args)))))
74
75 ;;;###autoload
76 (defun url-parse-args (str &optional nodowncase)
77 ;; Return an assoc list of attribute/value pairs from an RFC822-type string
78 (let (
79 name ; From name=
80 value ; its value
81 results ; Assoc list of results
82 name-pos ; Start of XXXX= position
83 val-pos ; Start of value position
84 st
85 nd
86 )
87 (save-excursion
88 (save-restriction
89 (set-buffer (get-buffer-create " *urlparse-temp*"))
90 (set-syntax-table url-parse-args-syntax-table)
91 (erase-buffer)
92 (insert str)
93 (setq st (point-min)
94 nd (point-max))
95 (set-syntax-table url-parse-args-syntax-table)
96 (narrow-to-region st nd)
97 (goto-char (point-min))
98 (while (not (eobp))
99 (skip-chars-forward "; \n\t")
100 (setq name-pos (point))
101 (skip-chars-forward "^ \n\t=;")
102 (if (not nodowncase)
103 (downcase-region name-pos (point)))
104 (setq name (buffer-substring name-pos (point)))
105 (skip-chars-forward " \t\n")
106 (if (/= (or (char-after (point)) 0) ?=) ; There is no value
107 (setq value nil)
108 (skip-chars-forward " \t\n=")
109 (setq val-pos (point)
110 value
111 (cond
112 ((or (= (or (char-after val-pos) 0) ?\")
113 (= (or (char-after val-pos) 0) ?'))
114 (buffer-substring (1+ val-pos)
115 (condition-case ()
116 (prog2
117 (forward-sexp 1)
118 (1- (point))
119 (skip-chars-forward "\""))
120 (error
121 (skip-chars-forward "^ \t\n")
122 (point)))))
123 (t
124 (buffer-substring val-pos
125 (progn
126 (skip-chars-forward "^;")
127 (skip-chars-backward " \t")
128 (point)))))))
129 (setq results (cons (cons name value) results))
130 (skip-chars-forward "; \n\t"))
131 results))))
132
133 ;;;###autoload
134 (defun url-insert-entities-in-string (string)
135 "Convert HTML markup-start characters to entity references in STRING.
136 Also replaces the \" character, so that the result may be safely used as
137 an attribute value in a tag. Returns a new string with the result of the
138 conversion. Replaces these characters as follows:
139 & ==> &amp;
140 < ==> &lt;
141 > ==> &gt;
142 \" ==> &quot;"
143 (if (string-match "[&<>\"]" string)
144 (with-current-buffer (get-buffer-create " *entity*")
145 (erase-buffer)
146 (buffer-disable-undo (current-buffer))
147 (insert string)
148 (goto-char (point-min))
149 (while (progn
150 (skip-chars-forward "^&<>\"")
151 (not (eobp)))
152 (insert (cdr (assq (char-after (point))
153 '((?\" . "&quot;")
154 (?& . "&amp;")
155 (?< . "&lt;")
156 (?> . "&gt;")))))
157 (delete-char 1))
158 (buffer-string))
159 string))
160
161 ;;;###autoload
162 (defun url-normalize-url (url)
163 "Return a 'normalized' version of URL.
164 Strips out default port numbers, etc."
165 (let (type data retval)
166 (setq data (url-generic-parse-url url)
167 type (url-type data))
168 (if (member type '("www" "about" "mailto" "info"))
169 (setq retval url)
170 ;; FIXME all this does, and all this function seems to do in
171 ;; most cases, is remove any trailing "#anchor" part of a url.
172 (setf (url-target data) nil)
173 (setq retval (url-recreate-url data)))
174 retval))
175
176 ;;;###autoload
177 (defun url-lazy-message (&rest args)
178 "Just like `message', but is a no-op if called more than once a second.
179 Will not do anything if `url-show-status' is nil."
180 (if (or (and url-current-object
181 (url-silent url-current-object))
182 (null url-show-status)
183 (active-minibuffer-window)
184 (= url-lazy-message-time
185 (setq url-lazy-message-time (nth 1 (current-time)))))
186 nil
187 (apply 'message args)))
188
189 ;;;###autoload
190 (defun url-get-normalized-date (&optional specified-time)
191 "Return a 'real' date string that most HTTP servers can understand."
192 (let ((system-time-locale "C"))
193 (format-time-string "%a, %d %b %Y %T GMT"
194 (or specified-time (current-time)) t)))
195
196 ;;;###autoload
197 (defun url-eat-trailing-space (x)
198 "Remove spaces/tabs at the end of a string."
199 (let ((y (1- (length x)))
200 (skip-chars (list ? ?\t ?\n)))
201 (while (and (>= y 0) (memq (aref x y) skip-chars))
202 (setq y (1- y)))
203 (substring x 0 (1+ y))))
204
205 ;;;###autoload
206 (defun url-strip-leading-spaces (x)
207 "Remove spaces at the front of a string."
208 (let ((y (1- (length x)))
209 (z 0)
210 (skip-chars (list ? ?\t ?\n)))
211 (while (and (<= z y) (memq (aref x z) skip-chars))
212 (setq z (1+ z)))
213 (substring x z nil)))
214
215 ;;;###autoload
216 (defun url-pretty-length (n)
217 (cond
218 ((< n 1024)
219 (format "%d bytes" n))
220 ((< n (* 1024 1024))
221 (format "%dk" (/ n 1024.0)))
222 (t
223 (format "%2.2fM" (/ n (* 1024 1024.0))))))
224
225 ;;;###autoload
226 (defun url-display-percentage (fmt perc &rest args)
227 (when (and url-show-status
228 (or (null url-current-object)
229 (not (url-silent url-current-object))))
230 (if (null fmt)
231 (if (fboundp 'clear-progress-display)
232 (clear-progress-display))
233 (if (and (fboundp 'progress-display) perc)
234 (apply 'progress-display fmt perc args)
235 (apply 'message fmt args)))))
236
237 ;;;###autoload
238 (defun url-percentage (x y)
239 (if (fboundp 'float)
240 (round (* 100 (/ x (float y))))
241 (/ (* x 100) y)))
242
243 ;;;###autoload
244 (defalias 'url-basepath 'url-file-directory)
245
246 ;;;###autoload
247 (defun url-file-directory (file)
248 "Return the directory part of FILE, for a URL."
249 (cond
250 ((null file) "")
251 ((string-match "\\?" file)
252 (file-name-directory (substring file 0 (match-beginning 0))))
253 (t (file-name-directory file))))
254
255 ;;;###autoload
256 (defun url-file-nondirectory (file)
257 "Return the nondirectory part of FILE, for a URL."
258 (cond
259 ((null file) "")
260 ((string-match "\\?" file)
261 (file-name-nondirectory (substring file 0 (match-beginning 0))))
262 (t (file-name-nondirectory file))))
263
264 ;;;###autoload
265 (defun url-parse-query-string (query &optional downcase allow-newlines)
266 (let (retval pairs cur key val)
267 (setq pairs (split-string query "&"))
268 (while pairs
269 (setq cur (car pairs)
270 pairs (cdr pairs))
271 (if (not (string-match "=" cur))
272 nil ; Grace
273 (setq key (url-unhex-string (substring cur 0 (match-beginning 0))
274 allow-newlines))
275 (setq val (url-unhex-string (substring cur (match-end 0) nil)
276 allow-newlines))
277 (if downcase
278 (setq key (downcase key)))
279 (setq cur (assoc key retval))
280 (if cur
281 (setcdr cur (cons val (cdr cur)))
282 (setq retval (cons (list key val) retval)))))
283 retval))
284
285 (defun url-unhex (x)
286 (if (> x ?9)
287 (if (>= x ?a)
288 (+ 10 (- x ?a))
289 (+ 10 (- x ?A)))
290 (- x ?0)))
291
292 ;; Fixme: Is this definition better, and does it ever matter?
293
294 ;; (defun url-unhex-string (str &optional allow-newlines)
295 ;; "Remove %XX, embedded spaces, etc in a url.
296 ;; If optional second argument ALLOW-NEWLINES is non-nil, then allow the
297 ;; decoding of carriage returns and line feeds in the string, which is normally
298 ;; forbidden in URL encoding."
299 ;; (setq str (or str ""))
300 ;; (setq str (replace-regexp-in-string "%[[:xdigit:]]\\{2\\}"
301 ;; (lambda (match)
302 ;; (string (string-to-number
303 ;; (substring match 1) 16)))
304 ;; str t t))
305 ;; (if allow-newlines
306 ;; (replace-regexp-in-string "[\n\r]" (lambda (match)
307 ;; (format "%%%.2X" (aref match 0)))
308 ;; str t t)
309 ;; str))
310
311 ;;;###autoload
312 (defun url-unhex-string (str &optional allow-newlines)
313 "Remove %XX embedded spaces, etc in a URL.
314 If optional second argument ALLOW-NEWLINES is non-nil, then allow the
315 decoding of carriage returns and line feeds in the string, which is normally
316 forbidden in URL encoding."
317 (setq str (or str ""))
318 (let ((tmp "")
319 (case-fold-search t))
320 (while (string-match "%[0-9a-f][0-9a-f]" str)
321 (let* ((start (match-beginning 0))
322 (ch1 (url-unhex (elt str (+ start 1))))
323 (code (+ (* 16 ch1)
324 (url-unhex (elt str (+ start 2))))))
325 (setq tmp (concat
326 tmp (substring str 0 start)
327 (cond
328 (allow-newlines
329 (byte-to-string code))
330 ((or (= code ?\n) (= code ?\r))
331 " ")
332 (t (byte-to-string code))))
333 str (substring str (match-end 0)))))
334 (setq tmp (concat tmp str))
335 tmp))
336
337 (defconst url-unreserved-chars
338 '(
339 ?a ?b ?c ?d ?e ?f ?g ?h ?i ?j ?k ?l ?m ?n ?o ?p ?q ?r ?s ?t ?u ?v ?w ?x ?y ?z
340 ?A ?B ?C ?D ?E ?F ?G ?H ?I ?J ?K ?L ?M ?N ?O ?P ?Q ?R ?S ?T ?U ?V ?W ?X ?Y ?Z
341 ?0 ?1 ?2 ?3 ?4 ?5 ?6 ?7 ?8 ?9
342 ?- ?_ ?. ?! ?~ ?* ?' ?\( ?\))
343 "A list of characters that are _NOT_ reserved in the URL spec.
344 This is taken from RFC 2396.")
345
346 ;;;###autoload
347 (defun url-hexify-string (string)
348 "Return a new string that is STRING URI-encoded.
349 First, STRING is converted to utf-8, if necessary. Then, for each
350 character in the utf-8 string, those found in `url-unreserved-chars'
351 are left as-is, all others are represented as a three-character
352 string: \"%\" followed by two lowercase hex digits."
353 ;; To go faster and avoid a lot of consing, we could do:
354 ;;
355 ;; (defconst url-hexify-table
356 ;; (let ((map (make-vector 256 nil)))
357 ;; (dotimes (byte 256) (aset map byte
358 ;; (if (memq byte url-unreserved-chars)
359 ;; (char-to-string byte)
360 ;; (format "%%%02x" byte))))
361 ;; map))
362 ;;
363 ;; (mapconcat (curry 'aref url-hexify-table) ...)
364 (mapconcat (lambda (byte)
365 (if (memq byte url-unreserved-chars)
366 (char-to-string byte)
367 (format "%%%02x" byte)))
368 (if (multibyte-string-p string)
369 (encode-coding-string string 'utf-8)
370 string)
371 ""))
372
373 ;;;###autoload
374 (defun url-file-extension (fname &optional x)
375 "Return the filename extension of FNAME.
376 If optional argument X is t, then return the basename
377 of the file with the extension stripped off."
378 (if (and fname
379 (setq fname (url-file-nondirectory fname))
380 (string-match "\\.[^./]+$" fname))
381 (if x (substring fname 0 (match-beginning 0))
382 (substring fname (match-beginning 0) nil))
383 ;;
384 ;; If fname has no extension, and x then return fname itself instead of
385 ;; nothing. When caching it allows the correct .hdr file to be produced
386 ;; for filenames without extension.
387 ;;
388 (if x
389 fname
390 "")))
391
392 ;;;###autoload
393 (defun url-truncate-url-for-viewing (url &optional width)
394 "Return a shortened version of URL that is WIDTH characters wide or less.
395 WIDTH defaults to the current frame width."
396 (let* ((fr-width (or width (frame-width)))
397 (str-width (length url))
398 (fname nil)
399 (modified 0)
400 (urlobj nil))
401 ;; The first thing that can go are the search strings
402 (if (and (>= str-width fr-width)
403 (string-match "?" url))
404 (setq url (concat (substring url 0 (match-beginning 0)) "?...")
405 str-width (length url)))
406 (if (< str-width fr-width)
407 nil ; Hey, we are done!
408 (setq urlobj (url-generic-parse-url url)
409 fname (url-filename urlobj)
410 fr-width (- fr-width 4))
411 (while (and (>= str-width fr-width)
412 (string-match "/" fname))
413 (setq fname (substring fname (match-end 0) nil)
414 modified (1+ modified))
415 (setf (url-filename urlobj) fname)
416 (setq url (url-recreate-url urlobj)
417 str-width (length url)))
418 (if (> modified 1)
419 (setq fname (concat "/.../" fname))
420 (setq fname (concat "/" fname)))
421 (setf (url-filename urlobj) fname)
422 (setq url (url-recreate-url urlobj)))
423 url))
424
425 ;;;###autoload
426 (defun url-view-url (&optional no-show)
427 "View the current document's URL.
428 Optional argument NO-SHOW means just return the URL, don't show it in
429 the minibuffer.
430
431 This uses `url-current-object', set locally to the buffer."
432 (interactive)
433 (if (not url-current-object)
434 nil
435 (if no-show
436 (url-recreate-url url-current-object)
437 (message "%s" (url-recreate-url url-current-object)))))
438
439 (defvar url-get-url-filename-chars "-%.?@a-zA-Z0-9()_/:~=&"
440 "Valid characters in a URL.")
441
442 (defun url-get-url-at-point (&optional pt)
443 "Get the URL closest to point, but don't change position.
444 Has a preference for looking backward when not directly on a symbol."
445 ;; Not at all perfect - point must be right in the name.
446 (save-excursion
447 (if pt (goto-char pt))
448 (let (start url)
449 (save-excursion
450 ;; first see if you're just past a filename
451 (if (not (eobp))
452 (if (looking-at "[] \t\n[{}()]") ; whitespace or some parens
453 (progn
454 (skip-chars-backward " \n\t\r({[]})")
455 (if (not (bobp))
456 (backward-char 1)))))
457 (if (and (char-after (point))
458 (string-match (concat "[" url-get-url-filename-chars "]")
459 (char-to-string (char-after (point)))))
460 (progn
461 (skip-chars-backward url-get-url-filename-chars)
462 (setq start (point))
463 (skip-chars-forward url-get-url-filename-chars))
464 (setq start (point)))
465 (setq url (buffer-substring-no-properties start (point))))
466 (if (and url (string-match "^(.*)\\.?$" url))
467 (setq url (match-string 1 url)))
468 (if (and url (string-match "^URL:" url))
469 (setq url (substring url 4 nil)))
470 (if (and url (string-match "\\.$" url))
471 (setq url (substring url 0 -1)))
472 (if (and url (string-match "^www\\." url))
473 (setq url (concat "http://" url)))
474 (if (and url (not (string-match url-nonrelative-link url)))
475 (setq url nil))
476 url)))
477
478 (defun url-generate-unique-filename (&optional fmt)
479 "Generate a unique filename in `url-temporary-directory'."
480 ;; This variable is obsolete, but so is this function.
481 (let ((tempdir (with-no-warnings url-temporary-directory)))
482 (if (not fmt)
483 (let ((base (format "url-tmp.%d" (user-real-uid)))
484 (fname "")
485 (x 0))
486 (setq fname (format "%s%d" base x))
487 (while (file-exists-p
488 (expand-file-name fname tempdir))
489 (setq x (1+ x)
490 fname (concat base (int-to-string x))))
491 (expand-file-name fname tempdir))
492 (let ((base (concat "url" (int-to-string (user-real-uid))))
493 (fname "")
494 (x 0))
495 (setq fname (format fmt (concat base (int-to-string x))))
496 (while (file-exists-p
497 (expand-file-name fname tempdir))
498 (setq x (1+ x)
499 fname (format fmt (concat base (int-to-string x)))))
500 (expand-file-name fname tempdir)))))
501 (make-obsolete 'url-generate-unique-filename 'make-temp-file "23.1")
502
503 (defun url-extract-mime-headers ()
504 "Set `url-current-mime-headers' in current buffer."
505 (save-excursion
506 (goto-char (point-min))
507 (unless url-current-mime-headers
508 (set (make-local-variable 'url-current-mime-headers)
509 (mail-header-extract)))))
510
511 (defun url-make-private-file (file)
512 "Make FILE only readable and writable by the current user.
513 Creates FILE and its parent directories if they do not exist."
514 (let ((dir (file-name-directory file)))
515 (when dir
516 ;; For historical reasons.
517 (make-directory dir t)))
518 ;; Based on doc-view-make-safe-dir.
519 (condition-case nil
520 (let ((umask (default-file-modes)))
521 (unwind-protect
522 (progn
523 (set-default-file-modes #o0600)
524 (with-temp-buffer
525 (write-region (point-min) (point-max)
526 file nil 'silent nil 'excl)))
527 (set-default-file-modes umask)))
528 (file-already-exists
529 (if (file-symlink-p file)
530 (error "Danger: `%s' is a symbolic link" file))
531 (set-file-modes file #o0600))))
532
533 (provide 'url-util)
534
535 ;;; url-util.el ends here