6098ce7b16b7e10d930638c7a6b89a0593e6d335
[elisp/gnus.git-] / 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 'exec-installed-p "path-util"))
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    ((exec-installed-p "wget") 'wget)
61    ((exec-installed-p "w3m") 'w3m)
62    ((exec-installed-p "lynx") 'lynx)
63    ((exec-installed-p "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           result)
288       (setq result (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       (if (and (fboundp 'url-generic-parse-url)
295                (listp result))
296           (setq url-current-object (url-generic-parse-url
297                                     (car result))))
298       result)))
299
300 (defun mm-url-insert-file-contents-external (url)
301   (let (program args)
302     (if (symbolp mm-url-program)
303         (let ((item (cdr (assq mm-url-program mm-url-predefined-programs))))
304           (setq program (car item)
305                 args (append (cdr item) (list url))))
306       (setq program mm-url-program
307             args (append mm-url-arguments (list url))))
308     (apply 'call-process program nil t nil args)))
309
310 (defvar mm-url-timeout 30
311   "The number of seconds before timing out an URL fetch.")
312
313 (defvar mm-url-retries 10
314   "The number of retries after timing out when fetching an URL.")
315
316 (defun mm-url-insert (url &optional follow-refresh)
317   "Insert the contents from an URL in the current buffer.
318 If FOLLOW-REFRESH is non-nil, redirect refresh url in META."
319   (let ((times mm-url-retries)
320         (done nil)
321         (first t)
322         result)
323     (while (and (not (zerop (decf times)))
324                 (not done))
325       (with-timeout (mm-url-timeout)
326         (unless first
327           (message "Trying again (%s)..." (- mm-url-retries times)))
328         (setq first nil)
329         (if follow-refresh
330             (save-restriction
331               (narrow-to-region (point) (point))
332               (mm-url-insert-file-contents url)
333               (goto-char (point-min))
334               (when (re-search-forward
335                      "<meta[ \t\r\n]*http-equiv=\"Refresh\"[^>]*URL=\\([^\"]+\\)\"" nil t)
336                 (let ((url (match-string 1)))
337                   (delete-region (point-min) (point-max))
338                   (setq result (mm-url-insert url t)))))
339           (setq result (mm-url-insert-file-contents url)))
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                                (static-if (boundp 'MULE)
392                                    file-coding-system
393                                  buffer-file-coding-system)))
394      chunk)
395    ""))
396
397 (defun mm-url-encode-www-form-urlencoded (pairs)
398   "Return PAIRS encoded for forms."
399   (mapconcat
400    (lambda (data)
401      (concat (mm-url-form-encode-xwfu (car data)) "="
402              (mm-url-form-encode-xwfu (cdr data))))
403    pairs "&"))
404
405 (defun mm-url-fetch-form (url pairs)
406   "Fetch a form from URL with PAIRS as the data using the POST method."
407   (mm-url-load-url)
408   (let ((url-request-data (mm-url-encode-www-form-urlencoded pairs))
409         (url-request-method "POST")
410         (url-request-extra-headers
411          '(("Content-type" . "application/x-www-form-urlencoded"))))
412     (url-insert-file-contents url)
413     (setq buffer-file-name nil))
414   t)
415
416 (defun mm-url-fetch-simple (url content)
417   (mm-url-load-url)
418   (let ((url-request-data content)
419         (url-request-method "POST")
420         (url-request-extra-headers
421          '(("Content-type" . "application/x-www-form-urlencoded"))))
422     (url-insert-file-contents url)
423     (setq buffer-file-name nil))
424   t)
425
426 (defun mm-url-remove-markup ()
427   "Remove all HTML markup, leaving just plain text."
428   (goto-char (point-min))
429   (while (search-forward "<!--" nil t)
430     (delete-region (match-beginning 0)
431                    (or (search-forward "-->" nil t)
432                        (point-max))))
433   (goto-char (point-min))
434   (while (re-search-forward "<[^>]+>" nil t)
435     (replace-match "" t t)))
436
437 (provide 'mm-url)
438
439 ;;; mm-url.el ends here