*** 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 (or t
57                     ;; We always decode.
58                     (not (mm-coding-system-equal
59                           mime-charset buffer-file-coding-system)))
60             (while (not (eobp))
61               (if (eq (char-charset (following-char)) 'ascii)
62                   (when start
63                     (mm-encode-coding-region start (point) mime-charset)
64                     (setq start nil))
65                 (unless start
66                   (setq start (point))))
67               (forward-char 1))
68             (when start
69               (mm-encode-coding-region start (point) mime-charset)
70               (setq start nil)))
71           mime-charset))))))
72
73 (defun mm-body-encoding ()
74   "Return the encoding of the current buffer."
75   (if (and  
76        (null (delq 'ascii (find-charset-region (point-min) (point-max))))
77        ;;;!!!The following is necessary because the function
78        ;;;!!!above seems to return the wrong result under Emacs 20.3.
79        ;;;!!!Sometimes.
80        (save-excursion
81          (let (found)
82            (goto-char (point-min))
83            (while (and (not found)
84                        (not (eobp)))
85              (when (> (mm-char-int (following-char)) 127)
86                (setq found t))
87              (forward-char 1))
88            (not found))))
89       '7bit
90     '8bit))
91
92 ;;;
93 ;;; Functions for decoding
94 ;;;
95
96 (defun mm-decode-body (charset encoding)
97   "Decode the current article that has been encoded with ENCODING.
98 The characters in CHARSET should then be decoded."
99   (setq charset (or charset rfc2047-default-charset))
100   (save-excursion
101     (when encoding
102       (cond
103        ((eq encoding 'quoted-printable)
104         (quoted-printable-decode-region (point-min) (point-max)))
105        ((eq encoding 'base64)
106         (condition-case ()
107             (base64-decode-region (point-min) (point-max))
108           (error nil)))
109        ((memq encoding '(7bit 8bit binary))
110         )
111        ((null encoding)
112         )
113        (t
114         (error "Can't decode encoding %s" encoding))))
115     (when (featurep 'mule)
116       (let (mule-charset)
117         (when (and charset
118                    (setq mule-charset (mm-charset-to-coding-system charset))
119                    buffer-file-coding-system
120                    ;;(not (mm-coding-system-equal
121                    ;;    buffer-file-coding-system mule-charset))
122                    )
123           (mm-decode-coding-region (point-min) (point-max) mule-charset))))))
124
125 (provide 'mm-bodies)
126
127 ;; mm-bodies.el ends here