Delete code to detect APEL 7.3 or later.
[elisp/flim.git] / mime.el
1 ;;; mime.el --- MIME library module
2
3 ;; Copyright (C) 1998,1999 Free Software Foundation, Inc.
4 ;; Copyright (C) 1999 Electrotechnical Laboratory, JAPAN.
5 ;; Licensed to the Free Software Foundation.
6
7 ;; Author: MORIOKA Tomohiko <tomo@m17n.org>
8 ;; Keywords: MIME, multimedia, mail, news
9
10 ;; This file is part of FLIM (Faithful Library about Internet Message).
11
12 ;; This program is free software; you can redistribute it and/or
13 ;; modify it under the terms of the GNU General Public License as
14 ;; published by the Free Software Foundation; either version 2, or (at
15 ;; your option) any later version.
16
17 ;; This program is distributed in the hope that it will be useful, but
18 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
20 ;; General Public License for more details.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25 ;; Boston, MA 02111-1307, USA.
26
27 ;;; Code:
28
29 (require 'alist)
30 (require 'std11)
31 (require 'mime-def)
32 (require 'eword-decode)
33
34 (eval-and-compile
35
36 (autoload 'eword-encode-header "eword-encode"
37   "Encode header fields to network representation, such as MIME encoded-word.")
38
39 (autoload 'mime-parse-Content-Type "mime-parse"
40   "Parse STRING as field-body of Content-Type field.")
41 (autoload 'mime-read-Content-Type "mime-parse"
42   "Read field-body of Content-Type field from current-buffer,
43 and return parsed it.")
44
45 (autoload 'mime-parse-Content-Disposition "mime-parse"
46   "Parse STRING as field-body of Content-Disposition field.")
47 (autoload 'mime-read-Content-Disposition "mime-parse"
48   "Read field-body of Content-Disposition field from current-buffer,
49 and return parsed it.")
50
51 (autoload 'mime-parse-Content-Transfer-Encoding "mime-parse"
52   "Parse STRING as field-body of Content-Transfer-Encoding field.")
53 (autoload 'mime-read-Content-Transfer-Encoding "mime-parse"
54   "Read field-body of Content-Transfer-Encoding field from
55 current-buffer, and return it.")
56
57 (autoload 'mime-parse-msg-id "mime-parse"
58   "Parse TOKENS as msg-id of Content-Id or Message-Id field.")
59
60 (autoload 'mime-uri-parse-cid "mime-parse"
61   "Parse STRING as cid URI.")
62
63 (autoload 'mime-parse-buffer "mime-parse"
64   "Parse BUFFER as a MIME message.")
65
66 )
67
68 ;;; @ Entity Representation and Implementation
69 ;;;
70
71 (defmacro mime-entity-send (entity message &rest args)
72   `(luna-send ,entity ',(intern (format "mime-%s" (eval message))) ,@args))
73
74 (defun mime-open-entity (type location)
75   "Open an entity and return it.
76 TYPE is representation-type.
77 LOCATION is location of entity.  Specification of it is depended on
78 representation-type."
79   (require (intern (format "mm%s" type)))
80   (luna-make-entity (mm-expand-class-name type) :location location))
81
82 (luna-define-generic mime-entity-cooked-p (entity)
83   "Return non-nil if contents of ENTITY has been already code-converted.")
84
85
86 ;;; @ Entity as node of message
87 ;;;
88
89 (defun mime-entity-children (entity)
90   (or (mime-entity-children-internal entity)
91       (luna-send entity 'mime-entity-children entity)))
92
93 (defalias 'mime-entity-node-id 'mime-entity-node-id-internal)
94
95 (defun mime-entity-number (entity)
96   "Return entity-number of ENTITY."
97   (reverse (mime-entity-node-id-internal entity)))
98
99 (defun mime-find-entity-from-number (entity-number &optional message)
100   "Return entity from ENTITY-NUMBER in MESSAGE.
101 If MESSAGE is not specified, `mime-message-structure' is used."
102   (or message
103       (setq message mime-message-structure))
104   (let ((sn (car entity-number)))
105     (if (null sn)
106         message
107       (let ((rc (nth sn (mime-entity-children message))))
108         (if rc
109             (mime-find-entity-from-number (cdr entity-number) rc)
110           ))
111       )))
112
113 (defun mime-find-entity-from-node-id (entity-node-id &optional message)
114   "Return entity from ENTITY-NODE-ID in MESSAGE.
115 If MESSAGE is not specified, `mime-message-structure' is used."
116   (mime-find-entity-from-number (reverse entity-node-id) message))
117
118 (defun mime-find-entity-from-content-id (cid &optional message)
119   "Return entity from CID in MESSAGE.
120 If MESSAGE is not specified, `mime-message-structure' is used."
121   (or message
122       (setq message mime-message-structure))
123   (if (equal cid (mime-entity-read-field message "Content-Id"))
124       message
125     (let ((children (mime-entity-children message))
126           ret)
127       (while (and children
128                   (null (setq ret (mime-find-entity-from-content-id
129                                    cid (car children)))))
130         (setq children (cdr children)))
131       ret)))
132
133 (defun mime-entity-parent (entity &optional message)
134   "Return mother entity of ENTITY.
135 If MESSAGE is specified, it is regarded as root entity."
136   (if (equal entity message)
137       nil
138     (mime-entity-parent-internal entity)))
139
140 (defun mime-root-entity-p (entity &optional message)
141   "Return t if ENTITY is root-entity (message).
142 If MESSAGE is specified, it is regarded as root entity."
143   (null (mime-entity-parent entity message)))
144
145
146 ;;; @ Header buffer
147 ;;;
148
149 (luna-define-generic mime-entity-header-buffer (entity))
150
151 (luna-define-generic mime-goto-header-start-point (entity)
152   "Set buffer and point to header-start-position of ENTITY.")
153
154
155 ;;; @ Body buffer
156 ;;;
157
158 (luna-define-generic mime-entity-body-buffer (entity))
159
160 (luna-define-generic mime-entity-body-start-point (entity)
161   "Set buffer and point to body-start-position of ENTITY.")
162
163 (define-obsolete-function-alias
164   'mime-entity-body-start 'mime-entity-body-start-point)
165
166 (luna-define-generic mime-entity-body-end-point (entity)
167   "Set buffer and point to body-end-position of ENTITY.")
168
169 (define-obsolete-function-alias
170   'mime-entity-body-end 'mime-entity-body-end-point)
171
172 (luna-define-generic mime-goto-body-start-point (entity)
173   "Set buffer and point to body-start-position of ENTITY.")
174
175 (luna-define-generic mime-goto-body-end-point (entity)
176   "Set buffer and point to body-end-position of ENTITY.")
177
178
179 ;;; @ Entity buffer (obsolete)
180 ;;;
181
182 (luna-define-generic mime-entity-buffer (entity))
183
184 (make-obsolete
185  'mime-entity-buffer
186  "use mime-entity-header-buffer or mime-entity-body-buffer instead.")
187
188 (luna-define-generic mime-entity-point-min (entity))
189
190 (luna-define-generic mime-entity-point-max (entity))
191
192
193 ;;; @ Entity Header
194 ;;;
195
196 (luna-define-generic mime-entity-fetch-field (entity field-name)
197   "Return the value of the ENTITY's header field whose type is FIELD-NAME.")
198
199 (defun mime-fetch-field (field-name &optional entity)
200   "Return the value of the ENTITY's header field whose type is FIELD-NAME."
201   (if (symbolp field-name)
202       (setq field-name (symbol-name field-name))
203     )
204   (or entity
205       (setq entity mime-message-structure))
206   (mime-entity-fetch-field entity field-name)
207   )
208 (make-obsolete 'mime-fetch-field 'mime-entity-fetch-field)
209
210 (defun mime-entity-content-type (entity)
211   (or (mime-entity-content-type-internal entity)
212       (let ((ret (mime-entity-fetch-field entity "Content-Type")))
213         (if ret
214             (mime-entity-set-content-type-internal
215              entity (mime-parse-Content-Type ret))
216           ))))
217
218 (defun mime-entity-content-disposition (entity)
219   (or (mime-entity-content-disposition-internal entity)
220       (let ((ret (mime-entity-fetch-field entity "Content-Disposition")))
221         (if ret
222             (mime-entity-set-content-disposition-internal
223              entity (mime-parse-Content-Disposition ret))
224           ))))
225
226 (defun mime-entity-encoding (entity &optional default-encoding)
227   (or (mime-entity-encoding-internal entity)
228       (let ((ret (mime-entity-fetch-field entity "Content-Transfer-Encoding")))
229         (mime-entity-set-encoding-internal
230          entity
231          (or (and ret (mime-parse-Content-Transfer-Encoding ret))
232              default-encoding "7bit"))
233         )))
234
235 (defvar mime-field-parser-alist
236   '((Return-Path        . std11-parse-route-addr)
237     
238     (Reply-To           . std11-parse-addresses)
239     
240     (Sender             . std11-parse-mailbox)
241     (From               . std11-parse-addresses)
242
243     (Resent-Reply-To    . std11-parse-addresses)
244     
245     (Resent-Sender      . std11-parse-mailbox)
246     (Resent-From        . std11-parse-addresses)
247
248     (To                 . std11-parse-addresses)
249     (Resent-To          . std11-parse-addresses)
250     (Cc                 . std11-parse-addresses)
251     (Resent-Cc          . std11-parse-addresses)
252     (Bcc                . std11-parse-addresses)
253     (Resent-Bcc         . std11-parse-addresses)
254     
255     (Message-Id         . mime-parse-msg-id)
256     (Recent-Message-Id  . mime-parse-msg-id)
257     
258     (In-Reply-To        . std11-parse-msg-ids)
259     (References         . std11-parse-msg-ids)
260     
261     (Content-Id         . mime-parse-msg-id)
262     ))
263
264 (defun mime-entity-read-field (entity field-name)
265   (let ((sym (if (symbolp field-name)
266                  (prog1
267                      field-name
268                    (setq field-name (symbol-name field-name)))
269                (capitalize (capitalize field-name)))))
270     (cond ((eq sym 'Content-Type)
271            (mime-entity-content-type entity)
272            )
273           ((eq sym 'Content-Disposition)
274            (mime-entity-content-disposition entity)
275            )
276           ((eq sym 'Content-Transfer-Encoding)
277            (mime-entity-encoding entity)
278            )
279           (t
280            (let* ((header (mime-entity-parsed-header-internal entity))
281                   (field (cdr (assq sym header))))
282              (or field
283                  (let ((field-body (mime-entity-fetch-field entity field-name))
284                        parser)
285                    (when field-body
286                      (setq parser
287                            (cdr (assq sym mime-field-parser-alist)))
288                      (setq field
289                            (if parser
290                                (funcall parser
291                                         (eword-lexical-analyze field-body))
292                              (mime-decode-field-body field-body sym 'plain)
293                              ))
294                      (mime-entity-set-parsed-header-internal
295                       entity (put-alist sym field header))
296                      field))))))))
297
298 (defun mime-read-field (field-name &optional entity)
299   (or entity
300       (setq entity mime-message-structure))
301   (mime-entity-read-field entity field-name)
302   )
303 (make-obsolete 'mime-read-field 'mime-entity-read-field)
304
305 (luna-define-generic mime-insert-header (entity &optional invisible-fields
306                                                 visible-fields)
307   "Insert before point a decoded header of ENTITY.")
308
309
310 ;;; @ Entity Attributes
311 ;;;
312
313 (luna-define-generic mime-entity-name (entity)
314   "Return name of the ENTITY.")
315
316 (defun mime-entity-uu-filename (entity)
317   (if (member (mime-entity-encoding entity) mime-uuencode-encoding-name-list)
318       (save-excursion
319         (mime-goto-body-start-point entity)
320         (if (re-search-forward "^begin [0-9]+ "
321                                (mime-entity-body-end-point entity) t)
322             (if (looking-at ".+$")
323                 (buffer-substring (match-beginning 0)(match-end 0))
324               )))))
325
326 (defun mime-entity-filename (entity)
327   "Return filename of ENTITY."
328   (or (mime-entity-uu-filename entity)
329       (mime-content-disposition-filename
330        (mime-entity-content-disposition entity))
331       (cdr (let ((param (mime-content-type-parameters
332                          (mime-entity-content-type entity))))
333              (or (assoc "name" param)
334                  (assoc "x-name" param))
335              ))))
336
337
338 (defsubst mime-entity-media-type (entity)
339   (mime-content-type-primary-type (mime-entity-content-type entity)))
340 (defsubst mime-entity-media-subtype (entity)
341   (mime-content-type-subtype (mime-entity-content-type entity)))
342 (defsubst mime-entity-parameters (entity)
343   (mime-content-type-parameters (mime-entity-content-type entity)))
344 (defsubst mime-entity-type/subtype (entity-info)
345   (mime-type/subtype-string (mime-entity-media-type entity-info)
346                             (mime-entity-media-subtype entity-info)))
347
348
349 ;;; @ Entity Content
350 ;;;
351
352 (luna-define-generic mime-entity-content (entity)
353   "Return content of ENTITY as byte sequence (string).")
354
355 (luna-define-generic mime-insert-entity-content (entity)
356   "Insert content of ENTITY at point.")
357
358 (luna-define-generic mime-write-entity-content (entity filename)
359   "Write content of ENTITY into FILENAME.")
360
361 (luna-define-generic mime-insert-text-content (entity)
362   "Insert decoded text body of ENTITY.")
363
364 (luna-define-generic mime-insert-entity (entity)
365   "Insert header and body of ENTITY at point.")
366
367 (luna-define-generic mime-write-entity (entity filename)
368   "Write header and body of ENTITY into FILENAME.")
369
370 (luna-define-generic mime-write-entity-body (entity filename)
371   "Write body of ENTITY into FILENAME.")
372
373
374 ;;; @ end
375 ;;;
376
377 (provide 'mime)
378
379 ;;; mime.el ends here