Undo.
[riece] / lisp / riece-doctor.el
1 ;;; riece-doctor.el --- "become a psychotherapist" add-on
2 ;; Copyright (C) 1998-2003 Daiki Ueno
3
4 ;; Author: Daiki Ueno <ueno@unixuser.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 allows you to become a psychotherapist.
27
28 ;; To use, add the following line to your ~/.riece/init.el:
29 ;; (add-to-list 'riece-addons 'riece-doctor t)
30
31 ;;; Code:
32
33 (require 'riece-globals)
34 (require 'riece-identity)
35 (require 'riece-message)
36 (require 'riece-server)
37
38 (defgroup riece-doctor nil
39   "Interface to doctor.el"
40   :prefix "riece-"
41   :group 'riece)
42
43 (defcustom riece-doctor-hello-regexp "^, doctor"
44   "Pattern of string patients start consultation."
45   :type 'string
46   :group 'riece-doctor)
47
48 (defcustom riece-doctor-bye-regexp "^, bye doctor"
49   "Pattern of string patients end consultation."
50   :type 'string
51   :group 'riece-doctor)
52
53 (defvar riece-doctor-patients nil)
54
55 (autoload 'doctor-mode "doctor")
56 (autoload 'doctor-read-print "doctor")
57
58 (defun riece-doctor-buffer-name (user)
59   (concat " *riece-doctor*" (riece-format-identity user)))
60
61 (defun riece-doctor-reply (target string)
62   (riece-display-message
63    (riece-make-message (riece-make-identity riece-real-nickname
64                                             riece-server-name)
65                        (riece-make-identity target riece-server-name)
66                        string 'notice t))
67   (riece-send-string (format "NOTICE %s :%s\r\n" target string)))
68
69 (defun riece-doctor-after-privmsg-hook (prefix string)
70   (let* ((user (riece-make-identity (riece-prefix-nickname prefix)
71                                     riece-server-name))
72          (parameters (riece-split-parameters string))
73          (targets (split-string (car parameters) ","))
74          (message (nth 1 parameters)))
75     (if (string-match riece-doctor-hello-regexp message)
76         (if (riece-identity-member user riece-doctor-patients)
77             (riece-doctor-reply
78              (car targets)
79              "You are already talking with me.")
80           (save-excursion
81             (set-buffer (get-buffer-create (riece-doctor-buffer-name user)))
82             (erase-buffer)
83             (doctor-mode))
84           (setq riece-doctor-patients (cons user riece-doctor-patients))
85           (riece-doctor-reply
86            (car targets)           
87            "I am the psychotherapist.  Please, describe your problems."))
88       (if (string-match riece-doctor-bye-regexp message)
89           (let ((pointer (riece-identity-member user riece-doctor-patients)))
90             (when pointer
91               (kill-buffer (riece-doctor-buffer-name user))
92               (setq riece-doctor-patients (delq (car pointer)
93                                                 riece-doctor-patients))
94               (riece-doctor-reply (car targets) "Good bye.")))
95         (if (riece-identity-member user riece-doctor-patients)
96             (let (string)
97               (save-excursion
98                 (set-buffer (get-buffer (riece-doctor-buffer-name user)))
99                 (goto-char (point-max))
100                 (insert message "\n")
101                 (let ((point (point)))
102                   (doctor-read-print)
103                   (setq string (buffer-substring (1+ point) (- (point) 2))))
104                 (with-temp-buffer
105                   (insert string)
106                   (subst-char-in-region (point-min) (point-max) ?\n ? )
107                   (setq string (buffer-string))))
108               (riece-doctor-reply (car targets) string)))))))
109
110 (defun riece-doctor-insinuate ()
111   (add-hook 'riece-after-privmsg-hook 'riece-doctor-after-privmsg-hook))
112
113 (provide 'riece-doctor)
114
115 ;;; riece-doctor.el ends here