The output from -halfdump isn't totally regular, so strip
[gnus] / lisp / gnus-html.el
1 ;;; gnus-html.el --- Quoted-Printable functions
2
3 ;; Copyright (C) 2010  Free Software Foundation, Inc.
4
5 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
6 ;; Keywords: html, web
7
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
14
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
22
23 ;;; Commentary:
24
25 ;; The idea is to provide a simple, fast and pretty minimal way to
26 ;; render HTML (including links and images) in a buffer, based on an
27 ;; external HTML renderer (i.e., w3m).
28
29 ;;; Code:
30
31 (defcustom gnus-html-cache-directory (nnheader-concat gnus-directory "html-cache/")
32   "Where Gnus will cache images it downloads from the web."
33   :group 'gnus-art
34   :type 'directory)
35
36 (defcustom gnus-html-cache-size 500000000
37   "The size of the Gnus image cache."
38   :group 'gnus-art
39   :type 'integer)
40
41 (defcustom gnus-html-frame-width 70
42   "What width to use when rendering HTML."
43   :group 'gnus-art
44   :type 'integer)
45
46 ;;;###autoload
47 (defun gnus-article-html (handle)
48   (let ((article-buffer (current-buffer)))
49     (save-restriction
50       (narrow-to-region (point) (point))
51       (save-excursion
52         (set-buffer (car handle))
53         (call-process-region (point-min) (point-max)
54                              "w3m" 
55                              nil article-buffer nil
56                              "-halfdump"
57                              "-t" (format "%s" tab-width)
58                              "-cols" (format "%s" gnus-html-frame-width)
59                              "-o" "display_image=off"
60                              "-T" "text/html"))
61       (gnus-html-wash-tags))))
62
63 (defun gnus-html-wash-tags ()
64   (let (tag parameters string start end images)
65     (mm-url-decode-entities)
66     (goto-char (point-min))
67     (while (re-search-forward "<\\([^ />]+\\)\\([^>]*\\)>" nil t)
68       (setq tag (match-string 1)
69             parameters (match-string 2)
70             start (match-beginning 0))
71       (when (plusp (length parameters))
72         (set-text-properties 0 (1- (length parameters)) nil parameters))
73       (delete-region start (point))
74       (when (search-forward (concat "</" tag ">") nil t)
75         (delete-region (match-beginning 0) (match-end 0)))
76       (setq end (point))
77       (cond
78        ;; Fetch and insert a picture.
79        ((equal tag "img_alt")
80         (when (string-match "src=\"\\([^\"]+\\)" parameters)
81           (setq parameters (match-string 1 parameters))
82           (when (or (null mm-w3m-safe-url-regexp)
83                     (string-match mm-w3m-safe-url-regexp parameters))
84             (let ((file (gnus-html-image-id parameters)))
85               (if (file-exists-p file)
86                   ;; It's already cached, so just insert it.
87                   (progn
88                     (put-image (create-image file) (point))
89                     ;; Delete the ALT text.
90                     (delete-region start end))
91                 ;; We don't have it, so schedule it for fetching
92                 ;; asynchronously.
93                 (push (list parameters
94                             (set-marker (make-marker) start)
95                             (point-marker))
96                       images))))))
97        ;; Add a link.
98        ((equal tag "a")
99         (when (string-match "href=\"\\([^\"]+\\)" parameters)
100           (setq parameters (match-string 1 parameters))
101           (gnus-article-add-button start end
102                                    'browse-url parameters)
103           (let ((overlay (gnus-make-overlay start end)))
104             (gnus-overlay-put overlay 'evaporate t)
105             (gnus-overlay-put overlay 'gnus-button-url parameters)
106             (when gnus-article-mouse-face
107               (gnus-overlay-put overlay 'mouse-face gnus-article-mouse-face)))))
108        ;; Whatever.  Just ignore the tag.
109        (t
110         ))
111       (goto-char start))
112     (goto-char (point-min))
113     ;; The output from -halfdump isn't totally regular, so strip
114     ;; off any </pre_int>s that were left over.
115     (while (re-search-forward "</pre_int>" nil t)
116       (replace-match "" t t))
117     (when images
118       (gnus-html-schedule-image-fetching (current-buffer) (nreverse images)))))
119
120 (defun gnus-html-schedule-image-fetching (buffer images)
121   (let* ((url (caar images))
122          (process (start-process
123                    "images" nil "curl"
124                    "-s" "--create-dirs"
125                    "-o" (gnus-html-image-id url)
126                    url)))
127     (set-process-sentinel process 'gnus-html-curl-sentinel)
128     (set-process-plist process (list 'images images