1 ;;; mm-url.el --- a wrapper of url functions/commands for Gnus
3 ;; Copyright (C) 2001-2012 Free Software Foundation, Inc.
5 ;; Author: Shenghuo Zhu <zsh@cs.rochester.edu>
7 ;; This file is part of GNU Emacs.
9 ;; GNU Emacs is free software: you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation, either version 3 of the License, or
12 ;; (at your option) any later version.
14 ;; GNU Emacs is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 ;; GNU General Public License for more details.
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24 ;; Some codes are stolen from w3 and url packages. Some are moved from
27 ;; TODO: Support POST, cookie.
31 (eval-when-compile (require 'cl
))
36 (defvar url-current-object
)
37 (defvar url-package-name
)
38 (defvar url-package-version
)
41 "A wrapper of url package and external url command for Gnus."
44 (defcustom mm-url-use-external
(not
48 "*If non-nil, use external grab program `mm-url-program'."
53 (defvar mm-url-predefined-programs
54 '((wget "wget" "--user-agent=mm-url" "-q" "-O" "-")
55 (w3m "w3m" "-dump_source")
56 (lynx "lynx" "-source")
57 (curl "curl" "--silent" "--user-agent" "mm-url" "--location")))
59 (defcustom mm-url-program
61 ((executable-find "wget") 'wget
)
62 ((executable-find "w3m") 'w3m
)
63 ((executable-find "lynx") 'lynx
)
64 ((executable-find "curl") 'curl
)
66 "The url grab program.
67 Likely values are `wget', `w3m', `lynx' and `curl'."
70 (symbol :tag
"wget" wget
)
71 (symbol :tag
"w3m" w3m
)
72 (symbol :tag
"lynx" lynx
)
73 (symbol :tag
"curl" curl
)
74 (string :tag
"other"))
77 (defcustom mm-url-arguments nil
78 "The arguments for `mm-url-program'."
80 :type
'(repeat string
)
84 ;;; Internal variables
87 (defvar mm-url-html-entities
95 (rsquo .
39) ; should be U+8217
112 (uarr .
94) ; should be U+8593
114 (lsquo .
96) ; should be U+8216
216 ;; Special handling of these
230 ;; The following 5 entities are not mentioned in the HTML 2.0
231 ;; standard, nor in any other HTML proposed standard of which I
232 ;; am aware. I am not even sure they are ISO entity names. ***
233 ;; Hence, some arrangement should be made to give a bad HTML
234 ;; message when they are seen.
246 ;; (shy . ????) ; soft hyphen
248 "*An assoc list of entity names and how to actually display them.")
250 (defconst mm-url-unreserved-chars
252 ?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
253 ?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
254 ?
0 ?
1 ?
2 ?
3 ?
4 ?
5 ?
6 ?
7 ?
8 ?
9
255 ?- ?_ ?. ?
! ?~ ?
* ?
' ?\
( ?\
))
256 "A list of characters that are _NOT_ reserved in the URL spec.
257 This is taken from RFC 2396.")
259 (defun mm-url-load-url ()
260 "Load `url-insert-file-contents'."
261 (unless (condition-case ()
263 (require 'url-handlers
)
267 ;; w3-4.0pre0.46 or earlier version.
272 (defun mm-url-insert-file-contents (url)
273 "Insert file contents of URL.
274 If `mm-url-use-external' is non-nil, use `mm-url-program'."
275 (if mm-url-use-external
277 (if (string-match "^file:/+" url
)
278 (insert-file-contents (substring url
(1- (match-end 0))))
279 (mm-url-insert-file-contents-external url
))
280 (goto-char (point-min))
281 (if (fboundp 'url-generic-parse-url
)
282 (setq url-current-object
283 (url-generic-parse-url url
)))
284 (list url
(buffer-size)))
286 (let ((name buffer-file-name
)
287 (url-request-extra-headers
288 ;; ISTM setting a Connection header was a workaround for
289 ;; older versions of url included with w3, but it does more
290 ;; harm than good with the one shipped with Emacs. --ansel
291 (if (not (and (boundp 'url-version
)
292 (equal url-version
"Emacs")))
293 (list (cons "Connection" "Close"))))
295 (setq result
(url-insert-file-contents url
))
297 (goto-char (point-min))
298 (while (re-search-forward "\r 1000\r ?" nil t
)
300 (setq buffer-file-name name
)
301 (if (and (fboundp 'url-generic-parse-url
)
303 (setq url-current-object
(url-generic-parse-url
308 (defun mm-url-insert-file-contents-external (url)
309 "Insert file contents of URL using `mm-url-program'."
311 (if (symbolp mm-url-program
)
312 (let ((item (cdr (assq mm-url-program mm-url-predefined-programs
))))
313 (setq program
(car item
)
314 args
(append (cdr item
) (list url
))))
315 (setq program mm-url-program
316 args
(append mm-url-arguments
(list url
))))
317 (unless (eq 0 (apply 'call-process program nil t nil args
))
318 (error "Couldn't fetch %s" url
))))
320 (defvar mm-url-timeout
30
321 "The number of seconds before timing out an URL fetch.")
323 (defvar mm-url-retries
10
324 "The number of retries after timing out when fetching an URL.")
326 (defun mm-url-insert (url &optional follow-refresh
)
327 "Insert the contents from an URL in the current buffer.
328 If FOLLOW-REFRESH is non-nil, redirect refresh url in META."
329 (let ((times mm-url-retries
)
333 (while (and (not (zerop (decf times
)))
335 (with-timeout (mm-url-timeout)
337 (message "Trying again (%s)..." (- mm-url-retries times
)))
341 (narrow-to-region (point) (point))
342 (mm-url-insert-file-contents url
)
343 (goto-char (point-min))
344 (when (re-search-forward
345 "<meta[ \t\r\n]*http-equiv=\"Refresh\"[^>]*URL=\\([^\"]+\\)\"" nil t
)
346 (let ((url (match-string 1)))
347 (delete-region (point-min) (point-max))
348 (setq result
(mm-url-insert url t
)))))
349 (setq result
(mm-url-insert-file-contents url
)))
353 (defun mm-url-decode-entities ()
354 "Decode all HTML entities."
355 (goto-char (point-min))
356 (while (re-search-forward "&\\(#[0-9]+\\|#x[0-9a-f]+\\|[a-z]+[0-9]*\\);"
358 (let* ((entity (match-string 1))
359 (elem (if (eq (aref entity
0) ?\
#)
361 ;; Hex number: ㈒
362 (if (eq (aref entity
1) ?x
)
363 (string-to-number (substring entity
2)
365 ;; Decimal number: 
366 (string-to-number (substring entity
1)))))
367 (setq c
(or (cdr (assq c mm-extra-numeric-entities
))
369 (if (mm-char-or-char-int-p c
) c ?
#))
370 (or (cdr (assq (intern entity
)
371 mm-url-html-entities
))
373 (unless (stringp elem
)
374 (setq elem
(char-to-string elem
)))
375 (replace-match elem t t
))))
377 (defun mm-url-decode-entities-nbsp ()
378 "Decode all HTML entities and to a space."
379 (let ((mm-url-html-entities (cons '(nbsp .
32) mm-url-html-entities
)))
380 (mm-url-decode-entities)))
382 (defun mm-url-decode-entities-string (string)
385 (mm-url-decode-entities)
388 (defun mm-url-form-encode-xwfu (chunk)
389 "Escape characters in a string for application/x-www-form-urlencoded.
390 Blasphemous crap because someone didn't think %20 was good enough for encoding
391 spaces. Die Die Die."
392 ;; This will get rid of the 'attributes' specified by the file type,
393 ;; which are useless for an application/x-www-form-urlencoded form.
395 (setq chunk
(cdr chunk
)))
401 ((memq char mm-url-unreserved-chars
) (char-to-string char
))
402 (t (upcase (format "%%%02x" char
)))))
403 (mm-encode-coding-string chunk
404 (if (fboundp 'find-coding-systems-string
)
405 (car (find-coding-systems-string chunk
))
406 buffer-file-coding-system
))
409 (defun mm-url-encode-www-form-urlencoded (pairs)
410 "Return PAIRS encoded for forms."
413 (concat (mm-url-form-encode-xwfu (car data
)) "="
414 (mm-url-form-encode-xwfu (cdr data
))))
417 (autoload 'mml-compute-boundary
"mml")
419 (defun mm-url-remove-markup ()
420 "Remove all HTML markup, leaving just plain text."
421 (goto-char (point-min))
422 (while (search-forward "<!--" nil t
)
423 (delete-region (match-beginning 0)
424 (or (search-forward "-->" nil t
)
426 (goto-char (point-min))
427 (while (re-search-forward "<[^>]+>" nil t
)
428 (replace-match "" t t
)))
432 ;;; mm-url.el ends here