*** empty log message ***
[gnus] / lisp / mm-bodies.el
1 ;;; mm-bodies.el --- Functions for decoding MIME things
2 ;; Copyright (C) 1998 Free Software Foundation, Inc.
3
4 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
5 ;;      MORIOKA Tomohiko <morioka@jaist.ac.jp>
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 by
10 ;; the Free Software Foundation; either version 2, or (at your option)
11 ;; any later version.
12
13 ;; GNU Emacs is distributed in the hope that it will be useful,
14 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
15 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 ;; GNU 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 ;;; Code:
26
27 (eval-and-compile
28   (if (not (fboundp 'base64-encode-string))
29       (require 'base64)))
30 (require 'mm-util)
31 (require 'qp)
32
33 (defun mm-encode-body ()
34   "Encode a body.
35 Should be called narrowed to the body that is to be encoded.
36 If there is more than one non-ASCII MULE charset, then list of found
37 MULE charsets are returned.
38 If successful, the MIME charset is returned.
39 If no encoding was done, nil is returned."
40   (save-excursion
41     (goto-char (point-min))
42     (let ((charsets
43            (delq 'ascii (find-charset-region (point-min) (point-max))))
44           charset)
45       (cond
46        ;; No encoding.
47        ((null charsets)
48         nil)
49        ;; Too many charsets.
50        ((> (length charsets) 1)
51         charsets)
52        ;; We encode.
53        (t
54         (let ((mime-charset (mm-mule-charset-to-mime-charset (car charsets)))
55               start)
56           (when (not (mm-coding-system-equal
57                       mime-charset buffer-file-coding-system))
58             (while (not (eobp))
59               (if (eq (char-charset (following-char)) 'ascii)
60                   (when start
61                     (mm-encode-coding-region start (point) mime-charset)
62                     (setq start nil))
63                 (unless start
64                   (setq start (point))))
65               (forward-char 1))
66             (when start
67               (mm-encode-coding-region start (point) mime-charset)
68               (setq start nil)))
69           mime-charset))))))
70
71 (defun mm-body-encoding ()
72   "Return the encoding of the current buffer."
73   (if (and  
74        (null (delq 'ascii (find-charset-region (point-min) (point-max))))
75        ;;;!!!The following is necessary because the function
76        ;;;!!!above seems to return the wrong result under Emacs 20.3.
77        ;;;!!!Sometimes.
78        (save-excursion
79          (let (found)
80            (goto-char (point-min))
81            (while (and (not found)
82                        (not (eobp)))
83              (when (> (char-int (following-char)) 127)
84                (setq found t))
85              (forward-char 1))
86            (not found))))
87       '7bit
88     '8bit))
89
90 ;;;
91 ;;; Functions for decoding
92 ;;;
93
94 (defun mm-decode-body (charset encoding)
95   "Decode the current article that has been encoded with ENCODING.
96 The characters in CHARSET should then be decoded."
97   (save-excursion
98     (when encoding
99       (cond
100        ((eq encoding 'quoted-printable)
101         (quoted-printable-decode-region (point-min) (point-max)))
102        ((eq encoding 'base64)
103         (condition-case ()
104             (base64-decode-region (point-min) (point-max))
105           (error nil)))
106        ((memq encoding '(7bit 8bit binary))
107         )
108        (t
109         (error "Can't decode encoding %s" encoding))))
110     (when (featurep 'mule)
111       (let (mule-charset)
112         (when (and charset
113                    (setq mule-charset (mm-charset-to-coding-system charset))
114                    buffer-file-coding-system
115                    (not (mm-coding-system-equal
116                          buffer-file-coding-system mule-charset)))
117           (mm-decode-coding-region (point-min) (point-max) mule-charset))))))
118
119 (provide 'mm-bodies)
120
121 ;; mm-bodies.el ends here