]> code.delx.au - gnu-emacs/blob - lisp/url/url-util.el
109d88d5ebca4ba37010b4d5196f298cb9ec6b4c
[gnu-emacs] / lisp / url / url-util.el
1 ;;; url-util.el --- Miscellaneous helper routines for URL library
2 ;; Author: Bill Perry <wmperry@gnu.org>
3 ;; Created: $Date: 2004/04/04 01:21:46 $
4 ;; Version: $Revision: 1.1.1.1 $
5 ;; Keywords: comm, data, processes
6
7 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
8 ;;; Copyright (c) 1993 - 1996 by William M. Perry <wmperry@cs.indiana.edu>
9 ;;; Copyright (c) 1996, 97, 98, 99, 2001 Free Software Foundation, Inc.
10 ;;;
11 ;;; This file is part of GNU Emacs.
12 ;;;
13 ;;; GNU Emacs is free software; you can redistribute it and/or modify
14 ;;; it under the terms of the GNU General Public License as published by
15 ;;; the Free Software Foundation; either version 2, or (at your option)
16 ;;; any later version.
17 ;;;
18 ;;; GNU Emacs is distributed in the hope that it will be useful,
19 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;;; GNU General Public License for more details.
22 ;;;
23 ;;; You should have received a copy of the GNU General Public License
24 ;;; along with GNU Emacs; see the file COPYING. If not, write to the
25 ;;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
26 ;;; Boston, MA 02111-1307, USA.
27 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
28
29 (require 'url-parse)
30 (autoload 'timezone-parse-date "timezone")
31 (autoload 'timezone-make-date-arpa-standard "timezone")
32
33 (defvar url-parse-args-syntax-table
34 (copy-syntax-table emacs-lisp-mode-syntax-table)
35 "A syntax table for parsing sgml attributes.")
36
37 (modify-syntax-entry ?' "\"" url-parse-args-syntax-table)
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
42 ;;;###autoload
43 (defcustom url-debug nil
44 "*What types of debug messages from the URL library to show.
45 Debug messages are logged to the *URL-DEBUG* buffer.
46
47 If t, all messages will be logged.
48 If a number, all messages will be logged, as well shown via `message'.
49 If a list, it is a list of the types of messages to be logged."
50 :type '(choice (const :tag "none" nil)
51 (const :tag "all" t)
52 (checklist :tag "custom"
53 (const :tag "HTTP" :value http)
54 (const :tag "DAV" :value dav)
55 (const :tag "General" :value retrieval)
56 (const :tag "Filename handlers" :value handlers)
57 (symbol :tag "Other")))
58 :group 'url-hairy)
59
60 ;;;###autoload
61 (defun url-debug (tag &rest args)
62 (if quit-flag
63 (error "Interrupted!"))
64 (if (or (eq url-debug t)
65 (numberp url-debug)
66 (and (listp url-debug) (memq tag url-debug)))
67 (save-excursion
68 (set-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 grok 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 (url-set-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 (require 'timezone)
189 (let* ((raw (if specified-time (current-time-string specified-time)
190 (current-time-string)))
191 (gmt (timezone-make-date-arpa-standard raw
192 (nth 1 (current-time-zone))
193 "GMT"))
194 (parsed (timezone-parse-date gmt))
195 (day (cdr-safe (assoc (substring raw 0 3) weekday-alist)))
196 (year nil)
197 (month (car
198 (rassoc
199 (string-to-int (aref parsed 1)) monthabbrev-alist)))
200 )
201 (setq day (or (car-safe (rassoc day weekday-alist))
202 (substring raw 0 3))
203 year (aref parsed 0))
204 ;; This is needed for plexus servers, or the server will hang trying to
205 ;; parse the if-modified-since header. Hopefully, I can take this out
206 ;; soon.
207 (if (and year (> (length year) 2))
208 (setq year (substring year -2 nil)))
209
210 (concat day ", " (aref parsed 2) "-" month "-" year " "
211 (aref parsed 3) " " (or (aref parsed 4)
212 (concat "[" (nth 1 (current-time-zone))
213 "]")))))
214
215 ;;;###autoload
216 (defun url-eat-trailing-space (x)
217 "Remove spaces/tabs at the end of a string."
218 (let ((y (1- (length x)))
219 (skip-chars (list ? ?\t ?\n)))
220 (while (and (>= y 0) (memq (aref x y) skip-chars))
221 (setq y (1- y)))
222 (substring x 0 (1+ y))))
223
224 ;;;###autoload
225 (defun url-strip-leading-spaces (x)
226 "Remove spaces at the front of a string."
227 (let ((y (1- (length x)))
228 (z 0)
229 (skip-chars (list ? ?\t ?\n)))
230 (while (and (<= z y) (memq (aref x z) skip-chars))
231 (setq z (1+ z)))
232 (substring x z nil)))
233
234 ;;;###autoload
235 (defun url-pretty-length (n)
236 (cond
237 ((< n 1024)
238 (format "%d bytes" n))
239 ((< n (* 1024 1024))
240 (format "%dk" (/ n 1024.0)))
241 (t
242 (format "%2.2fM" (/ n (* 1024 1024.0))))))
243
244 ;;;###autoload
245 (defun url-display-percentage (fmt perc &rest args)
246 (if (null fmt)
247 (if (fboundp 'clear-progress-display)
248 (clear-progress-display))
249 (if (and (fboundp 'progress-display) perc)
250 (apply 'progress-display fmt perc args)
251 (apply 'message fmt args))))
252
253 ;;;###autoload
254 (defun url-percentage (x y)
255 (if (fboundp 'float)
256 (round (* 100 (/ x (float y))))
257 (/ (* x 100) y)))
258
259 ;;;###autoload
260 (defun url-basepath (file &optional x)
261 "Return the base pathname of FILE, or the actual filename if X is true."
262 (cond
263 ((null file) "")
264 ((string-match (eval-when-compile (regexp-quote "?")) file)
265 (if x
266 (file-name-nondirectory (substring file 0 (match-beginning 0)))
267 (file-name-directory (substring file 0 (match-beginning 0)))))
268 (x (file-name-nondirectory file))
269 (t (file-name-directory file))))
270
271 ;;;###autoload
272 (defun url-parse-query-string (query &optional downcase)
273 (let (retval pairs cur key val)
274 (setq pairs (split-string query "&"))
275 (while pairs
276 (setq cur (car pairs)
277 pairs (cdr pairs))
278 (if (not (string-match "=" cur))
279 nil ; Grace
280 (setq key (url-unhex-string (substring cur 0 (match-beginning 0)))
281 val (url-unhex-string (substring cur (match-end 0) nil)))
282 (if downcase
283 (setq key (downcase key)))
284 (setq cur (assoc key retval))
285 (if cur
286 (setcdr cur (cons val (cdr cur)))
287 (setq retval (cons (list key val) retval)))))
288 retval))
289
290 (defun url-unhex (x)
291 (if (> x ?9)
292 (if (>= x ?a)
293 (+ 10 (- x ?a))
294 (+ 10 (- x ?A)))
295 (- x ?0)))
296
297 ;;;###autoload
298 (defun url-unhex-string (str &optional allow-newlines)
299 "Remove %XXX embedded spaces, etc in a url.
300 If optional second argument ALLOW-NEWLINES is non-nil, then allow the
301 decoding of carriage returns and line feeds in the string, which is normally
302 forbidden in URL encoding."
303 (setq str (or str ""))
304 (let ((tmp "")
305 (case-fold-search t))
306 (while (string-match "%[0-9a-f][0-9a-f]" str)
307 (let* ((start (match-beginning 0))
308 (ch1 (url-unhex (elt str (+ start 1))))
309 (code (+ (* 16 ch1)
310 (url-unhex (elt str (+ start 2))))))
311 (setq tmp (concat
312 tmp (substring str 0 start)
313 (cond
314 (allow-newlines
315 (char-to-string code))
316 ((or (= code ?\n) (= code ?\r))
317 " ")
318 (t (char-to-string code))))
319 str (substring str (match-end 0)))))
320 (setq tmp (concat tmp str))
321 tmp))
322
323 (defconst url-unreserved-chars
324 '(
325 ?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
326 ?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
327 ?0 ?1 ?2 ?3 ?4 ?5 ?6 ?7 ?8 ?9
328 ?- ?_ ?. ?! ?~ ?* ?' ?\( ?\))
329 "A list of characters that are _NOT_ reserved in the URL spec.
330 This is taken from RFC 2396.")
331
332 ;;;###autoload
333 (defun url-hexify-string (str)
334 "Escape characters in a string."
335 (mapconcat
336 (lambda (char)
337 ;; Fixme: use a char table instead.
338 (if (not (memq char url-unreserved-chars))
339 (if (< char 16)
340 (format "%%0%X" char)
341 (if (> char 255)
342 (error "Hexifying multibyte character %s" str))
343 (format "%%%X" char))
344 (char-to-string char)))
345 str ""))
346
347 ;;;###autoload
348 (defun url-file-extension (fname &optional x)
349 "Return the filename extension of FNAME.
350 If optional variable X is t,
351 then return the basename of the file with the extension stripped off."
352 (if (and fname
353 (setq fname (url-basepath fname t))
354 (string-match "\\.[^./]+$" fname))
355 (if x (substring fname 0 (match-beginning 0))
356 (substring fname (match-beginning 0) nil))
357 ;;
358 ;; If fname has no extension, and x then return fname itself instead of
359 ;; nothing. When caching it allows the correct .hdr file to be produced
360 ;; for filenames without extension.
361 ;;
362 (if x
363 fname
364 "")))
365
366 ;;;###autoload
367 (defun url-truncate-url-for-viewing (url &optional width)
368 "Return a shortened version of URL that is WIDTH characters or less wide.
369 WIDTH defaults to the current frame width."
370 (let* ((fr-width (or width (frame-width)))
371 (str-width (length url))
372 (tail (file-name-nondirectory url))
373 (fname nil)
374 (modified 0)
375 (urlobj nil))
376 ;; The first thing that can go are the search strings
377 (if (and (>= str-width fr-width)
378 (string-match "?" url))
379 (setq url (concat (substring url 0 (match-beginning 0)) "?...")
380 str-width (length url)
381 tail (file-name-nondirectory url)))
382 (if (< str-width fr-width)
383 nil ; Hey, we are done!
384 (setq urlobj (url-generic-parse-url url)
385 fname (url-filename urlobj)
386 fr-width (- fr-width 4))
387 (while (and (>= str-width fr-width)
388 (string-match "/" fname))
389 (setq fname (substring fname (match-end 0) nil)
390 modified (1+ modified))
391 (url-set-filename urlobj fname)
392 (setq url (url-recreate-url urlobj)
393 str-width (length url)))
394 (if (> modified 1)
395 (setq fname (concat "/.../" fname))
396 (setq fname (concat "/" fname)))
397 (url-set-filename urlobj fname)
398 (setq url (url-recreate-url urlobj)))
399 url))
400
401 ;;;###autoload
402 (defun url-view-url (&optional no-show)
403 "View the current document's URL.
404 Optional argument NO-SHOW means just return the URL, don't show it in
405 the minibuffer.
406
407 This uses `url-current-object', set locally to the buffer."
408 (interactive)
409 (if (not url-current-object)
410 nil
411 (if no-show
412 (url-recreate-url url-current-object)
413 (message "%s" (url-recreate-url url-current-object)))))
414
415 (eval-and-compile
416 (defvar url-get-url-filename-chars "-%.?@a-zA-Z0-9()_/:~=&"
417 "Valid characters in a URL")
418 )
419
420 (defun url-get-url-at-point (&optional pt)
421 "Get the URL closest to point, but don't change position.
422 Has a preference for looking backward when not directly on a symbol."
423 ;; Not at all perfect - point must be right in the name.
424 (save-excursion
425 (if pt (goto-char pt))
426 (let (start url)
427 (save-excursion
428 ;; first see if you're just past a filename
429 (if (not (eobp))
430 (if (looking-at "[] \t\n[{}()]") ; whitespace or some parens
431 (progn
432 (skip-chars-backward " \n\t\r({[]})")
433 (if (not (bobp))
434 (backward-char 1)))))
435 (if (and (char-after (point))
436 (string-match (eval-when-compile
437 (concat "[" url-get-url-filename-chars "]"))
438 (char-to-string (char-after (point)))))
439 (progn
440 (skip-chars-backward url-get-url-filename-chars)
441 (setq start (point))
442 (skip-chars-forward url-get-url-filename-chars))
443 (setq start (point)))
444 (setq url (buffer-substring-no-properties start (point))))
445 (if (and url (string-match "^(.*)\\.?$" url))
446 (setq url (match-string 1 url)))
447 (if (and url (string-match "^URL:" url))
448 (setq url (substring url 4 nil)))
449 (if (and url (string-match "\\.$" url))
450 (setq url (substring url 0 -1)))
451 (if (and url (string-match "^www\\." url))
452 (setq url (concat "http://" url)))
453 (if (and url (not (string-match url-nonrelative-link url)))
454 (setq url nil))
455 url)))
456
457 (defun url-generate-unique-filename (&optional fmt)
458 "Generate a unique filename in `url-temporary-directory'."
459 (if (not fmt)
460 (let ((base (format "url-tmp.%d" (user-real-uid)))
461 (fname "")
462 (x 0))
463 (setq fname (format "%s%d" base x))
464 (while (file-exists-p
465 (expand-file-name fname url-temporary-directory))
466 (setq x (1+ x)
467 fname (concat base (int-to-string x))))
468 (expand-file-name fname url-temporary-directory))
469 (let ((base (concat "url" (int-to-string (user-real-uid))))
470 (fname "")
471 (x 0))
472 (setq fname (format fmt (concat base (int-to-string x))))
473 (while (file-exists-p
474 (expand-file-name fname url-temporary-directory))
475 (setq x (1+ x)
476 fname (format fmt (concat base (int-to-string x)))))
477 (expand-file-name fname url-temporary-directory))))
478
479 (defun url-extract-mime-headers ()
480 "Set `url-current-mime-headers' in current buffer."
481 (save-excursion
482 (goto-char (point-min))
483 (unless url-current-mime-headers
484 (set (make-local-variable 'url-current-mime-headers)
485 (mail-header-extract)))))
486
487 (provide 'url-util)
488
489 ;;; arch-tag: 24352abc-5a5a-412e-90cd-313b26bed5c9