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