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