Fixed.
[riece] / lisp / riece-log.el
1 ;;; riece-log.el --- saving irc logs add-on
2 ;; Copyright (C) 2003 OHASHI Akira
3
4 ;; Author: OHASHI Akira <bg66@koka-in.org>
5 ;; Keywords: IRC, riece
6
7 ;; This file is part of Riece.
8
9 ;; This program is free software; you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation; either version 2, or (at your option)
12 ;; any later version.
13
14 ;; This program is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 ;; GNU General Public License for more details.
18
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 ;; Boston, MA 02111-1307, USA.
23
24 ;;; Commentary:
25
26 ;; This add-on saves irc logs for every channel.
27
28 ;; To use, add the following line to your ~/.riece/init.el:
29 ;; (add-to-list 'riece-addons 'riece-log)
30
31 ;;; Code:
32
33 (require 'riece-message)
34 (require 'riece-button)
35
36 (defgroup riece-log nil
37   "Save irc log"
38   :group 'riece)
39
40 (defcustom riece-log-directory
41   (expand-file-name "log" riece-directory)
42   "*Where to look for log files."
43   :type 'directory
44   :group 'riece-log)
45
46 (defcustom riece-log-directory-map nil
47   "*The map of channel name and directory name."
48   :type '(repeat (cons (string :tag "Channel name")
49                        (string :tag "Directory name")))
50   :group 'riece-log)
51
52 (defcustom riece-log-flashback 10
53   "*If non-nil, irc messages flash back from log files.
54 If integer, flash back only this line numbers. t means all lines."
55   :type '(choice (integer :tag "line numbers")
56                  (boolean :tag "flash back or not"))
57   :group 'riece-log)
58
59 (defcustom riece-log-coding-system nil
60   "*Coding system used for log files."
61   :type 'symbol
62   :group 'riece-log)
63
64 (defcustom riece-log-file-name-coding-system
65   (if (boundp 'file-name-coding-system)
66       file-name-coding-system)
67   "*Coding system used for filenames of log files."
68   :type 'symbol
69   :group 'riece-log)
70
71 (defcustom riece-log-open-directory-function 'find-file
72   "*Function for opening a directory."
73   :type 'function
74   :group 'riece-log)
75
76 (defvar riece-log-enabled nil)
77
78 (defconst riece-log-description
79   "Saving IRC logs")
80
81 (defun riece-log-display-message-function (message)
82   (if riece-log-enabled
83       (let ((file (riece-log-get-file (riece-message-target message)))
84             (coding-system-for-write riece-log-coding-system))
85         (unless (file-directory-p (file-name-directory file))
86           (make-directory (file-name-directory file) t))
87         (write-region (concat (format-time-string "%H:%M") " "
88                               (riece-format-message message))
89                       nil file t 0))))
90
91 (defun riece-log-get-file (identity)
92   (expand-file-name
93    (concat (format-time-string "%Y%m%d") ".log")
94    (riece-log-get-directory identity)))
95
96 (defun riece-log-get-files (identity)
97   (let ((files (directory-files (riece-log-get-directory identity) t
98                                 (concat "^"
99                                         (riece-make-interval-regexp "[0-9]" 8)
100                                         "\\.log$")
101                                 t)))
102     (nreverse (sort files #'string-lessp))))
103
104 (defun riece-log-get-directory (identity)
105   (let ((channel (riece-identity-canonicalize-prefix
106                   (riece-identity-prefix identity)))
107         (server (riece-identity-server identity))
108         (map (assoc (riece-format-identity identity) riece-log-directory-map))
109         name)
110     (cond (map (setq name (cdr map)))
111           ((string-match riece-strict-channel-regexp channel)
112            (let ((suffix (match-string 2 channel)))
113              (setq name (substring channel (match-end 1) (match-beginning 2)))
114              (when (and (stringp suffix)
115                         (string-match "^:\\*\\.\\(.*\\)" suffix))
116                (setq name (concat name "-" (match-string 1 suffix))))))
117           (t (setq name "priv")))
118     (if server
119         (expand-file-name name (expand-file-name server riece-log-directory))
120       (expand-file-name name riece-log-directory))))
121
122 (defun riece-log-get-directory-1 (identity)
123   (let ((prefix (riece-identity-canonicalize-prefix
124                  (riece-identity-prefix identity)))
125         (server (riece-identity-server identity))
126         (map (assoc (riece-format-identity identity) riece-log-directory-map))
127         name)
128     (if map
129         (setq name (cdr map))
130       (expand-file-name (riece-log-encode-file-name prefix)
131                         (expand-file-name
132                          (concat "." (riece-log-encode-file-name server))
133                          riece-log-directory)))))
134
135 (defun riece-log-encode-file-name (file-name)
136   (if riece-log-file-name-coding-system
137       (setq file-name
138             (encode-coding-string file-name
139                                   riece-log-file-name-coding-system)))
140   (let ((index 0)
141         c)
142     (while (string-match "[^-0-9A-Za-z_\x80-\xFF]" file-name index)
143       (setq c (aref file-name (match-beginning 0)))
144       (if (eq c ?=)
145           (setq file-name (replace-match "==" nil t file-name)
146                 index (1+ (match-end 0)))
147         (setq file-name (replace-match (format "=%02X" c) nil t file-name)
148               index (+ 2 (match-end 0)))))
149     file-name))
150
151 (defun riece-log-decode-file-name (file-name)
152   (let ((index 0))
153     (while (string-match "==\\|=\\([0-7][0-9A-F]\\)" file-name index)
154       (setq file-name (replace-match
155                        (if (eq (aref file-name (1- (match-end 0))) ?=)
156                            "="
157                          (char-to-string
158                           (car (read-from-string
159                                 (concat "?\\x" (match-string 1 file-name))))))
160                        nil t file-name)
161             index (1+ (match-beginning 0))))
162     file-name)
163   (if riece-log-file-name-coding-system
164       (setq file-name
165             (decode-coding-string file-name
166                                   riece-log-file-name-coding-system)))
167   file-name)
168
169 (defun riece-log-insert (identity lines)
170   "Insert logs for IDENTITY at most LINES.
171 If LINES is t, insert today's logs entirely."
172   (if (eq lines t)
173       (let ((file (riece-log-get-file identity)))
174         (if (file-exists-p file)
175             (insert-file-contents file)))
176     (let ((files (riece-log-get-files identity))
177           (lines (- lines))
178           date point)
179       (while (and (< lines 0) files)
180         (if (and (file-exists-p (car files))
181                  (string-match (concat "\\([0-9][0-9][0-9][0-9]\\)"
182                                        "\\([0-9][0-9]\\)\\([0-9][0-9]\\).log$")
183                                (car files)))
184             (save-restriction
185               (narrow-to-region (point) (point))
186               (setq date (concat " (" (match-string 1 (car files)) "/"
187                                  (match-string 2 (car files)) "/"
188                                  (match-string 3 (car files)) ")"))
189               (insert-file-contents (car files))
190               (goto-char (point-max))
191               (setq lines (forward-line lines))
192               (delete-region (point-min) (point))
193               (while (not (eobp))
194                 (end-of-line)
195                 (insert date)
196                 (forward-line))
197               (goto-char (point-min))))
198         (setq files (cdr files))))))
199
200 (defun riece-log-flashback (identity)
201   (when riece-log-flashback
202     (let (buffer-read-only
203           (point (goto-char (point-max))))
204       (insert (with-temp-buffer
205                 (riece-log-insert identity riece-log-flashback)
206                 (buffer-string)))
207       (goto-char point)
208       (while (re-search-forward
209               "^[0-9][0-9]:[0-9][0-9] [<>]\\([^<>]+\\)[<>] " nil t)
210         (put-text-property (match-beginning 1) (match-end 1)
211                            'riece-identity
212                            (riece-make-identity
213                             (riece-match-string-no-properties 1)
214                             (riece-identity-server identity))))
215       (when (and (memq 'riece-button riece-addons)
216                  riece-button-enabled)
217         (riece-button-update-buffer))
218       (goto-char (point-max))
219       (set-window-point (get-buffer-window (current-buffer))
220                         (point)))))
221
222 (defun riece-log-open-directory (&optional channel)
223   (interactive)
224   (let ((directory (riece-log-get-directory
225                     (or channel riece-current-channel))))
226     (if (file-directory-p directory)
227         (funcall riece-log-open-directory-function directory)
228       (error "No log directory"))))
229
230 (defun riece-log-requires ()
231   (if (memq 'riece-button riece-addons)
232       '(riece-button)))
233
234 (defun riece-log-insinuate ()
235   ;; FIXME: Use `riece-after-insert-functions' for trapping change,
236   ;; notice, wallops and so on. But must add argument.
237   (add-hook 'riece-after-display-message-functions
238             'riece-log-display-message-function)
239   (add-hook 'riece-channel-buffer-create-functions
240             'riece-log-flashback))
241
242 (defvar riece-command-mode-map)
243 (defun riece-log-enable ()
244   (define-key riece-command-mode-map "\C-cd" 'riece-log-open-directory)
245   (setq riece-log-enabled t))
246
247 (defun riece-log-disable ()
248   (define-key riece-command-mode-map "\C-cd" nil)
249   (setq riece-log-enabled nil))
250
251 (provide 'riece-log)
252
253 ;;; riece-log.el ends here