]> code.delx.au - gnu-emacs/blob - lisp/url/url-util.el
*** empty log message ***
[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 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 2, or (at your option)
14 ;; 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; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 ;; Boston, MA 02110-1301, USA.
25
26 ;;; Commentary:
27
28 ;;; Code:
29
30 (require 'url-parse)
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 (save-excursion
145 (set-buffer (get-buffer-create " *entity*"))
146 (erase-buffer)
147 (buffer-disable-undo (current-buffer))
148 (insert string)
149 (goto-char (point-min))
150 (while (progn
151 (skip-chars-forward "^&<>\"")
152 (not (eobp)))
153 (insert (cdr (assq (char-after (point))
154 '((?\" . "&quot;")
155 (?& . "&amp;")
156 (?< . "&lt;")
157 (?> . "&gt;")))))
158 (delete-char 1))
159 (buffer-string))
160 string))
161
162 ;;;###autoload
163 (defun url-normalize-url (url)
164 "Return a 'normalized' version of URL.
165 Strips out default port numbers, etc."
166 (let (type data grok retval)
167 (setq data (url-generic-parse-url url)
168 type (url-type data))
169 (if (member type '("www" "about" "mailto" "info"))
170 (setq retval url)
171 (url-set-target data nil)
172 (setq retval (url-recreate-url data)))
173 retval))
174
175 ;;;###autoload
176 (defun url-lazy-message (&rest args)
177 "Just like `message', but is a no-op if called more than once a second.
178 Will not do anything if `url-show-status' is nil."
179 (if (or (null url-show-status)
180 (active-minibuffer-window)
181 (= url-lazy-message-time
182 (setq url-lazy-message-time (nth 1 (current-time)))))
183 nil
184 (apply 'message args)))
185
186 ;;;###autoload
187 (defun url-get-normalized-date (&optional specified-time)
188 "Return a 'real' date string that most HTTP servers can understand."
189 (require 'timezone)
190 (let* ((raw (if specified-time (current-time-string specified-time)
191 (current-time-string)))
192 (gmt (timezone-make-date-arpa-standard raw
193 (nth 1 (current-time-zone))
194 "GMT"))
195 (parsed (timezone-parse-date gmt))
196 (day (cdr-safe (assoc (substring raw 0 3) url-weekday-alist)))
197 (year nil)
198 (month (car
199 (rassoc
200 (string-to-number (aref parsed 1)) url-monthabbrev-alist)))
201 )
202 (setq day (or (car-safe (rassoc day url-weekday-alist))
203 (substring raw 0 3))
204 year (aref parsed 0))
205 ;; This is needed for plexus servers, or the server will hang trying to
206 ;; parse the if-modified-since header. Hopefully, I can take this out
207 ;; soon.
208 (if (and year (> (length year) 2))
209 (setq year (substring year -2 nil)))
210
211 (concat day ", " (aref parsed 2) "-" month "-" year " "
212 (aref parsed 3) " " (or (aref parsed 4)
213 (concat "[" (nth 1 (current-time-zone))
214 "]")))))
215
216 ;;;###autoload
217 (defun url-eat-trailing-space (x)
218 "Remove spaces/tabs at the end of a string."
219 (let ((y (1- (length x)))
220 (skip-chars (list ? ?\t ?\n)))
221 (while (and (>= y 0) (memq (aref x y) skip-chars))
222 (setq y (1- y)))
223 (substring x 0 (1+ y))))
224
225 ;;;###autoload
226 (defun url-strip-leading-spaces (x)
227 "Remove spaces at the front of a string."
228 (let ((y (1- (length x)))
229 (z 0)
230 (skip-chars (list ? ?\t ?\n)))
231 (while (and (<= z y) (memq (aref x z) skip-chars))
232 (setq z (1+ z)))
233 (substring x z nil)))
234
235 ;;;###autoload
236 (defun url-pretty-length (n)
237 (cond
238 ((< n 1024)
239 (format "%d bytes" n))
240 ((< n (* 1024 1024))
241 (format "%dk" (/ n 1024.0)))
242 (t
243 (format "%2.2fM" (/ n (* 1024 1024.0))))))
244
245 ;;;###autoload
246 (defun url-display-percentage (fmt perc &rest args)
247 (if (null fmt)
248 (if (fboundp 'clear-progress-display)
249 (clear-progress-display))
250 (if (and (fboundp 'progress-display) perc)
251 (apply 'progress-display fmt perc args)
252 (apply 'message fmt args))))
253
254 ;;;###autoload
255 (defun url-percentage (x y)
256 (if (fboundp 'float)
257 (round (* 100 (/ x (float y))))
258 (/ (* x 100) y)))
259
260 ;;;###autoload
261 (defun url-basepath (file &optional x)
262 "Return the base pathname of FILE, or the actual filename if X is true."
263 (cond
264 ((null file) "")
265 ((string-match (eval-when-compile (regexp-quote "?")) file)
266 (if x
267 (file-name-nondirectory (substring file 0 (match-beginning 0)))
268 (file-name-directory (substring file 0 (match-beginning 0)))))
269 (x (file-name-nondirectory file))
270 (t (file-name-directory file))))
271
272 ;;;###autoload
273 (defun url-parse-query-string (query &optional downcase allow-newlines)
274 (let (retval pairs cur key val)
275 (setq pairs (split-string query "&"))
276 (while pairs
277 (setq cur (car pairs)
278 pairs (cdr pairs))
279 (if (not (string-match "=" cur))
280 nil ; Grace
281 (setq key (url-unhex-string (substring cur 0 (match-beginning 0))
282 allow-newlines))
283 (setq val (url-unhex-string (substring cur (match-end 0) nil)
284 allow-newlines))
285 (if downcase
286 (setq key (downcase key)))
287 (setq cur (assoc key retval))
288 (if cur
289 (setcdr cur (cons val (cdr cur)))
290 (setq retval (cons (list key val) retval)))))
291 retval))
292
293 (defun url-unhex (x)
294 (if (> x ?9)
295 (if (>= x ?a)
296 (+ 10 (- x ?a))
297 (+ 10 (- x ?A)))
298 (- x ?0)))
299
300 ;; Fixme: Is this definition better, and does it ever matter?
301
302 ;; (defun url-unhex-string (str &optional allow-newlines)
303 ;; "Remove %XX, embedded spaces, etc in a url.
304 ;; If optional second argument ALLOW-NEWLINES is non-nil, then allow the
305 ;; decoding of carriage returns and line feeds in the string, which is normally
306 ;; forbidden in URL encoding."
307 ;; (setq str (or str ""))
308 ;; (setq str (replace-regexp-in-string "%[[:xdigit:]]\\{2\\}"
309 ;; (lambda (match)
310 ;; (string (string-to-number
311 ;; (substring match 1) 16)))
312 ;; str t t))
313 ;; (if allow-newlines
314 ;; (replace-regexp-in-string "[\n\r]" (lambda (match)
315 ;; (format "%%%.2X" (aref match 0)))
316 ;; str t t)
317 ;; str))
318
319 ;;;###autoload
320 (defun url-unhex-string (str &optional allow-newlines)
321 "Remove %XX embedded spaces, etc in a url.
322 If optional second argument ALLOW-NEWLINES is non-nil, then allow the
323 decoding of carriage returns and line feeds in the string, which is normally
324 forbidden in URL encoding."
325 (setq str (or str ""))
326 (let ((tmp "")
327 (case-fold-search t))
328 (while (string-match "%[0-9a-f][0-9a-f]" str)
329 (let* ((start (match-beginning 0))
330 (ch1 (url-unhex (elt str (+ start 1))))
331 (code (+ (* 16 ch1)
332 (url-unhex (elt str (+ start 2))))))
333 (setq tmp (concat
334 tmp (substring str 0 start)
335 (cond
336 (allow-newlines
337 (char-to-string code))
338 ((or (= code ?\n) (= code ?\r))
339 " ")
340 (t (char-to-string code))))
341 str (substring str (match-end 0)))))
342 (setq tmp (concat tmp str))
343 tmp))
344
345 (defconst url-unreserved-chars
346 '(
347 ?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
348 ?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
349 ?0 ?1 ?2 ?3 ?4 ?5 ?6 ?7 ?8 ?9
350 ?- ?_ ?. ?! ?~ ?* ?' ?\( ?\))
351 "A list of characters that are _NOT_ reserved in the URL spec.
352 This is taken from RFC 2396.")
353
354 ;;;###autoload
355 (defun url-hexify-string (str)
356 "Escape characters in a string."
357 (mapconcat
358 (lambda (char)
359 ;; Fixme: use a char table instead.
360 (if (not (memq char url-unreserved-chars))
361 (if (> char 255)
362 (error "Hexifying multibyte character %s" str)
363 (format "%%%02X" char))
364 (char-to-string char)))
365 str ""))
366
367 ;;;###autoload
368 (defun url-file-extension (fname &optional x)
369 "Return the filename extension of FNAME.
370 If optional variable X is t,
371 then return the basename of the file with the extension stripped off."
372 (if (and fname
373 (setq fname (url-basepath fname t))
374 (string-match "\\.[^./]+$" fname))
375 (if x (substring fname 0 (match-beginning 0))
376 (substring fname (match-beginning 0) nil))
377 ;;
378 ;; If fname has no extension, and x then return fname itself instead of
379 ;; nothing. When caching it allows the correct .hdr file to be produced
380 ;; for filenames without extension.
381 ;;
382 (if x
383 fname
384 "")))
385
386 ;;;###autoload
387 (defun url-truncate-url-for-viewing (url &optional width)
388 "Return a shortened version of URL that is WIDTH characters or less wide.
389 WIDTH defaults to the current frame width."
390 (let* ((fr-width (or width (frame-width)))
391 (str-width (length url))
392 (tail (file-name-nondirectory url))
393 (fname nil)
394 (modified 0)
395 (urlobj nil))
396 ;; The first thing that can go are the search strings
397 (if (and (>= str-width fr-width)
398 (string-match "?" url))
399 (setq url (concat (substring url 0 (match-beginning 0)) "?...")
400 str-width (length url)
401 tail (file-name-nondirectory url)))
402 (if (< str-width fr-width)
403 nil ; Hey, we are done!
404 (setq urlobj (url-generic-parse-url url)
405 fname (url-filename urlobj)
406 fr-width (- fr-width 4))
407 (while (and (>= str-width fr-width)
408 (string-match "/" fname))
409 (setq fname (substring fname (match-end 0) nil)
410 modified (1+ modified))
411 (url-set-filename urlobj fname)
412 (setq url (url-recreate-url urlobj)
413 str-width (length url)))
414 (if (> modified 1)
415 (setq fname (concat "/.../" fname))
416 (setq fname (concat "/" fname)))
417 (url-set-filename urlobj fname)
418 (setq url (url-recreate-url urlobj)))
419 url))
420
421 ;;;###autoload
422 (defun url-view-url (&optional no-show)
423 "View the current document's URL.
424 Optional argument NO-SHOW means just return the URL, don't show it in
425 the minibuffer.
426
427 This uses `url-current-object', set locally to the buffer."
428 (interactive)
429 (if (not url-current-object)
430 nil
431 (if no-show
432 (url-recreate-url url-current-object)
433 (message "%s" (url-recreate-url url-current-object)))))
434
435 (eval-and-compile
436 (defvar url-get-url-filename-chars "-%.?@a-zA-Z0-9()_/:~=&"
437 "Valid characters in a URL")
438 )
439
440 (defun url-get-url-at-point (&optional pt)
441 "Get the URL closest to point, but don't change position.
442 Has a preference for looking backward when not directly on a symbol."
443 ;; Not at all perfect - point must be right in the name.
444 (save-excursion
445 (if pt (goto-char pt))
446 (let (start url)
447 (save-excursion
448 ;; first see if you're just past a filename
449 (if (not (eobp))
450 (if (looking-at "[] \t\n[{}()]") ; whitespace or some parens
451 (progn
452 (skip-chars-backward " \n\t\r({[]})")
453 (if (not (bobp))
454 (backward-char 1)))))
455 (if (and (char-after (point))
456 (string-match (eval-when-compile
457 (concat "[" url-get-url-filename-chars "]"))
458 (char-to-string (char-after (point)))))
459 (progn
460 (skip-chars-backward url-get-url-filename-chars)
461 (setq start (point))
462 (skip-chars-forward url-get-url-filename-chars))
463 (setq start (point)))
464 (setq url (buffer-substring-no-properties start (point))))
465 (if (and url (string-match "^(.*)\\.?$" url))
466 (setq url (match-string 1 url)))
467 (if (and url (string-match "^URL:" url))
468 (setq url (substring url 4 nil)))
469 (if (and url (string-match "\\.$" url))
470 (setq url (substring url 0 -1)))
471 (if (and url (string-match "^www\\." url))
472 (setq url (concat "http://" url)))
473 (if (and url (not (string-match url-nonrelative-link url)))
474 (setq url nil))
475 url)))
476
477 (defun url-generate-unique-filename (&optional fmt)
478 "Generate a unique filename in `url-temporary-directory'."
479 (if (not fmt)
480 (let ((base (format "url-tmp.%d" (user-real-uid)))
481 (fname "")
482 (x 0))
483 (setq fname (format "%s%d" base x))
484 (while (file-exists-p
485 (expand-file-name fname url-temporary-directory))
486 (setq x (1+ x)
487 fname (concat base (int-to-string x))))
488 (expand-file-name fname url-temporary-directory))
489 (let ((base (concat "url" (int-to-string (user-real-uid))))
490 (fname "")
491 (x 0))
492 (setq fname (format fmt (concat base (int-to-string x))))
493 (while (file-exists-p
494 (expand-file-name fname url-temporary-directory))
495 (setq x (1+ x)
496 fname (format fmt (concat base (int-to-string x)))))
497 (expand-file-name fname url-temporary-directory))))
498
499 (defun url-extract-mime-headers ()
500 "Set `url-current-mime-headers' in current buffer."
501 (save-excursion
502 (goto-char (point-min))
503 (unless url-current-mime-headers
504 (set (make-local-variable 'url-current-mime-headers)
505 (mail-header-extract)))))
506
507 (provide 'url-util)
508
509 ;; arch-tag: 24352abc-5a5a-412e-90cd-313b26bed5c9
510 ;;; url-util.el ends here