Merge remote-tracking branch 'origin/no-gnus'
[gnus] / lisp / mm-archive.el
1 ;;; mm-archive.el --- Functions for parsing archive files as MIME
2
3 ;; Copyright (C) 2012  Free Software Foundation, Inc.
4
5 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
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 3 of the License, or
11 ;; (at your option) 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.  If not, see <http://www.gnu.org/licenses/>.
20
21 ;;; Commentary:
22
23 ;;; Code:
24
25 (defvar mm-archive-decoders
26   '(("application/ms-tnef" "tnef" "-f" "-" "-C")))
27
28 (defun mm-dissect-archive (handle)
29   (let ((decoder (cdr (assoc (car (mm-handle-type handle))
30                              mm-archive-decoders)))
31         (dir (mm-make-temp-file
32               (expand-file-name "emm." mm-tmp-directory) 'dir)))
33     (set-file-modes dir #o700)
34     (unwind-protect
35         (progn
36           (mm-with-unibyte-buffer
37             (mm-insert-part handle)
38             (apply 'call-process-region (point-min) (point-max) (car decoder)
39                    nil (get-buffer-create "*tnef*")
40                    nil (append (cdr decoder) (list dir))))
41           `("multipart/mixed"
42             ,handle
43             ,@(mm-archive-list-files dir)))
44       (dolist (file (directory-files dir))
45         (unless (member file '("." ".."))
46           (ignore-errors
47             (delete-file (expand-file-name file dir)))))
48       (ignore-errors
49         (delete-directory dir)))))
50
51 (defun mm-archive-list-files (dir)
52   (let ((handles nil)
53         type)
54     (dolist (file (directory-files dir))
55       (unless (member file '("." ".."))
56         (with-temp-buffer
57           (when (string-match "\\.\\([^.]+\\)$" file)
58             (setq type (mailcap-extension-to-mime (match-string 1 file))))
59           (unless type
60             (setq type "application/octet-stream"))
61           (insert (format "Content-type: %s\n" type))
62           (insert "Content-Transfer-Encoding: 8bit\n\n")
63           (insert-file-contents (expand-file-name file dir))
64           (push
65            (mm-make-handle (mm-copy-to-buffer)
66                            (list type)
67                            '8bit nil
68                            `("attachment" (filename . ,file))
69                            nil nil nil)
70            handles))))
71     handles))
72
73 (provide 'mm-archive)
74
75 ;; mm-archive.el ends here