2003-03-20 Mark A. Hershberger <mah@everybody.org>
[gnus] / lisp / mm-url.el
1 ;;; mm-url.el --- a wrapper of url functions/commands for Gnus
2 ;; Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc.
3
4 ;; Author: Shenghuo Zhu <zsh@cs.rochester.edu>
5
6 ;; This file is part of GNU Emacs.
7
8 ;; GNU Emacs is free software; you can redistribute it and/or modify
9 ;; it under the terms of the GNU General Public License as published
10 ;; by the Free Software Foundation; either version 2, or (at your
11 ;; option) any later version.
12
13 ;; GNU Emacs is distributed in the hope that it will be useful, but
14 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
15 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 ;; General Public License for more details.
17
18 ;; You should have received a copy of the GNU General Public License
19 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
20 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 ;; Boston, MA 02111-1307, USA.
22
23 ;;; Commentary:
24
25 ;; Some codes are stolen from w3 and url packages. Some are moved from
26 ;; nnweb.
27
28 ;; TODO: Support POST, cookie.
29
30 ;;; Code:
31
32 (eval-when-compile (require 'cl))
33
34 (require 'mm-util)
35 (require 'gnus)
36
37 (eval-and-compile
38   (autoload 'executable-find "executable"))
39
40 (defgroup mm-url nil
41   "A wrapper of url package and external url command for Gnus."
42   :group 'gnus)
43
44 (defcustom mm-url-use-external (not
45                                 (condition-case nil
46                                     (require 'url)
47                                   (error nil)))
48   "*If not-nil, use external grab program `mm-url-program'."
49   :type 'boolean
50   :group 'mm-url)
51
52 (defvar mm-url-predefined-programs
53   '((wget "wget" "-q" "-O" "-")
54     (w3m  "w3m" "-dump_source")
55     (lynx "lynx" "-source")
56     (curl "curl")))
57
58 (defcustom mm-url-program
59   (cond
60    ((executable-find "wget") 'wget)
61    ((executable-find "w3m") 'w3m)
62    ((executable-find "lynx") 'lynx)
63    ((executable-find "curl") 'curl)
64    (t "GET"))
65   "The url grab program.
66 Likely values are `wget', `w3m', `lynx' and `curl'."
67   :type '(choice
68           (symbol :tag "wget" wget)
69           (symbol :tag "w3m" w3m)
70           (symbol :tag "lynx" lynx)
71           (symbol :tag "curl" curl)
72           (string :tag "other"))
73   :group 'mm-url)
74
75 (defcustom mm-url-arguments nil
76   "The arguments for `mm-url-program'."
77   :type '(repeat string)
78   :group 'mm-url)
79
80 \f
81 ;;; Internal variables
82
83 (defvar mm-url-package-name
84   (gnus-replace-in-string
85    (gnus-replace-in-string gnus-version " v.*$" "")
86    " " "-"))
87
88 (defvar mm-url-package-version gnus-version-number)
89
90 ;; Stolen from w3.
91 (defvar mm-url-html-entities
92   '(
93     ;;(excl        .  33)
94     (quot        .  34)
95     ;;(num         .  35)
96     ;;(dollar      .  36)
97     ;;(percent     .  37)
98     (amp         .  38)
99     (rsquo       .  39)                 ; should be U+8217
100     ;;(apos        .  39)
101     ;;(lpar        .  40)
102     ;;(rpar        .  41)
103     ;;(ast         .  42)
104     ;;(plus        .  43)
105     ;;(comma       .  44)
106     ;;(period      .  46)
107     ;;(colon       .  58)
108     ;;(semi        .  59)
109     (lt          .  60)
110     ;;(equals      .  61)
111     (gt          .  62)
112     ;;(quest       .  63)
113     ;;(commat      .  64)
114     ;;(lsqb        .  91)
115     ;;(rsqb        .  93)
116     (uarr        .  94)                 ; should be U+8593
117     ;;(lowbar      .  95)
118     (lsquo       .  96)                 ; should be U+8216
119     (lcub        . 123)
120     ;;(verbar      . 124)
121     (rcub        . 125)
122     (tilde       . 126)
123     (nbsp        . 160)
124     (iexcl       . 161)
125     (cent        . 162)
126     (pound       . 163)
127     (curren      . 164)
128     (yen         . 165)
129     (brvbar      . 166)
130     (sect        . 167)
131     (uml         . 168)
132     (copy        . 169)
133     (ordf        . 170)
134     (laquo       . 171)
135     (not         . 172)
136     (shy         . 173)
137     (reg         . 174)
138     (macr        . 175)
139     (deg         . 176)
140     (plusmn      . 177)
141     (sup2        . 178)
142     (sup3        . 179)
143     (acute       . 180)
144     (micro       . 181)
145     (para        . 182)
146     (middot      . 183)
147     (cedil       . 184)
148     (sup1        . 185)
149     (ordm        . 186)
150     (raquo       . 187)
151     (frac14      . 188)
152     (frac12      . 189)
153     (frac34      . 190)
154     (iquest      . 191)
155     (Agrave      . 192)
156     (Aacute      . 193)
157     (Acirc       . 194)
158     (Atilde      . 195)
159     (Auml        . 196)
160     (Aring       . 197)
161     (AElig       . 198)
162     (Ccedil      . 199)
163     (Egrave      . 200)
164     (Eacute      . 201)
165     (Ecirc       . 202)
166     (Euml        . 203)
167     (Igrave      . 204)
168     (Iacute      . 205)
169     (Icirc       . 206)
170     (Iuml        . 207)
171     (ETH         . 208)
172     (Ntilde      . 209)
173     (Ograve      . 210)
174     (Oacute      . 211)
175     (Ocirc       . 212)
176     (Otilde      . 213)
177     (Ouml        . 214)
178     (times       . 215)
179     (Oslash      . 216)
180     (Ugrave      . 217)
181     (Uacute      . 218)
182     (Ucirc       . 219)
183     (Uuml        . 220)
184     (Yacute      . 221)
185     (THORN       . 222)
186     (szlig       . 223)
187     (agrave      . 224)
188     (aacute      . 225)
189     (acirc       . 226)
190     (atilde      . 227)
191     (auml        . 228)
192     (aring       . 229)
193     (aelig       . 230)
194     (ccedil      . 231)
195     (egrave      . 232)
196     (eacute      . 233)
197     (ecirc       . 234)
198     (euml        . 235)
199     (igrave      . 236)
200     (iacute      . 237)
201     (icirc       . 238)
202     (iuml        . 239)
203     (eth         . 240)
204     (ntilde      . 241)
205     (ograve      . 242)
206     (oacute      . 243)
207     (ocirc       . 244)
208     (otilde      . 245)
209     (ouml        . 246)
210     (divide      . 247)
211     (oslash      . 248)
212     (ugrave      . 249)
213     (uacute      . 250)
214     (ucirc       . 251)
215     (uuml        . 252)
216     (yacute      . 253)
217     (thorn       . 254)
218     (yuml        . 255)
219
220     ;; Special handling of these
221     (frac56      . "5/6")
222     (frac16      . "1/6")
223     (frac45      . "4/5")
224     (frac35      . "3/5")
225     (frac25      . "2/5")
226     (frac15      . "1/5")
227     (frac23      . "2/3")
228     (frac13      . "1/3")
229     (frac78      . "7/8")
230     (frac58      . "5/8")
231     (frac38      . "3/8")
232     (frac18      . "1/8")
233
234     ;; The following 5 entities are not mentioned in the HTML 2.0
235     ;; standard, nor in any other HTML proposed standard of which I
236     ;; am aware.  I am not even sure they are ISO entity names.  ***
237     ;; Hence, some arrangement should be made to give a bad HTML
238     ;; message when they are seen.
239     (ndash       .  45)
240     (mdash       .  45)
241     (emsp        .  32)
242     (ensp        .  32)
243     (sim         . 126)
244     (le          . "<=")
245     (agr         . "alpha")
246     (rdquo       . "''")
247     (ldquo       . "``")
248     (trade       . "(TM)")
249     ;; To be done
250     ;; (shy      . ????) ; soft hyphen
251     )
252   "*An assoc list of entity names and how to actually display them.")
253
254 (defconst mm-url-unreserved-chars
255   '(
256     ?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
257     ?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
258     ?0 ?1 ?2 ?3 ?4 ?5 ?6 ?7 ?8 ?9
259     ?- ?_ ?. ?! ?~ ?* ?' ?\( ?\))
260   "A list of characters that are _NOT_ reserved in the URL spec.
261 This is taken from RFC 2396.")
262
263 (defun mm-url-load-url ()
264   "Load `url-insert-file-contents'."
265   (unless (condition-case ()
266               (require 'url-handlers)
267             (error nil))
268     ;; w3-4.0pre0.46 or earlier version.
269     (require 'w3-vars)
270     (require 'url)))
271
272 (defun mm-url-insert-file-contents (url)
273   (if mm-url-use-external
274       (progn
275         (if (string-match "^file:/+" url)
276             (insert-file-contents (substring url (1- (match-end 0))))
277           (mm-url-insert-file-contents-external url))
278         (goto-char (point-min))
279         (list url (buffer-size)))
280     (mm-url-load-url)
281     (let ((name buffer-file-name)
282           (url-request-extra-headers (list (cons "Connection" "Close")))
283           (url-package-name (or mm-url-package-name
284                                 url-package-name))
285           (url-package-version (or mm-url-package-version
286                                    url-package-version)))
287       (prog1
288           (url-insert-file-contents url)
289         (save-excursion
290           (goto-char (point-min))
291           (while (re-search-forward "\r 1000\r ?" nil t)
292             (replace-match "")))
293         (setq buffer-file-name name)))))
294
295 (defun mm-url-insert-file-contents-external (url)
296   (let (program args)
297     (if (symbolp mm-url-program)
298         (let ((item (cdr (assq mm-url-program mm-url-predefined-programs))))
299           (setq program (car item)
300                 args (append (cdr item) (list url))))
301       (setq program mm-url-program
302             args (append mm-url-arguments (list url))))
303     (apply 'call-process program nil t nil args)))
304
305 (defvar mm-url-timeout 30
306   "The number of seconds before timing out an URL fetch.")
307
308 (defvar mm-url-retries 10
309   "The number of retries after timing out when fetching an URL.")
310
311 (defun mm-url-insert (url &optional follow-refresh)
312   "Insert the contents from an URL in the current buffer.
313 If FOLLOW-REFRESH is non-nil, redirect refresh url in META."
314   (let ((times mm-url-retries)
315         (done nil)
316         (first t)
317         result)
318     (while (and (not (zerop (decf times)))
319                 (not done))
320       (with-timeout (mm-url-timeout)
321         (unless first
322           (message "Trying again (%s)..." (- mm-url-retries times)))
323         (setq first nil)
324         (if follow-refresh
325             (save-restriction
326               (narrow-to-region (point) (point))
327               (mm-url-insert-file-contents url)
328               (goto-char (point-min))
329               (when (re-search-forward
330                      "<meta[ \t\r\n]*http-equiv=\"Refresh\"[^>]*URL=\\([^\"]+\\)\"" nil t)
331                 (let ((url (match-string 1)))
332                   (delete-region (point-min) (point-max))
333                   (setq result (mm-url-insert url t)))))
334           (setq result (mm-url-insert-file-contents url)))
335         (if (fboundp 'url-generic-parse-url)
336             (setq url-current-object (url-generic-parse-url
337                                       (if (listp result)
338                                           (car result)
339                                         result))))
340         (setq done t)))
341     result))
342
343 (defun mm-url-decode-entities ()
344   "Decode all HTML entities."
345   (goto-char (point-min))
346   (while (re-search-forward "&\\(#[0-9]+\\|[a-z]+\\);" nil t)
347     (let ((elem (if (eq (aref (match-string 1) 0) ?\#)
348                         (let ((c
349                                (string-to-number (substring
350                                                   (match-string 1) 1))))
351                           (if (mm-char-or-char-int-p c) c 32))
352                       (or (cdr (assq (intern (match-string 1))
353                                      mm-url-html-entities))
354                           ?#))))
355       (unless (stringp elem)
356         (setq elem (char-to-string elem)))
357       (replace-match elem t t))))
358
359 (defun mm-url-decode-entities-nbsp ()
360   "Decode all HTML entities and &nbsp; to a space."
361   (let ((mm-url-html-entities (cons '(nbsp . 32) mm-url-html-entities)))
362     (mm-url-decode-entities)))
363
364 (defun mm-url-decode-entities-string (string)
365   (with-temp-buffer
366     (insert string)
367     (mm-url-decode-entities)
368     (buffer-string)))
369
370 (defun mm-url-form-encode-xwfu (chunk)
371   "Escape characters in a string for application/x-www-form-urlencoded.
372 Blasphemous crap because someone didn't think %20 was good enough for encoding
373 spaces.  Die Die Die."
374   ;; This will get rid of the 'attributes' specified by the file type,
375   ;; which are useless for an application/x-www-form-urlencoded form.
376   (if (consp chunk)
377       (setq chunk (cdr chunk)))
378
379   (mapconcat
380    (lambda (char)
381      (cond
382       ((= char ?  ) "+")
383       ((memq char mm-url-unreserved-chars) (char-to-string char))
384       (t (upcase (format "%%%02x" char)))))
385    ;; Fixme: Should this actually be accepting multibyte?  Is there a
386    ;; better way in XEmacs?
387    (if (featurep 'mule)
388        (encode-coding-string chunk
389                              (if (fboundp 'find-coding-systems-string)
390                                  (car (find-coding-systems-string chunk))
391                                  buffer-file-coding-system))
392      chunk)
393    ""))
394
395 (defun mm-url-encode-www-form-urlencoded (pairs)
396   "Return PAIRS encoded for forms."
397   (mapconcat
398    (lambda (data)
399      (concat (mm-url-form-encode-xwfu (car data)) "="
400              (mm-url-form-encode-xwfu (cdr data))))
401    pairs "&"))
402
403 (defun mm-url-fetch-form (url pairs)
404   "Fetch a form from URL with PAIRS as the data using the POST method."
405   (mm-url-load-url)
406   (let ((url-request-data (mm-url-encode-www-form-urlencoded pairs))
407         (url-request-method "POST")
408         (url-request-extra-headers
409          '(("Content-type" . "application/x-www-form-urlencoded"))))
410     (url-insert-file-contents url)
411     (setq buffer-file-name nil))
412   t)
413
414 (defun mm-url-fetch-simple (url content)
415   (mm-url-load-url)
416   (let ((url-request-data content)
417         (url-request-method "POST")
418         (url-request-extra-headers
419          '(("Content-type" . "application/x-www-form-urlencoded"))))
420     (url-insert-file-contents url)
421     (setq buffer-file-name nil))
422   t)
423
424 (defun mm-url-remove-markup ()
425   "Remove all HTML markup, leaving just plain text."
426   (goto-char (point-min))
427   (while (search-forward "<!--" nil t)
428     (delete-region (match-beginning 0)
429                    (or (search-forward "-->" nil t)
430                        (point-max))))
431   (goto-char (point-min))
432   (while (re-search-forward "<[^>]+>" nil t)
433     (replace-match "" t t)))
434
435 (provide 'mm-url)
436
437 ;;; mm-url.el ends here