1 ;;; mm-url.el --- a wrapper of url functions/commands for Gnus
3 ;; Copyright (C) 2001-2017 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 <https://www.gnu.org/licenses/>.
24 ;; Some code is 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
)
270 (defun mm-url-insert-file-contents (url)
271 "Insert file contents of URL.
272 If `mm-url-use-external' is non-nil, use `mm-url-program'."
273 (if mm-url-use-external
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 (setq url-current-object
(url-generic-parse-url url
))
280 (list url
(buffer-size)))
282 (let ((name buffer-file-name
)
284 (setq result
(url-insert-file-contents url
))
286 (goto-char (point-min))
287 (while (re-search-forward "\r 1000\r ?" nil t
)
289 (setq buffer-file-name name
)
291 (setq url-current-object
292 (url-generic-parse-url (car result
))))
296 (defun mm-url-insert-file-contents-external (url)
297 "Insert file contents of URL using `mm-url-program'."
299 (if (symbolp mm-url-program
)
300 (let ((item (cdr (assq mm-url-program mm-url-predefined-programs
))))
301 (setq program
(car item
)
302 args
(append (cdr item
) (list url
))))
303 (setq program mm-url-program
304 args
(append mm-url-arguments
(list url
))))
305 (unless (eq 0 (apply 'call-process program nil t nil args
))
306 (error "Couldn't fetch %s" url
))))
308 (defvar mm-url-timeout
30
309 "The number of seconds before timing out an URL fetch.")
311 (defvar mm-url-retries
10
312 "The number of retries after timing out when fetching an URL.")
314 (defun mm-url-insert (url &optional follow-refresh
)
315 "Insert the contents from an URL in the current buffer.
316 If FOLLOW-REFRESH is non-nil, redirect refresh url in META."
317 (let ((times mm-url-retries
)
321 (while (and (not (zerop (decf times
)))
323 (with-timeout (mm-url-timeout)
325 (message "Trying again (%s)..." (- mm-url-retries times
)))
329 (narrow-to-region (point) (point))
330 (mm-url-insert-file-contents url
)
331 (goto-char (point-min))
332 (when (re-search-forward
333 "<meta[ \t\r\n]*http-equiv=\"Refresh\"[^>]*URL=\\([^\"]+\\)\"" nil t
)
334 (let ((url (match-string 1)))
335 (delete-region (point-min) (point-max))
336 (setq result
(mm-url-insert url t
)))))
337 (setq result
(mm-url-insert-file-contents url
)))
341 (defun mm-url-decode-entities ()
342 "Decode all HTML entities."
343 (goto-char (point-min))
344 (while (re-search-forward "&\\(#[0-9]+\\|#x[0-9a-f]+\\|[a-z]+[0-9]*\\);"
346 (let* ((entity (match-string 1))
347 (elem (if (eq (aref entity
0) ?\
#)
349 ;; Hex number: ㈒
350 (if (eq (aref entity
1) ?x
)
351 (string-to-number (substring entity
2)
353 ;; Decimal number: 
354 (string-to-number (substring entity
1)))))
355 (setq c
(or (cdr (assq c mm-extra-numeric-entities
))
357 (if (characterp c
) c ?
#))
358 (or (cdr (assq (intern entity
)
359 mm-url-html-entities
))
361 (unless (stringp elem
)
362 (setq elem
(char-to-string elem
)))
363 (replace-match elem t t
))))
365 (defun mm-url-decode-entities-nbsp ()
366 "Decode all HTML entities and to a space."
367 (let ((mm-url-html-entities (cons '(nbsp .
32) mm-url-html-entities
)))
368 (mm-url-decode-entities)))
370 (defun mm-url-decode-entities-string (string)
373 (mm-url-decode-entities)
376 (defun mm-url-form-encode-xwfu (chunk)
377 "Escape characters in a string for application/x-www-form-urlencoded.
378 Blasphemous crap because someone didn't think %20 was good enough for encoding
379 spaces. Die Die Die."
380 ;; This will get rid of the 'attributes' specified by the file type,
381 ;; which are useless for an application/x-www-form-urlencoded form.
383 (setq chunk
(cdr chunk
)))
390 ((memq char mm-url-unreserved-chars
) (char-to-string char
))
391 (t (upcase (format "%%%02x" char
)))))
392 (encode-coding-string chunk
(car (find-coding-systems-string chunk
)))
395 (defun mm-url-encode-www-form-urlencoded (pairs)
396 "Return PAIRS encoded for forms."
399 (concat (mm-url-form-encode-xwfu (car data
)) "="
400 (mm-url-form-encode-xwfu (cdr data
))))
403 (autoload 'mml-compute-boundary
"mml")
405 (defun mm-url-encode-multipart-form-data (data &optional boundary
)
406 "Return DATA encoded in multipart/form-data.
407 DATA is a list where the elements can have the following form:
408 (\"NAME\" . \"VALUE\")
410 (\"file\" . ((\"name\" . \"NAME\")
411 (\"filename\" . \"FILENAME\")
412 (\"content-type\" . \"CONTENT-TYPE\")
413 (\"filedata\" . \"FILEDATA\")))
414 Lowercase strings above are literals and uppercase are not."
416 ;; Get a good boundary.
418 (setq boundary
(mml-compute-boundary '())))
420 (set-buffer-multibyte nil
)
422 (let ((name (car elem
))
424 (insert "--" boundary
"\r\n")
428 "Content-Disposition: form-data; name=%S; filename=%S\r\n"
429 (or (cdr (assoc "name" value
)) name
)
430 (cdr (assoc "filename" value
))))
431 (insert "Content-Transfer-Encoding: binary\r\n")
432 (insert (format "Content-Type: %s\r\n\r\n"
433 (or (cdr (assoc "content-type" value
))
435 (let ((filedata (cdr (assoc "filedata" value
))))
439 ;; How can this possibly be useful?
441 (insert (number-to-string filedata
))))))
442 ((equal name
"submit")
444 "Content-Disposition: form-data; name=\"submit\"\r\n\r\nSubmit\r\n"))
446 (insert (format "Content-Disposition: form-data; name=%S\r\n\r\n"
451 (insert "--" boundary
"--\r\n")
454 (defun mm-url-remove-markup ()
455 "Remove all HTML markup, leaving just plain text."
456 (goto-char (point-min))
457 (while (search-forward "<!--" nil t
)
458 (delete-region (match-beginning 0)
459 (or (search-forward "-->" nil t
)
461 (goto-char (point-min))
462 (while (re-search-forward "<[^>]+>" nil t
)
463 (replace-match "" t t
)))
467 ;;; mm-url.el ends here