Space/tab mixup.
[bpt/emacs.git] / lisp / net / rcirc.el
CommitLineData
bd43c990
RS
1;;; rcirc.el --- default, simple IRC client.
2
ceb4c4d3 3;; Copyright (C) 2005, 2006 Free Software Foundation, Inc.
bd43c990
RS
4
5;; Author: Ryan Yeske
bd43c990
RS
6;; URL: http://www.nongnu.org/rcirc
7;; Keywords: comm
8
b71cef5c 9;; This file is part of GNU Emacs.
bd43c990
RS
10
11;; This file is free software; you can redistribute it and/or modify
12;; it under the terms of the GNU General Public License as published by
13;; the Free Software Foundation; either version 2, or (at your option)
14;; any later version.
15
16;; This file is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
21;; You should have received a copy of the GNU General Public License
b71cef5c
RF
22;; along with GNU Emacs; see the file COPYING. If not, write to the
23;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24;; Boston, MA 02110-1301, USA.
bd43c990
RS
25
26;;; Commentary:
27
adf794e4
EZ
28;; Internet Relay Chat (IRC) is a form of instant communication over
29;; the Internet. It is mainly designed for group (many-to-many)
30;; communication in discussion forums called channels, but also allows
31;; one-to-one communication.
32
33;; Rcirc has simple defaults and clear and consistent behaviour.
34;; Message arrival timestamps, activity notification on the modeline,
35;; message filling, nick completion, and keepalive pings are all
36;; enabled by default, but can easily be adjusted or turned off. Each
37;; discussion takes place in its own buffer and there is a single
38;; server buffer per connection.
bd43c990 39
bd43c990
RS
40;; Open a new irc connection with:
41;; M-x irc RET
42
7faa3f8c
MB
43;;; Todo:
44
bd43c990
RS
45;;; Code:
46
47(require 'ring)
48(require 'time-date)
49(eval-when-compile (require 'cl))
50
adf794e4
EZ
51(defgroup rcirc nil
52 "Simple IRC client."
53 :version "22.1"
2fbed782 54 :prefix "rcirc-"
e8f10ddb 55 :link '(custom-manual "(rcirc)")
adf794e4
EZ
56 :group 'applications)
57
a2524d26 58(defcustom rcirc-default-server "irc.freenode.net"
adf794e4
EZ
59 "The default server to connect to."
60 :type 'string
61 :group 'rcirc)
bd43c990 62
a2524d26 63(defcustom rcirc-default-port 6667
adf794e4
EZ
64 "The default port to connect to."
65 :type 'integer
66 :group 'rcirc)
bd43c990 67
a2524d26 68(defcustom rcirc-default-nick (user-login-name)
adf794e4
EZ
69 "Your nick."
70 :type 'string
71 :group 'rcirc)
bd43c990 72
a2524d26 73(defcustom rcirc-default-user-name (user-login-name)
adf794e4
EZ
74 "Your user name sent to the server when connecting."
75 :type 'string
76 :group 'rcirc)
bd43c990 77
a2524d26 78(defcustom rcirc-default-user-full-name (if (string= (user-full-name) "")
18aa2c90 79 rcirc-default-user-name
02f47e86 80 (user-full-name))
adf794e4
EZ
81 "The full name sent to the server when connecting."
82 :type 'string
83 :group 'rcirc)
bd43c990 84
02f47e86 85(defcustom rcirc-startup-channels-alist '(("^irc.freenode.net$" "#rcirc"))
bd43c990 86 "Alist of channels to join at startup.
adf794e4
EZ
87Each element looks like (SERVER-REGEXP . CHANNEL-LIST)."
88 :type '(alist :key-type string :value-type (repeat string))
89 :group 'rcirc)
bd43c990 90
adf794e4
EZ
91(defcustom rcirc-fill-flag t
92 "*Non-nil means line-wrap messages printed in channel buffers."
93 :type 'boolean
94 :group 'rcirc)
bd43c990 95
adf794e4
EZ
96(defcustom rcirc-fill-column nil
97 "*Column beyond which automatic line-wrapping should happen.
2e398771 98If nil, use value of `fill-column'. If 'frame-width, use the
adf794e4
EZ
99maximum frame width."
100 :type '(choice (const :tag "Value of `fill-column'")
101 (const :tag "Full frame width" frame-width)
102 (integer :tag "Number of columns"))
103 :group 'rcirc)
bd43c990 104
adf794e4 105(defcustom rcirc-fill-prefix nil
bd43c990
RS
106 "*Text to insert before filled lines.
107If nil, calculate the prefix dynamically to line up text
adf794e4
EZ
108underneath each nick."
109 :type '(choice (const :tag "Dynamic" nil)
110 (string :tag "Prefix text"))
111 :group 'rcirc)
bd43c990 112
adf794e4
EZ
113(defvar rcirc-ignore-buffer-activity-flag nil
114 "If non-nil, ignore activity in this buffer.")
115(make-variable-buffer-local 'rcirc-ignore-buffer-activity-flag)
bd43c990 116
a2524d26
EZ
117(defvar rcirc-low-priority-flag nil
118 "If non-nil, activity in this buffer is considered low priority.")
119(make-variable-buffer-local 'rcirc-low-priority-flag)
120
adf794e4 121(defcustom rcirc-time-format "%H:%M "
bd43c990 122 "*Describes how timestamps are printed.
adf794e4
EZ
123Used as the first arg to `format-time-string'."
124 :type 'string
125 :group 'rcirc)
bd43c990 126
adf794e4
EZ
127(defcustom rcirc-input-ring-size 1024
128 "*Size of input history ring."
129 :type 'integer
130 :group 'rcirc)
bd43c990 131
adf794e4 132(defcustom rcirc-read-only-flag t
2e398771 133 "*Non-nil means make text in IRC buffers read-only."
adf794e4
EZ
134 :type 'boolean
135 :group 'rcirc)
bd43c990 136
adf794e4 137(defcustom rcirc-buffer-maximum-lines nil
bd43c990
RS
138 "*The maximum size in lines for rcirc buffers.
139Channel buffers are truncated from the top to be no greater than this
adf794e4
EZ
140number. If zero or nil, no truncating is done."
141 :type '(choice (const :tag "No truncation" nil)
142 (integer :tag "Number of lines"))
143 :group 'rcirc)
bd43c990 144
d40ac716 145(defcustom rcirc-scroll-show-maximum-output t
7faa3f8c 146 "*If non-nil, scroll buffer to keep the point at the bottom of
f8db61b2
EZ
147the window."
148 :type 'boolean
149 :group 'rcirc)
7faa3f8c 150
db58efbf
EZ
151(defcustom rcirc-authinfo nil
152 "List of authentication passwords.
153Each element of the list is a list with a SERVER-REGEXP string
154and a method symbol followed by method specific arguments.
155
156The valid METHOD symbols are `nickserv', `chanserv' and
157`bitlbee'.
bd43c990
RS
158
159The required ARGUMENTS for each METHOD symbol are:
db58efbf
EZ
160 `nickserv': NICK PASSWORD
161 `chanserv': NICK CHANNEL PASSWORD
162 `bitlbee': NICK PASSWORD
bd43c990
RS
163
164Example:
db58efbf
EZ
165 ((\"freenode\" nickserv \"bob\" \"p455w0rd\")
166 (\"freenode\" chanserv \"bob\" \"#bobland\" \"passwd99\")
167 (\"bitlbee\" bitlbee \"robert\" \"sekrit\"))"
168 :type '(alist :key-type (string :tag "Server")
169 :value-type (choice (list :tag "NickServ"
170 (const nickserv)
171 (string :tag "Nick")
172 (string :tag "Password"))
173 (list :tag "ChanServ"
174 (const chanserv)
175 (string :tag "Nick")
176 (string :tag "Channel")
177 (string :tag "Password"))
178 (list :tag "BitlBee"
179 (const bitlbee)
180 (string :tag "Nick")
181 (string :tag "Password"))))
adf794e4 182 :group 'rcirc)
bd43c990 183
db58efbf 184(defcustom rcirc-auto-authenticate-flag t
bd43c990 185 "*Non-nil means automatically send authentication string to server.
db58efbf 186See also `rcirc-authinfo'."
adf794e4
EZ
187 :type 'boolean
188 :group 'rcirc)
bd43c990 189
adf794e4 190(defcustom rcirc-prompt "> "
2e398771 191 "Prompt string to use in IRC buffers.
bd43c990
RS
192
193The following replacements are made:
194%n is your nick.
195%s is the server.
196%t is the buffer target, a channel or a user.
197
adf794e4
EZ
198Setting this alone will not affect the prompt;
199use either M-x customize or also call `rcirc-update-prompt'."
200 :type 'string
201 :set 'rcirc-set-changed
202 :initialize 'custom-initialize-default
203 :group 'rcirc)
204
f8db61b2
EZ
205(defcustom rcirc-keywords nil
206 "List of keywords to highlight in message text."
207 :type '(repeat string)
208 :group 'rcirc)
209
2c8abe90
AS
210(defcustom rcirc-ignore-list ()
211 "List of ignored nicks.
212Use /ignore to list them, use /ignore NICK to add or remove a nick."
213 :type '(repeat string)
214 :group 'rcirc)
215
216(defvar rcirc-ignore-list-automatic ()
217 "List of ignored nicks added to `rcirc-ignore-list' because of renaming.
218When an ignored person renames, their nick is added to both lists.
219Nicks will be removed from the automatic list on follow-up renamings or
220parts.")
221
f8db61b2
EZ
222(defcustom rcirc-bright-nicks nil
223 "List of nicks to be emphasized.
02f47e86 224See `rcirc-bright-nick' face."
f8db61b2 225 :type '(repeat string)
02f47e86
MB
226 :group 'rcirc)
227
f8db61b2
EZ
228(defcustom rcirc-dim-nicks nil
229 "List of nicks to be deemphasized.
02f47e86 230See `rcirc-dim-nick' face."
f8db61b2 231 :type '(repeat string)
02f47e86
MB
232 :group 'rcirc)
233
adf794e4
EZ
234(defcustom rcirc-print-hooks nil
235 "Hook run after text is printed.
236Called with 5 arguments, PROCESS, SENDER, RESPONSE, TARGET and TEXT."
237 :type 'hook
238 :group 'rcirc)
bd43c990 239
db58efbf
EZ
240(defcustom rcirc-always-use-server-buffer-flag nil
241 "Non-nil means messages without a channel target will go to the server buffer."
242 :type 'boolean
243 :group 'rcirc)
244
02f47e86 245(defcustom rcirc-decode-coding-system 'utf-8
a2524d26
EZ
246 "Coding system used to decode incoming irc messages."
247 :type 'coding-system
248 :group 'rcirc)
249
250(defcustom rcirc-encode-coding-system 'utf-8
251 "Coding system used to encode outgoing irc messages."
252 :type 'coding-system
253 :group 'rcirc)
254
255(defcustom rcirc-coding-system-alist nil
f8db61b2 256 "Alist to decide a coding system to use for a channel I/O operation.
a2524d26
EZ
257The format is ((PATTERN . VAL) ...).
258PATTERN is either a string or a cons of strings.
259If PATTERN is a string, it is used to match a target.
260If PATTERN is a cons of strings, the car part is used to match a
261target, and the cdr part is used to match a server.
262VAL is either a coding system or a cons of coding systems.
263If VAL is a coding system, it is used for both decoding and encoding
264messages.
265If VAL is a cons of coding systems, the car part is used for decoding,
266and the cdr part is used for encoding."
267 :type '(alist :key-type (choice (string :tag "Channel Regexp")
268 (cons (string :tag "Channel Regexp")
269 (string :tag "Server Regexp")))
270 :value-type (choice coding-system
271 (cons (coding-system :tag "Decode")
272 (coding-system :tag "Encode"))))
273 :group 'rcirc)
274
275(defcustom rcirc-multiline-major-mode 'fundamental-mode
276 "Major-mode function to use in multiline edit buffers."
277 :type 'function
278 :group 'rcirc)
279
280(defvar rcirc-nick nil)
281
bd43c990
RS
282(defvar rcirc-prompt-start-marker nil)
283(defvar rcirc-prompt-end-marker nil)
284
285(defvar rcirc-nick-table nil)
286
2c8abe90
AS
287(defvar rcirc-nick-syntax-table
288 (let ((table (make-syntax-table text-mode-syntax-table)))
289 (mapc (lambda (c) (modify-syntax-entry c "w" table))
290 "[]\\`_^{|}-")
291 (modify-syntax-entry ?' "_" table)
292 table)
293 "Syntax table which includes all nick characters as word constituents.")
294
adf794e4
EZ
295;; each process has an alist of (target . buffer) pairs
296(defvar rcirc-buffer-alist nil)
297
bd43c990 298(defvar rcirc-activity nil
a2524d26 299 "List of buffers with unviewed activity.")
bd43c990
RS
300
301(defvar rcirc-activity-string ""
302 "String displayed in modeline representing `rcirc-activity'.")
303(put 'rcirc-activity-string 'risky-local-variable t)
304
a2524d26
EZ
305(defvar rcirc-server-buffer nil
306 "The server buffer associated with this channel buffer.")
bd43c990
RS
307
308(defvar rcirc-target nil
309 "The channel or user associated with this buffer.")
310
bd43c990
RS
311(defvar rcirc-urls nil
312 "List of urls seen in the current buffer.")
7faa3f8c 313(put 'rcirc-urls 'permanent-local t)
bd43c990
RS
314
315(defvar rcirc-keepalive-seconds 60
a2524d26
EZ
316 "Number of seconds between keepalive pings.
317If nil, do not send keepalive pings.")
bd43c990 318
adf794e4 319(defconst rcirc-id-string (concat "rcirc on GNU Emacs " emacs-version))
bd43c990 320\f
bd43c990
RS
321(defvar rcirc-startup-channels nil)
322;;;###autoload
db58efbf 323(defun rcirc (arg)
bd43c990 324 "Connect to IRC.
db58efbf
EZ
325If ARG is non-nil, prompt for a server to connect to."
326 (interactive "P")
327 (if arg
a2524d26
EZ
328 (let* ((server (read-string "IRC Server: " rcirc-default-server))
329 (port (read-string "IRC Port: " (number-to-string rcirc-default-port)))
330 (nick (read-string "IRC Nick: " rcirc-default-nick))
db58efbf
EZ
331 (channels (split-string
332 (read-string "IRC Channels: "
a2524d26 333 (mapconcat 'identity (rcirc-startup-channels server) " "))
db58efbf 334 "[, ]+" t)))
a2524d26 335 (rcirc-connect server port nick rcirc-default-user-name rcirc-default-user-full-name
db58efbf
EZ
336 channels))
337 ;; make new connection using defaults unless already connected to
338 ;; the default rcirc-server
a2524d26 339 (let (connected)
db58efbf 340 (dolist (p (rcirc-process-list))
a2524d26 341 (when (string= rcirc-default-server (process-name p))
db58efbf
EZ
342 (setq connected p)))
343 (if (not connected)
a2524d26
EZ
344 (rcirc-connect rcirc-default-server rcirc-default-port
345 rcirc-default-nick rcirc-default-user-name
346 rcirc-default-user-full-name
347 (rcirc-startup-channels rcirc-default-server))
db58efbf 348 (switch-to-buffer (process-buffer connected))
a2524d26
EZ
349 (message "Connected to %s"
350 (process-contact (get-buffer-process (current-buffer))
351 :host))))))
bd43c990
RS
352;;;###autoload
353(defalias 'irc 'rcirc)
354
355\f
356(defvar rcirc-process-output nil)
bd43c990
RS
357(defvar rcirc-topic nil)
358(defvar rcirc-keepalive-timer nil)
ad8121fe 359(defvar rcirc-last-server-message-time nil)
a2524d26 360(defvar rcirc-server nil)
8d214091
RF
361
362;;;###autoload
2fbed782 363(defun rcirc-connect (&optional server port nick user-name full-name startup-channels)
bd43c990
RS
364 (save-excursion
365 (message "Connecting to %s..." server)
366 (let* ((inhibit-eol-conversion)
2fbed782
EZ
367 (port-number (if port
368 (if (stringp port)
369 (string-to-number port)
370 port)
a2524d26
EZ
371 rcirc-default-port))
372 (server (or server rcirc-default-server))
373 (nick (or nick rcirc-default-nick))
374 (user-name (or user-name rcirc-default-user-name))
375 (full-name (or full-name rcirc-default-user-full-name))
376 (startup-channels startup-channels)
bd43c990
RS
377 (process (open-network-stream server nil server port-number)))
378 ;; set up process
379 (set-process-coding-system process 'raw-text 'raw-text)
adf794e4 380 (switch-to-buffer (rcirc-generate-new-buffer-name process nil))
bd43c990 381 (set-process-buffer process (current-buffer))
bd43c990 382 (rcirc-mode process nil)
a2524d26
EZ
383 (set-process-sentinel process 'rcirc-sentinel)
384 (set-process-filter process 'rcirc-filter)
385 (make-local-variable 'rcirc-server)
386 (setq rcirc-server server)
adf794e4
EZ
387 (make-local-variable 'rcirc-buffer-alist)
388 (setq rcirc-buffer-alist nil)
bd43c990
RS
389 (make-local-variable 'rcirc-nick-table)
390 (setq rcirc-nick-table (make-hash-table :test 'equal))
bd43c990
RS
391 (make-local-variable 'rcirc-nick)
392 (setq rcirc-nick nick)
393 (make-local-variable 'rcirc-process-output)
394 (setq rcirc-process-output nil)
bd43c990
RS
395 (make-local-variable 'rcirc-startup-channels)
396 (setq rcirc-startup-channels startup-channels)
ad8121fe
EZ
397 (make-local-variable 'rcirc-last-server-message-time)
398 (setq rcirc-last-server-message-time (current-time))
bd43c990
RS
399
400 ;; identify
401 (rcirc-send-string process (concat "NICK " nick))
402 (rcirc-send-string process (concat "USER " user-name
403 " hostname servername :"
404 full-name))
405
406 ;; setup ping timer if necessary
a2524d26
EZ
407 (when rcirc-keepalive-seconds
408 (unless rcirc-keepalive-timer
409 (setq rcirc-keepalive-timer
410 (run-at-time 0 rcirc-keepalive-seconds 'rcirc-keepalive))))
bd43c990
RS
411
412 (message "Connecting to %s...done" server)
413
414 ;; return process object
415 process)))
416
adf794e4
EZ
417(defmacro with-rcirc-process-buffer (process &rest body)
418 (declare (indent 1) (debug t))
419 `(with-current-buffer (process-buffer ,process)
420 ,@body))
421
a2524d26
EZ
422(defmacro with-rcirc-server-buffer (&rest body)
423 (declare (indent 0) (debug t))
424 `(with-current-buffer rcirc-server-buffer
425 ,@body))
426
bd43c990 427(defun rcirc-keepalive ()
ad8121fe
EZ
428 "Send keep alive pings to active rcirc processes.
429Kill processes that have not received a server message since the
430last ping."
bd43c990
RS
431 (if (rcirc-process-list)
432 (mapc (lambda (process)
adf794e4 433 (with-rcirc-process-buffer process
ad8121fe
EZ
434 (if (> (cadr (time-since rcirc-last-server-message-time))
435 rcirc-keepalive-seconds)
436 (kill-process process)
437 (rcirc-send-string process (concat "PING " rcirc-server)))))
bd43c990
RS
438 (rcirc-process-list))
439 (cancel-timer rcirc-keepalive-timer)
440 (setq rcirc-keepalive-timer nil)))
441
adf794e4
EZ
442(defvar rcirc-debug-buffer " *rcirc debug*")
443(defvar rcirc-debug-flag nil
444 "If non-nil, write information to `rcirc-debug-buffer'.")
445(defun rcirc-debug (process text)
bd43c990 446 "Add an entry to the debug log including PROCESS and TEXT.
2e398771 447Debug text is written to `rcirc-debug-buffer' if `rcirc-debug-flag'
adf794e4
EZ
448is non-nil."
449 (when rcirc-debug-flag
bd43c990
RS
450 (save-excursion
451 (save-window-excursion
adf794e4 452 (set-buffer (get-buffer-create rcirc-debug-buffer))
bd43c990
RS
453 (goto-char (point-max))
454 (insert (concat
455 "["
456 (format-time-string "%Y-%m-%dT%T ") (process-name process)
457 "] "
458 text))))))
adf794e4 459
bd43c990
RS
460(defvar rcirc-sentinel-hooks nil
461 "Hook functions called when the process sentinel is called.
462Functions are called with PROCESS and SENTINEL arguments.")
463
464(defun rcirc-sentinel (process sentinel)
465 "Called when PROCESS receives SENTINEL."
466 (let ((sentinel (replace-regexp-in-string "\n" "" sentinel)))
adf794e4
EZ
467 (rcirc-debug process (format "SENTINEL: %S %S\n" process sentinel))
468 (with-rcirc-process-buffer process
469 (dolist (buffer (cons nil (mapcar 'cdr rcirc-buffer-alist)))
adf794e4 470 (with-current-buffer (or buffer (current-buffer))
db58efbf
EZ
471 (rcirc-print process "rcirc.el" "ERROR" rcirc-target
472 (format "%s: %s (%S)"
473 (process-name process)
474 sentinel
475 (process-status process)) t)
476 ;; remove the prompt from buffers
bd43c990
RS
477 (let ((inhibit-read-only t))
478 (delete-region rcirc-prompt-start-marker
479 rcirc-prompt-end-marker)))))
480 (run-hook-with-args 'rcirc-sentinel-hooks process sentinel)))
481
482(defun rcirc-process-list ()
483 "Return a list of rcirc processes."
484 (let (ps)
485 (mapc (lambda (p)
18aa2c90 486 (when (buffer-live-p (process-buffer p))
adf794e4 487 (with-rcirc-process-buffer p
bd43c990
RS
488 (when (eq major-mode 'rcirc-mode)
489 (setq ps (cons p ps))))))
490 (process-list))
491 ps))
492
493(defvar rcirc-receive-message-hooks nil
2e398771
JB
494 "Hook functions run when a message is received from server.
495Function is called with PROCESS, COMMAND, SENDER, ARGS and LINE.")
bd43c990
RS
496(defun rcirc-filter (process output)
497 "Called when PROCESS receives OUTPUT."
adf794e4
EZ
498 (rcirc-debug process output)
499 (with-rcirc-process-buffer process
ad8121fe 500 (setq rcirc-last-server-message-time (current-time))
bd43c990
RS
501 (setq rcirc-process-output (concat rcirc-process-output output))
502 (when (= (aref rcirc-process-output
503 (1- (length rcirc-process-output))) ?\n)
504 (mapc (lambda (line)
505 (rcirc-process-server-response process line))
adf794e4 506 (split-string rcirc-process-output "[\n\r]" t))
bd43c990
RS
507 (setq rcirc-process-output nil))))
508
adf794e4 509(defvar rcirc-trap-errors-flag t)
bd43c990 510(defun rcirc-process-server-response (process text)
adf794e4 511 (if rcirc-trap-errors-flag
bd43c990
RS
512 (condition-case err
513 (rcirc-process-server-response-1 process text)
514 (error
515 (rcirc-print process "RCIRC" "ERROR" nil
adf794e4 516 (format "\"%s\" %s" text err) t)))
bd43c990
RS
517 (rcirc-process-server-response-1 process text)))
518
519(defun rcirc-process-server-response-1 (process text)
520 (if (string-match "^\\(:\\([^ ]+\\) \\)?\\([^ ]+\\) \\(.+\\)$" text)
db58efbf
EZ
521 (let* ((user (match-string 2 text))
522 (sender (rcirc-user-nick user))
bd43c990
RS
523 (cmd (match-string 3 text))
524 (args (match-string 4 text))
525 (handler (intern-soft (concat "rcirc-handler-" cmd))))
526 (string-match "^\\([^:]*\\):?\\(.+\\)?$" args)
527 (let* ((args1 (match-string 1 args))
528 (args2 (match-string 2 args))
adf794e4
EZ
529 (args (delq nil (append (split-string args1 " " t)
530 (list args2)))))
bd43c990
RS
531 (if (not (fboundp handler))
532 (rcirc-handler-generic process cmd sender args text)
533 (funcall handler process sender args text))
534 (run-hook-with-args 'rcirc-receive-message-hooks
535 process cmd sender args text)))
536 (message "UNHANDLED: %s" text)))
537
f8db61b2
EZ
538(defvar rcirc-responses-no-activity '("305" "306")
539 "Responses that don't trigger activity in the mode-line indicator.")
540
541(defun rcirc-handler-generic (process response sender args text)
bd43c990 542 "Generic server response handler."
f8db61b2
EZ
543 (rcirc-print process sender response nil
544 (mapconcat 'identity (cdr args) " ")
545 (not (member response rcirc-responses-no-activity))))
bd43c990
RS
546
547(defun rcirc-send-string (process string)
548 "Send PROCESS a STRING plus a newline."
a2524d26 549 (let ((string (concat (encode-coding-string string rcirc-encode-coding-system)
bd43c990 550 "\n")))
a2524d26 551 (unless (eq (process-status process) 'open)
53f831f3 552 (error "Network connection to %s is not open"
a2524d26 553 (process-name process)))
adf794e4 554 (rcirc-debug process string)
bd43c990
RS
555 (process-send-string process string)))
556
a2524d26
EZ
557(defun rcirc-buffer-process (&optional buffer)
558 "Return the process associated with channel BUFFER.
559With no argument or nil as argument, use the current buffer."
7faa3f8c
MB
560 (get-buffer-process (if buffer
561 (with-current-buffer buffer
562 rcirc-server-buffer)
563 rcirc-server-buffer)))
a2524d26
EZ
564
565(defun rcirc-server-name (process)
566 "Return PROCESS server name, given by the 001 response."
adf794e4 567 (with-rcirc-process-buffer process
a2524d26 568 (or rcirc-server rcirc-default-server)))
bd43c990
RS
569
570(defun rcirc-nick (process)
571 "Return PROCESS nick."
a2524d26
EZ
572 (with-rcirc-process-buffer process
573 (or rcirc-nick rcirc-default-nick)))
574
575(defun rcirc-buffer-nick (&optional buffer)
576 "Return the nick associated with BUFFER.
577With no argument or nil as argument, use the current buffer."
578 (with-current-buffer (or buffer (current-buffer))
579 (with-current-buffer rcirc-server-buffer
580 (or rcirc-nick rcirc-default-nick))))
bd43c990 581
02f47e86 582(defvar rcirc-max-message-length 420
bd43c990
RS
583 "Messages longer than this value will be split.")
584
585(defun rcirc-send-message (process target message &optional noticep)
586 "Send TARGET associated with PROCESS a privmsg with text MESSAGE.
587If NOTICEP is non-nil, send a notice instead of privmsg."
588 ;; max message length is 512 including CRLF
589 (let* ((response (if noticep "NOTICE" "PRIVMSG"))
590 (oversize (> (length message) rcirc-max-message-length))
591 (text (if oversize
592 (substring message 0 rcirc-max-message-length)
593 message))
594 (text (if (string= text "")
595 " "
596 text))
597 (more (if oversize
598 (substring message rcirc-max-message-length))))
db58efbf
EZ
599 (rcirc-get-buffer-create process target)
600 (rcirc-print process (rcirc-nick process) response target text)
bd43c990 601 (rcirc-send-string process (concat response " " target " :" text))
db58efbf 602 (when more (rcirc-send-message process target more noticep))))
bd43c990
RS
603
604(defvar rcirc-input-ring nil)
605(defvar rcirc-input-ring-index 0)
606(defun rcirc-prev-input-string (arg)
607 (ring-ref rcirc-input-ring (+ rcirc-input-ring-index arg)))
608
609(defun rcirc-insert-prev-input (arg)
610 (interactive "p")
611 (when (<= rcirc-prompt-end-marker (point))
612 (delete-region rcirc-prompt-end-marker (point-max))
613 (insert (rcirc-prev-input-string 0))
614 (setq rcirc-input-ring-index (1+ rcirc-input-ring-index))))
615
616(defun rcirc-insert-next-input (arg)
617 (interactive "p")
618 (when (<= rcirc-prompt-end-marker (point))
619 (delete-region rcirc-prompt-end-marker (point-max))
620 (setq rcirc-input-ring-index (1- rcirc-input-ring-index))
621 (insert (rcirc-prev-input-string -1))))
622
623(defvar rcirc-nick-completions nil)
624(defvar rcirc-nick-completion-start-offset nil)
7faa3f8c 625
bd43c990
RS
626(defun rcirc-complete-nick ()
627 "Cycle through nick completions from list of nicks in channel."
628 (interactive)
7faa3f8c 629 (if (eq last-command this-command)
bd43c990
RS
630 (setq rcirc-nick-completions
631 (append (cdr rcirc-nick-completions)
632 (list (car rcirc-nick-completions))))
633 (setq rcirc-nick-completion-start-offset
634 (- (save-excursion
635 (if (re-search-backward " " rcirc-prompt-end-marker t)
636 (1+ (point))
637 rcirc-prompt-end-marker))
638 rcirc-prompt-end-marker))
639 (setq rcirc-nick-completions
640 (let ((completion-ignore-case t))
adf794e4
EZ
641 (all-completions
642 (buffer-substring
bd43c990
RS
643 (+ rcirc-prompt-end-marker
644 rcirc-nick-completion-start-offset)
645 (point))
646 (mapcar (lambda (x) (cons x nil))
a2524d26
EZ
647 (rcirc-channel-nicks (rcirc-buffer-process)
648 rcirc-target))))))
bd43c990
RS
649 (let ((completion (car rcirc-nick-completions)))
650 (when completion
7faa3f8c 651 (rcirc-put-nick-channel (rcirc-buffer-process) completion rcirc-target)
adf794e4 652 (delete-region (+ rcirc-prompt-end-marker
7faa3f8c
MB
653 rcirc-nick-completion-start-offset)
654 (point))
bd43c990 655 (insert (concat completion
adf794e4 656 (if (= (+ rcirc-prompt-end-marker
bd43c990
RS
657 rcirc-nick-completion-start-offset)
658 rcirc-prompt-end-marker)
659 ": "))))))
660
a2524d26
EZ
661(defun set-rcirc-decode-coding-system (coding-system)
662 "Set the decode coding system used in this channel."
663 (interactive "zCoding system for incoming messages: ")
664 (setq rcirc-decode-coding-system coding-system))
665
666(defun set-rcirc-encode-coding-system (coding-system)
667 "Set the encode coding system used in this channel."
668 (interactive "zCoding system for outgoing messages: ")
669 (setq rcirc-encode-coding-system coding-system))
bd43c990
RS
670
671(defvar rcirc-mode-map (make-sparse-keymap)
672 "Keymap for rcirc mode.")
673
674(define-key rcirc-mode-map (kbd "RET") 'rcirc-send-input)
675(define-key rcirc-mode-map (kbd "M-p") 'rcirc-insert-prev-input)
676(define-key rcirc-mode-map (kbd "M-n") 'rcirc-insert-next-input)
677(define-key rcirc-mode-map (kbd "TAB") 'rcirc-complete-nick)
678(define-key rcirc-mode-map (kbd "C-c C-b") 'rcirc-browse-url)
679(define-key rcirc-mode-map (kbd "C-c C-c") 'rcirc-edit-multiline)
680(define-key rcirc-mode-map (kbd "C-c C-j") 'rcirc-cmd-join)
681(define-key rcirc-mode-map (kbd "C-c C-k") 'rcirc-cmd-kick)
a2524d26 682(define-key rcirc-mode-map (kbd "C-c C-l") 'rcirc-toggle-low-priority)
bd43c990
RS
683(define-key rcirc-mode-map (kbd "C-c C-d") 'rcirc-cmd-mode)
684(define-key rcirc-mode-map (kbd "C-c C-m") 'rcirc-cmd-msg)
685(define-key rcirc-mode-map (kbd "C-c C-r") 'rcirc-cmd-nick) ; rename
686(define-key rcirc-mode-map (kbd "C-c C-o") 'rcirc-cmd-oper)
687(define-key rcirc-mode-map (kbd "C-c C-p") 'rcirc-cmd-part)
688(define-key rcirc-mode-map (kbd "C-c C-q") 'rcirc-cmd-query)
689(define-key rcirc-mode-map (kbd "C-c C-t") 'rcirc-cmd-topic)
690(define-key rcirc-mode-map (kbd "C-c C-n") 'rcirc-cmd-names)
691(define-key rcirc-mode-map (kbd "C-c C-w") 'rcirc-cmd-whois)
692(define-key rcirc-mode-map (kbd "C-c C-x") 'rcirc-cmd-quit)
693(define-key rcirc-mode-map (kbd "C-c TAB") ; C-i
adf794e4 694 'rcirc-toggle-ignore-buffer-activity)
bd43c990
RS
695(define-key rcirc-mode-map (kbd "C-c C-s") 'rcirc-switch-to-server-buffer)
696(define-key rcirc-mode-map (kbd "C-c C-a") 'rcirc-jump-to-first-unread-line)
697
adf794e4 698(defvar rcirc-browse-url-map (make-sparse-keymap)
2e398771 699 "Keymap used for browsing URLs in `rcirc-mode'.")
adf794e4
EZ
700
701(define-key rcirc-browse-url-map (kbd "RET") 'rcirc-browse-url-at-point)
702(define-key rcirc-browse-url-map (kbd "<mouse-2>") 'rcirc-browse-url-at-mouse)
703
704(defvar rcirc-short-buffer-name nil
705 "Generated abbreviation to use to indicate buffer activity.")
706
bd43c990
RS
707(defvar rcirc-mode-hook nil
708 "Hook run when setting up rcirc buffer.")
709
a2524d26
EZ
710(defvar rcirc-last-post-time nil)
711
bd43c990 712(defun rcirc-mode (process target)
2e398771 713 "Major mode for IRC channel buffers.
bd43c990
RS
714
715\\{rcirc-mode-map}"
716 (kill-all-local-variables)
717 (use-local-map rcirc-mode-map)
718 (setq mode-name "rcirc")
719 (setq major-mode 'rcirc-mode)
720
721 (make-local-variable 'rcirc-input-ring)
722 (setq rcirc-input-ring (make-ring rcirc-input-ring-size))
a2524d26
EZ
723 (make-local-variable 'rcirc-server-buffer)
724 (setq rcirc-server-buffer (process-buffer process))
bd43c990
RS
725 (make-local-variable 'rcirc-target)
726 (setq rcirc-target target)
ad8121fe
EZ
727 (make-local-variable 'rcirc-topic)
728 (setq rcirc-topic nil)
a2524d26
EZ
729 (make-local-variable 'rcirc-last-post-time)
730 (setq rcirc-last-post-time (current-time))
adf794e4
EZ
731
732 (make-local-variable 'rcirc-short-buffer-name)
733 (setq rcirc-short-buffer-name nil)
bd43c990 734 (make-local-variable 'rcirc-urls)
bd43c990 735 (setq use-hard-newlines t)
bd43c990 736
a2524d26
EZ
737 (make-local-variable 'rcirc-decode-coding-system)
738 (make-local-variable 'rcirc-encode-coding-system)
739 (dolist (i rcirc-coding-system-alist)
740 (let ((chan (if (consp (car i)) (caar i) (car i)))
741 (serv (if (consp (car i)) (cdar i) "")))
742 (when (and (string-match chan (or target ""))
743 (string-match serv (rcirc-server-name process)))
aac5d1fd
EZ
744 (setq rcirc-decode-coding-system (if (consp (cdr i)) (cadr i) (cdr i))
745 rcirc-encode-coding-system (if (consp (cdr i)) (cddr i) (cdr i))))))
a2524d26 746
bd43c990
RS
747 ;; setup the prompt and markers
748 (make-local-variable 'rcirc-prompt-start-marker)
749 (setq rcirc-prompt-start-marker (make-marker))
750 (set-marker rcirc-prompt-start-marker (point-max))
751 (make-local-variable 'rcirc-prompt-end-marker)
752 (setq rcirc-prompt-end-marker (make-marker))
753 (set-marker rcirc-prompt-end-marker (point-max))
754 (rcirc-update-prompt)
755 (goto-char rcirc-prompt-end-marker)
756 (make-local-variable 'overlay-arrow-position)
757 (setq overlay-arrow-position (make-marker))
758 (set-marker overlay-arrow-position nil)
759
a2524d26
EZ
760 ;; if the user changes the major mode or kills the buffer, there is
761 ;; cleanup work to do
f8db61b2
EZ
762 (add-hook 'change-major-mode-hook 'rcirc-change-major-mode-hook nil t)
763 (add-hook 'kill-buffer-hook 'rcirc-kill-buffer-hook nil t)
a2524d26 764
adf794e4
EZ
765 ;; add to buffer list, and update buffer abbrevs
766 (when target ; skip server buffer
767 (let ((buffer (current-buffer)))
768 (with-rcirc-process-buffer process
769 (setq rcirc-buffer-alist (cons (cons target buffer)
770 rcirc-buffer-alist))))
771 (rcirc-update-short-buffer-names))
772
bd43c990
RS
773 (run-hooks 'rcirc-mode-hook))
774
adf794e4
EZ
775(defun rcirc-update-prompt (&optional all)
776 "Reset the prompt string in the current buffer.
c18a54de 777
adf794e4
EZ
778If ALL is non-nil, update prompts in all IRC buffers."
779 (if all
780 (mapc (lambda (process)
781 (mapc (lambda (buffer)
782 (with-current-buffer buffer
783 (rcirc-update-prompt)))
784 (with-rcirc-process-buffer process
785 (mapcar 'cdr rcirc-buffer-alist))))
786 (rcirc-process-list))
787 (let ((inhibit-read-only t)
788 (prompt (or rcirc-prompt "")))
789 (mapc (lambda (rep)
790 (setq prompt
a2524d26
EZ
791 (replace-regexp-in-string (car rep) (cdr rep) prompt)))
792 (list (cons "%n" (rcirc-buffer-nick))
793 (cons "%s" (with-rcirc-server-buffer (or rcirc-server "")))
adf794e4
EZ
794 (cons "%t" (or rcirc-target ""))))
795 (save-excursion
796 (delete-region rcirc-prompt-start-marker rcirc-prompt-end-marker)
797 (goto-char rcirc-prompt-start-marker)
798 (let ((start (point)))
799 (insert-before-markers prompt)
800 (set-marker rcirc-prompt-start-marker start)
801 (when (not (zerop (- rcirc-prompt-end-marker
802 rcirc-prompt-start-marker)))
803 (add-text-properties rcirc-prompt-start-marker
804 rcirc-prompt-end-marker
805 (list 'face 'rcirc-prompt
806 'read-only t 'field t
807 'front-sticky t 'rear-nonsticky t))))))))
808
809(defun rcirc-set-changed (option value)
810 "Set OPTION to VALUE and do updates after a customization change."
811 (set-default option value)
812 (cond ((eq option 'rcirc-prompt)
813 (rcirc-update-prompt 'all))
814 (t
815 (error "Bad option %s" option))))
bd43c990
RS
816
817(defun rcirc-channel-p (target)
818 "Return t if TARGET is a channel name."
819 (and target
820 (not (zerop (length target)))
821 (or (eq (aref target 0) ?#)
822 (eq (aref target 0) ?&))))
823
824(defun rcirc-kill-buffer-hook ()
825 "Part the channel when killing an rcirc buffer."
826 (when (eq major-mode 'rcirc-mode)
a2524d26
EZ
827 (rcirc-clean-up-buffer "Killed buffer")))
828
829(defun rcirc-change-major-mode-hook ()
830 "Part the channel when changing the major-mode."
831 (rcirc-clean-up-buffer "Changed major mode"))
832
833(defun rcirc-clean-up-buffer (reason)
adf794e4
EZ
834 (let ((buffer (current-buffer)))
835 (rcirc-clear-activity buffer)
a2524d26
EZ
836 (when (and (rcirc-buffer-process)
837 (eq (process-status (rcirc-buffer-process)) 'open))
838 (with-rcirc-server-buffer
839 (setq rcirc-buffer-alist
840 (rassq-delete-all buffer rcirc-buffer-alist)))
adf794e4 841 (rcirc-update-short-buffer-names)
bd43c990 842 (if (rcirc-channel-p rcirc-target)
a2524d26
EZ
843 (rcirc-send-string (rcirc-buffer-process)
844 (concat "PART " rcirc-target " :" reason))
adf794e4 845 (when rcirc-target
a2524d26
EZ
846 (rcirc-remove-nick-channel (rcirc-buffer-process)
847 (rcirc-buffer-nick)
adf794e4
EZ
848 rcirc-target))))))
849
adf794e4
EZ
850(defun rcirc-generate-new-buffer-name (process target)
851 "Return a buffer name based on PROCESS and TARGET.
2e398771 852This is used for the initial name given to IRC buffers."
adf794e4
EZ
853 (if target
854 (concat target "@" (process-name process))
855 (concat "*" (process-name process) "*")))
bd43c990 856
adf794e4 857(defun rcirc-get-buffer (process target &optional server)
bd43c990 858 "Return the buffer associated with the PROCESS and TARGET.
adf794e4 859
adf794e4
EZ
860If optional argument SERVER is non-nil, return the server buffer
861if there is no existing buffer for TARGET, otherwise return nil."
862 (with-rcirc-process-buffer process
863 (if (null target)
864 (current-buffer)
865 (let ((buffer (cdr (assoc-string target rcirc-buffer-alist t))))
866 (or buffer (when server (current-buffer)))))))
bd43c990
RS
867
868(defun rcirc-get-buffer-create (process target)
adf794e4
EZ
869 "Return the buffer associated with the PROCESS and TARGET.
870Create the buffer if it doesn't exist."
871 (let ((buffer (rcirc-get-buffer process target)))
a2524d26 872 (if (and buffer (buffer-live-p buffer))
2fbed782 873 (with-current-buffer buffer
db58efbf 874 (when (not rcirc-target)
2fbed782 875 (setq rcirc-target target))
db58efbf 876 buffer)
adf794e4
EZ
877 ;; create the buffer
878 (with-rcirc-process-buffer process
879 (let ((new-buffer (get-buffer-create
880 (rcirc-generate-new-buffer-name process target))))
881 (with-current-buffer new-buffer
882 (rcirc-mode process target))
883 (rcirc-put-nick-channel process (rcirc-nick process) target)
884 new-buffer)))))
bd43c990
RS
885
886(defun rcirc-send-input ()
887 "Send input to target associated with the current buffer."
888 (interactive)
53f831f3
AS
889 (if (< (point) rcirc-prompt-end-marker)
890 ;; copy the line down to the input area
891 (progn
892 (forward-line 0)
893 (let ((start (if (eq (point) (point-min))
894 (point)
895 (if (get-text-property (1- (point)) 'hard)
896 (point)
897 (previous-single-property-change (point) 'hard))))
898 (end (next-single-property-change (1+ (point)) 'hard)))
899 (goto-char (point-max))
900 (insert (replace-regexp-in-string
901 "\n\\s-+" " "
902 (buffer-substring-no-properties start end)))))
903 ;; process input
904 (goto-char (point-max))
a2524d26
EZ
905 (when (not (equal 0 (- (point) rcirc-prompt-end-marker)))
906 ;; delete a trailing newline
907 (when (eq (point) (point-at-bol))
908 (delete-backward-char 1))
909 (let ((input (buffer-substring-no-properties
910 rcirc-prompt-end-marker (point))))
911 (dolist (line (split-string input "\n"))
912 (rcirc-process-input-line line))
913 ;; add to input-ring
914 (save-excursion
915 (ring-insert rcirc-input-ring input)
916 (setq rcirc-input-ring-index 0))))))
917
918(defun rcirc-process-input-line (line)
db58efbf
EZ
919 (if (string-match "^/\\([^ ]+\\) ?\\(.*\\)$" line)
920 (rcirc-process-command (match-string 1 line)
921 (match-string 2 line)
922 line)
923 (rcirc-process-message line)))
924
925(defun rcirc-process-message (line)
926 (if (not rcirc-target)
a2524d26 927 (message "Not joined (no target)")
db58efbf 928 (delete-region rcirc-prompt-end-marker (point))
a2524d26
EZ
929 (rcirc-send-message (rcirc-buffer-process) rcirc-target line)
930 (setq rcirc-last-post-time (current-time))))
db58efbf
EZ
931
932(defun rcirc-process-command (command args line)
933 (if (eq (aref command 0) ?/)
934 ;; "//text" will send "/text" as a message
935 (rcirc-process-message (substring line 1))
a2524d26
EZ
936 (let ((fun (intern-soft (concat "rcirc-cmd-" command)))
937 (process (rcirc-buffer-process)))
db58efbf
EZ
938 (newline)
939 (with-current-buffer (current-buffer)
940 (delete-region rcirc-prompt-end-marker (point))
941 (if (string= command "me")
a2524d26 942 (rcirc-print process (rcirc-buffer-nick)
db58efbf 943 "ACTION" rcirc-target args)
a2524d26 944 (rcirc-print process (rcirc-buffer-nick)
db58efbf
EZ
945 "COMMAND" rcirc-target line))
946 (set-marker rcirc-prompt-end-marker (point))
947 (if (fboundp fun)
a2524d26
EZ
948 (funcall fun args process rcirc-target)
949 (rcirc-send-string process
f8db61b2 950 (concat command " :" args)))))))
db58efbf 951
bd43c990
RS
952(defvar rcirc-parent-buffer nil)
953(defvar rcirc-window-configuration nil)
954(defun rcirc-edit-multiline ()
955 "Move current edit to a dedicated buffer."
956 (interactive)
957 (let ((pos (1+ (- (point) rcirc-prompt-end-marker))))
958 (goto-char (point-max))
959 (let ((text (buffer-substring rcirc-prompt-end-marker (point)))
a2524d26 960 (parent (buffer-name)))
bd43c990
RS
961 (delete-region rcirc-prompt-end-marker (point))
962 (setq rcirc-window-configuration (current-window-configuration))
963 (pop-to-buffer (concat "*multiline " parent "*"))
a2524d26
EZ
964 (funcall rcirc-multiline-major-mode)
965 (rcirc-multiline-minor-mode 1)
bd43c990 966 (setq rcirc-parent-buffer parent)
bd43c990 967 (insert text)
db58efbf
EZ
968 (and (> pos 0) (goto-char pos))
969 (message "Type C-c C-c to return text to %s, or C-c C-k to cancel" parent))))
bd43c990 970
a2524d26
EZ
971(defvar rcirc-multiline-minor-mode-map (make-sparse-keymap)
972 "Keymap for multiline mode in rcirc.")
973(define-key rcirc-multiline-minor-mode-map
974 (kbd "C-c C-c") 'rcirc-multiline-minor-submit)
975(define-key rcirc-multiline-minor-mode-map
976 (kbd "C-x C-s") 'rcirc-multiline-minor-submit)
977(define-key rcirc-multiline-minor-mode-map
978 (kbd "C-c C-k") 'rcirc-multiline-minor-cancel)
979(define-key rcirc-multiline-minor-mode-map
980 (kbd "ESC ESC ESC") 'rcirc-multiline-minor-cancel)
981
982(define-minor-mode rcirc-multiline-minor-mode
983 "Minor mode for editing multiple lines in rcirc."
984 :init-value nil
985 :lighter " rcirc-mline"
986 :keymap rcirc-multiline-minor-mode-map
987 :global nil
988 :group 'rcirc
bd43c990 989 (make-local-variable 'rcirc-parent-buffer)
02f47e86
MB
990 (put 'rcirc-parent-buffer 'permanent-local t)
991 (setq fill-column rcirc-max-message-length))
a2524d26
EZ
992
993(defun rcirc-multiline-minor-submit ()
bd43c990
RS
994 "Send the text in buffer back to parent buffer."
995 (interactive)
bd43c990 996 (assert rcirc-parent-buffer)
adf794e4 997 (untabify (point-min) (point-max))
bd43c990
RS
998 (let ((text (buffer-substring (point-min) (point-max)))
999 (buffer (current-buffer))
1000 (pos (point)))
1001 (set-buffer rcirc-parent-buffer)
1002 (goto-char (point-max))
1003 (insert text)
bd43c990 1004 (kill-buffer buffer)
adf794e4
EZ
1005 (set-window-configuration rcirc-window-configuration)
1006 (goto-char (+ rcirc-prompt-end-marker (1- pos)))))
bd43c990 1007
a2524d26 1008(defun rcirc-multiline-minor-cancel ()
bd43c990
RS
1009 "Cancel the multiline edit."
1010 (interactive)
bd43c990
RS
1011 (kill-buffer (current-buffer))
1012 (set-window-configuration rcirc-window-configuration))
1013
2fbed782 1014(defun rcirc-any-buffer (process)
adf794e4 1015 "Return a buffer for PROCESS, either the one selected or the process buffer."
2fbed782
EZ
1016 (if rcirc-always-use-server-buffer-flag
1017 (process-buffer process)
1018 (let ((buffer (window-buffer (selected-window))))
1019 (if (and buffer
1020 (with-current-buffer buffer
1021 (and (eq major-mode 'rcirc-mode)
a2524d26 1022 (eq (rcirc-buffer-process) process))))
2fbed782
EZ
1023 buffer
1024 (process-buffer process)))))
bd43c990 1025
324e4da7 1026(defcustom rcirc-response-formats
2fbed782
EZ
1027 '(("PRIVMSG" . "%T<%N> %m")
1028 ("NOTICE" . "%T-%N- %m")
1029 ("ACTION" . "%T[%N %m]")
324e4da7
MB
1030 ("COMMAND" . "%T%m")
1031 ("ERROR" . "%T%fw!!! %m")
1032 (t . "%T%fp*** %fs%n %r %m"))
1033 "An alist of formats used for printing responses.
1034The format is looked up using the response-type as a key;
1035if no match is found, the default entry (with a key of `t') is used.
1036
1037The entry's value part should be a string, which is inserted with
1038the of the following escape sequences replaced by the described values:
1039
1040 %m The message text
2fbed782
EZ
1041 %n The sender's nick
1042 %N The sender's nick (with face `rcirc-my-nick' or `rcirc-other-nick')
324e4da7
MB
1043 %r The response-type
1044 %T The timestamp (with face `rcirc-timestamp')
1045 %t The target
1046 %fw Following text uses the face `font-lock-warning-face'
1047 %fp Following text uses the face `rcirc-server-prefix'
1048 %fs Following text uses the face `rcirc-server'
1049 %f[FACE] Following text uses the face FACE
3715419e 1050 %f- Following text uses the default face
a2524d26 1051 %% A literal `%' character"
324e4da7
MB
1052 :type '(alist :key-type (choice (string :tag "Type")
1053 (const :tag "Default" t))
1054 :value-type string)
1055 :group 'rcirc)
1056
bd43c990 1057(defun rcirc-format-response-string (process sender response target text)
324e4da7
MB
1058 "Return a nicely-formatted response string, incorporating TEXT
1059\(and perhaps other arguments). The specific formatting used
1060is found by looking up RESPONSE in `rcirc-response-formats'."
1061 (let ((chunks
1062 (split-string (or (cdr (assoc response rcirc-response-formats))
1063 (cdr (assq t rcirc-response-formats)))
1064 "%"))
02f47e86 1065 (sender (or sender ""))
324e4da7
MB
1066 (result "")
1067 (face nil)
1068 key face-key repl)
1069 (when (equal (car chunks) "")
1070 (pop chunks))
1071 (dolist (chunk chunks)
1072 (if (equal chunk "")
1073 (setq key ?%)
1074 (setq key (aref chunk 0))
1075 (setq chunk (substring chunk 1)))
1076 (setq repl
1077 (cond ((eq key ?%)
3715419e 1078 ;; %% -- literal % character
324e4da7 1079 "%")
2fbed782
EZ
1080 ((or (eq key ?n) (eq key ?N))
1081 ;; %n/%N -- nick
f8db61b2
EZ
1082 (let ((nick (concat (if (string= (with-rcirc-process-buffer
1083 process
a2524d26 1084 rcirc-server)
2fbed782
EZ
1085 sender)
1086 ""
54aba1ee 1087 sender)
2fbed782
EZ
1088 (and target (concat "," target)))))
1089 (rcirc-facify nick
1090 (if (eq key ?n)
1091 face
02f47e86
MB
1092 (cond ((string= sender (rcirc-nick process))
1093 'rcirc-my-nick)
f8db61b2
EZ
1094 ((and rcirc-bright-nicks
1095 (string-match
1096 (regexp-opt rcirc-bright-nicks)
1097 sender))
02f47e86 1098 'rcirc-bright-nick)
f8db61b2
EZ
1099 ((and rcirc-dim-nicks
1100 (string-match
1101 (regexp-opt rcirc-dim-nicks)
1102 sender))
02f47e86
MB
1103 'rcirc-dim-nick)
1104 (t
1105 'rcirc-other-nick))))))
f8db61b2 1106 ((eq key ?T)
3715419e 1107 ;; %T -- timestamp
324e4da7
MB
1108 (rcirc-facify
1109 (format-time-string rcirc-time-format (current-time))
1110 'rcirc-timestamp))
1111 ((eq key ?m)
3715419e 1112 ;; %m -- message text
f8db61b2 1113 (rcirc-markup-text process sender response (rcirc-facify text face)))
324e4da7 1114 ((eq key ?t)
3715419e 1115 ;; %t -- target
324e4da7
MB
1116 (rcirc-facify (or rcirc-target "") face))
1117 ((eq key ?r)
3715419e 1118 ;; %r -- response
324e4da7
MB
1119 (rcirc-facify response face))
1120 ((eq key ?f)
3715419e 1121 ;; %f -- change face
324e4da7 1122 (setq face-key (aref chunk 0))
3715419e 1123 (setq chunk (substring chunk 1))
324e4da7 1124 (cond ((eq face-key ?w)
3715419e 1125 ;; %fw -- warning face
324e4da7
MB
1126 (setq face 'font-lock-warning-face))
1127 ((eq face-key ?p)
3715419e 1128 ;; %fp -- server-prefix face
324e4da7
MB
1129 (setq face 'rcirc-server-prefix))
1130 ((eq face-key ?s)
3715419e 1131 ;; %fs -- warning face
324e4da7
MB
1132 (setq face 'rcirc-server))
1133 ((eq face-key ?-)
3715419e 1134 ;; %fs -- warning face
324e4da7
MB
1135 (setq face nil))
1136 ((and (eq face-key ?\[)
3715419e 1137 (string-match "^\\([^]]*\\)[]]" chunk)
324e4da7 1138 (facep (match-string 1 chunk)))
3715419e 1139 ;; %f[...] -- named face
324e4da7 1140 (setq face (intern (match-string 1 chunk)))
3715419e
MB
1141 (setq chunk (substring chunk (match-end 0)))))
1142 "")))
324e4da7
MB
1143 (setq result (concat result repl (rcirc-facify chunk face))))
1144 result))
bd43c990 1145
db58efbf
EZ
1146(defun rcirc-target-buffer (process sender response target text)
1147 "Return a buffer to print the server response."
1148 (assert (not (bufferp target)))
1149 (with-rcirc-process-buffer process
1150 (cond ((not target)
2fbed782 1151 (rcirc-any-buffer process))
db58efbf
EZ
1152 ((not (rcirc-channel-p target))
1153 ;; message from another user
1154 (if (string= response "PRIVMSG")
1155 (rcirc-get-buffer-create process (if (string= sender rcirc-nick)
1156 target
1157 sender))
1158 (rcirc-get-buffer process target t)))
1159 ((or (rcirc-get-buffer process target)
2fbed782 1160 (rcirc-any-buffer process))))))
db58efbf 1161
f8db61b2
EZ
1162(defvar rcirc-activity-types nil)
1163(make-variable-buffer-local 'rcirc-activity-types)
a2524d26
EZ
1164(defvar rcirc-last-sender nil)
1165(make-variable-buffer-local 'rcirc-last-sender)
7faa3f8c 1166
bd43c990
RS
1167(defun rcirc-print (process sender response target text &optional activity)
1168 "Print TEXT in the buffer associated with TARGET.
1169Format based on SENDER and RESPONSE. If ACTIVITY is non-nil,
1170record activity."
a2524d26 1171 (or text (setq text ""))
db58efbf 1172 (unless (or (member sender rcirc-ignore-list)
2c8abe90 1173 (member (with-syntax-table rcirc-nick-syntax-table
02f47e86
MB
1174 (when (string-match "^\\([^/]\\w*\\)[:,]" text)
1175 (match-string 1 text)))
1176 rcirc-ignore-list))
db58efbf 1177 (let* ((buffer (rcirc-target-buffer process sender response target text))
2c8abe90
AS
1178 (inhibit-read-only t))
1179 (with-current-buffer buffer
1180 (let ((moving (= (point) rcirc-prompt-end-marker))
1181 (old-point (point-marker))
1182 (fill-start (marker-position rcirc-prompt-start-marker)))
1183
1184 (unless (string= sender (rcirc-nick process))
1185 ;; only decode text from other senders, not ours
a2524d26 1186 (setq text (decode-coding-string text rcirc-decode-coding-system))
2c8abe90
AS
1187 ;; mark the line with overlay arrow
1188 (unless (or (marker-position overlay-arrow-position)
1189 (get-buffer-window (current-buffer)))
1190 (set-marker overlay-arrow-position
1191 (marker-position rcirc-prompt-start-marker))))
1192
1193 ;; temporarily set the marker insertion-type because
1194 ;; insert-before-markers results in hidden text in new buffers
1195 (goto-char rcirc-prompt-start-marker)
1196 (set-marker-insertion-type rcirc-prompt-start-marker t)
1197 (set-marker-insertion-type rcirc-prompt-end-marker t)
324e4da7
MB
1198
1199 (let ((fmted-text
1200 (rcirc-format-response-string process sender response nil
1201 text)))
1202
1203 (insert fmted-text (propertize "\n" 'hard t))
1204 (set-marker-insertion-type rcirc-prompt-start-marker nil)
1205 (set-marker-insertion-type rcirc-prompt-end-marker nil)
1206
2fbed782
EZ
1207 (let ((text-start (make-marker)))
1208 (set-marker text-start
1209 (or (next-single-property-change fill-start
1210 'rcirc-text)
e8f10ddb 1211 rcirc-prompt-end-marker))
2fbed782
EZ
1212 ;; squeeze spaces out of text before rcirc-text
1213 (fill-region fill-start (1- text-start))
1214
1215 ;; fill the text we just inserted, maybe
1216 (when (and rcirc-fill-flag
1217 (not (string= response "372"))) ;/motd
1218 (let ((fill-prefix
1219 (or rcirc-fill-prefix
1220 (make-string (- text-start fill-start) ?\s)))
1221 (fill-column (cond ((eq rcirc-fill-column 'frame-width)
1222 (1- (frame-width)))
1223 (rcirc-fill-column
1224 rcirc-fill-column)
1225 (t fill-column))))
1226 (fill-region fill-start rcirc-prompt-start-marker 'left t)))))
2c8abe90
AS
1227
1228 ;; set inserted text to be read-only
1229 (when rcirc-read-only-flag
1230 (put-text-property rcirc-prompt-start-marker fill-start 'read-only t)
1231 (let ((inhibit-read-only t))
1232 (put-text-property rcirc-prompt-start-marker fill-start
1233 'front-sticky t)
1234 (put-text-property (1- (point)) (point) 'rear-nonsticky t)))
1235
1236 ;; truncate buffer if it is very long
1237 (save-excursion
1238 (when (and rcirc-buffer-maximum-lines
1239 (> rcirc-buffer-maximum-lines 0)
1240 (= (forward-line (- rcirc-buffer-maximum-lines)) 0))
1241 (delete-region (point-min) (point))))
1242
1243 ;; set the window point for buffers show in windows
1244 (walk-windows (lambda (w)
d40ac716
CY
1245 (when (and (not (eq (selected-window) w))
1246 (eq (current-buffer)
1247 (window-buffer w))
1248 (>= (window-point w)
1249 rcirc-prompt-end-marker))
1250 (set-window-point w (point-max))))
2c8abe90
AS
1251 nil t)
1252
1253 ;; restore the point
1254 (goto-char (if moving rcirc-prompt-end-marker old-point))
1255
d40ac716
CY
1256 ;; keep window on bottom line if it was already there
1257 (when rcirc-scroll-show-maximum-output
1258 (walk-windows (lambda (w)
1259 (when (eq (window-buffer w) (current-buffer))
1260 (with-current-buffer (window-buffer w)
1261 (when (eq major-mode 'rcirc-mode)
1262 (with-selected-window w
b96572ff
CY
1263 (when (<= (- (window-height)
1264 (count-screen-lines
1265 (window-point)
1266 (window-start))
d40ac716
CY
1267 1)
1268 0)
1269 (recenter -1)))))))
1270 nil t))
1271
2c8abe90
AS
1272 ;; flush undo (can we do something smarter here?)
1273 (buffer-disable-undo)
1274 (buffer-enable-undo))
1275
1276 ;; record modeline activity
f8db61b2
EZ
1277 (when (and activity
1278 (not rcirc-ignore-buffer-activity-flag)
1279 (not (and rcirc-dim-nicks sender
1280 (string-match (regexp-opt rcirc-dim-nicks) sender))))
1281 (rcirc-record-activity (current-buffer)
1282 (when (not (rcirc-channel-p rcirc-target))
1283 'nick)))
2c8abe90
AS
1284
1285 (sit-for 0) ; displayed text before hook
1286 (run-hook-with-args 'rcirc-print-hooks
1287 process sender response target text)))))
bd43c990
RS
1288
1289(defun rcirc-startup-channels (server)
2e398771 1290 "Return the list of startup channels for SERVER."
bd43c990
RS
1291 (let (channels)
1292 (dolist (i rcirc-startup-channels-alist)
1293 (if (string-match (car i) server)
1294 (setq channels (append channels (cdr i)))))
1295 channels))
1296
1297(defun rcirc-join-channels (process channels)
1298 "Join CHANNELS."
1299 (save-window-excursion
db58efbf
EZ
1300 (dolist (channel channels)
1301 (with-rcirc-process-buffer process
1302 (rcirc-cmd-join channel process)))))
bd43c990
RS
1303\f
1304;;; nick management
1305(defun rcirc-user-nick (user)
1306 "Return the nick from USER. Remove any non-nick junk."
db58efbf
EZ
1307 (save-match-data
1308 (if (string-match "^[@%+]?\\([^! ]+\\)!?" (or user ""))
1309 (match-string 1 user)
1310 user)))
bd43c990
RS
1311
1312(defun rcirc-user-non-nick (user)
1313 "Return the non-nick portion of USER."
1314 (if (string-match "^[@+]?[^! ]+!?\\(.*\\)" (or user ""))
1315 (match-string 1 user)
1316 user))
1317
1318(defun rcirc-nick-channels (process nick)
1319 "Return list of channels for NICK."
db58efbf
EZ
1320 (with-rcirc-process-buffer process
1321 (mapcar (lambda (x) (car x))
1322 (gethash nick rcirc-nick-table))))
bd43c990
RS
1323
1324(defun rcirc-put-nick-channel (process nick channel)
1325 "Add CHANNEL to list associated with NICK."
2fbed782
EZ
1326 (let ((nick (rcirc-user-nick nick)))
1327 (with-rcirc-process-buffer process
1328 (let* ((chans (gethash nick rcirc-nick-table))
1329 (record (assoc-string channel chans t)))
1330 (if record
1331 (setcdr record (current-time))
1332 (puthash nick (cons (cons channel (current-time))
1333 chans)
1334 rcirc-nick-table))))))
bd43c990
RS
1335
1336(defun rcirc-nick-remove (process nick)
1337 "Remove NICK from table."
adf794e4 1338 (with-rcirc-process-buffer process
bd43c990
RS
1339 (remhash nick rcirc-nick-table)))
1340
1341(defun rcirc-remove-nick-channel (process nick channel)
1342 "Remove the CHANNEL from list associated with NICK."
adf794e4 1343 (with-rcirc-process-buffer process
db58efbf 1344 (let* ((chans (gethash nick rcirc-nick-table))
adf794e4
EZ
1345 (newchans
1346 ;; instead of assoc-string-delete-all:
1347 (let ((record (assoc-string channel chans t)))
1348 (when record
1349 (setcar record 'delete)
1350 (assq-delete-all 'delete chans)))))
bd43c990
RS
1351 (if newchans
1352 (puthash nick newchans rcirc-nick-table)
1353 (remhash nick rcirc-nick-table)))))
1354
a2524d26
EZ
1355(defun rcirc-channel-nicks (process target)
1356 "Return the list of nicks associated with TARGET sorted by last activity."
1357 (when target
1358 (if (rcirc-channel-p target)
1359 (with-rcirc-process-buffer process
1360 (let (nicks)
1361 (maphash
1362 (lambda (k v)
1363 (let ((record (assoc-string target v t)))
1364 (if record
1365 (setq nicks (cons (cons k (cdr record)) nicks)))))
1366 rcirc-nick-table)
1367 (mapcar (lambda (x) (car x))
1368 (sort nicks (lambda (x y) (time-less-p (cdr y) (cdr x)))))))
1369 (list target))))
2c8abe90
AS
1370
1371(defun rcirc-ignore-update-automatic (nick)
2e398771
JB
1372 "Remove NICK from `rcirc-ignore-list'
1373if NICK is also on `rcirc-ignore-list-automatic'."
2c8abe90
AS
1374 (when (member nick rcirc-ignore-list-automatic)
1375 (setq rcirc-ignore-list-automatic
1376 (delete nick rcirc-ignore-list-automatic)
1377 rcirc-ignore-list
1378 (delete nick rcirc-ignore-list))))
bd43c990
RS
1379\f
1380;;; activity tracking
db58efbf
EZ
1381(defvar rcirc-track-minor-mode-map (make-sparse-keymap)
1382 "Keymap for rcirc track minor mode.")
1383
1384(define-key rcirc-track-minor-mode-map (kbd "C-c `") 'rcirc-next-active-buffer)
1385(define-key rcirc-track-minor-mode-map (kbd "C-c C-@") 'rcirc-next-active-buffer)
1386(define-key rcirc-track-minor-mode-map (kbd "C-c C-SPC") 'rcirc-next-active-buffer)
1387
e8f10ddb 1388;;;###autoload
db58efbf
EZ
1389(define-minor-mode rcirc-track-minor-mode
1390 "Global minor mode for tracking activity in rcirc buffers."
1391 :init-value nil
1392 :lighter ""
1393 :keymap rcirc-track-minor-mode-map
1394 :global t
1395 :group 'rcirc
1396 (or global-mode-string (setq global-mode-string '("")))
1397 ;; toggle the mode-line channel indicator
1398 (if rcirc-track-minor-mode
a2524d26
EZ
1399 (progn
1400 (and (not (memq 'rcirc-activity-string global-mode-string))
1401 (setq global-mode-string
1402 (append global-mode-string '(rcirc-activity-string))))
1403 (add-hook 'window-configuration-change-hook
1404 'rcirc-window-configuration-change))
db58efbf 1405 (setq global-mode-string
a2524d26
EZ
1406 (delete 'rcirc-activity-string global-mode-string))
1407 (remove-hook 'window-configuration-change-hook
1408 'rcirc-window-configuration-change)))
db58efbf 1409
adf794e4 1410(or (assq 'rcirc-ignore-buffer-activity-flag minor-mode-alist)
bd43c990 1411 (setq minor-mode-alist
adf794e4 1412 (cons '(rcirc-ignore-buffer-activity-flag " Ignore") minor-mode-alist)))
a2524d26
EZ
1413(or (assq 'rcirc-low-priority-flag minor-mode-alist)
1414 (setq minor-mode-alist
1415 (cons '(rcirc-low-priority-flag " LowPri") minor-mode-alist)))
bd43c990 1416
db58efbf
EZ
1417(defun rcirc-toggle-ignore-buffer-activity ()
1418 "Toggle the value of `rcirc-ignore-buffer-activity-flag'."
1419 (interactive)
1420 (setq rcirc-ignore-buffer-activity-flag
1421 (not rcirc-ignore-buffer-activity-flag))
1422 (message (if rcirc-ignore-buffer-activity-flag
1423 "Ignore activity in this buffer"
1424 "Notice activity in this buffer"))
bd43c990
RS
1425 (force-mode-line-update))
1426
a2524d26 1427(defun rcirc-toggle-low-priority ()
02f47e86 1428 "Toggle the value of `rcirc-low-priority-flag'."
a2524d26
EZ
1429 (interactive)
1430 (setq rcirc-low-priority-flag
1431 (not rcirc-low-priority-flag))
1432 (message (if rcirc-low-priority-flag
1433 "Activity in this buffer is low priority"
1434 "Activity in this buffer is normal priority"))
1435 (force-mode-line-update))
1436
bd43c990
RS
1437(defvar rcirc-switch-to-buffer-function 'switch-to-buffer
1438 "Function to use when switching buffers.
1439Possible values are `switch-to-buffer', `pop-to-buffer', and
1440`display-buffer'.")
1441
1442(defun rcirc-switch-to-server-buffer ()
1443 "Switch to the server buffer associated with current channel buffer."
1444 (interactive)
a2524d26 1445 (funcall rcirc-switch-to-buffer-function rcirc-server-buffer))
bd43c990
RS
1446
1447(defun rcirc-jump-to-first-unread-line ()
1448 "Move the point to the first unread line in this buffer."
1449 (interactive)
1450 (when (marker-position overlay-arrow-position)
1451 (goto-char overlay-arrow-position)))
1452
1453(defvar rcirc-last-non-irc-buffer nil
1454 "The buffer to switch to when there is no more activity.")
1455
1456(defun rcirc-next-active-buffer (arg)
a2524d26
EZ
1457 "Go to the next rcirc buffer with activity.
1458With prefix ARG, go to the next low priority buffer with activity.
bd43c990
RS
1459The function given by `rcirc-switch-to-buffer-function' is used to
1460show the buffer."
a2524d26
EZ
1461 (interactive "P")
1462 (let* ((pair (rcirc-split-activity rcirc-activity))
1463 (lopri (car pair))
1464 (hipri (cdr pair)))
1465 (if (or (and (not arg) hipri)
1466 (and arg lopri))
1467 (progn
1468 (unless (eq major-mode 'rcirc-mode)
1469 (setq rcirc-last-non-irc-buffer (current-buffer)))
1470 (funcall rcirc-switch-to-buffer-function
1471 (car (if arg lopri hipri))))
1472 (if (eq major-mode 'rcirc-mode)
1473 (if (not (and rcirc-last-non-irc-buffer
1474 (buffer-live-p rcirc-last-non-irc-buffer)))
1475 (message "No IRC activity. Start something.")
1476 (message "No more IRC activity. Go back to work.")
1477 (funcall rcirc-switch-to-buffer-function rcirc-last-non-irc-buffer)
1478 (setq rcirc-last-non-irc-buffer nil))
1479 (message (concat
1480 "No IRC activity."
1481 (when lopri
1482 (concat
1483 " Type C-u "
1484 (key-description (this-command-keys))
1485 " for low priority activity."))))))))
bd43c990
RS
1486
1487(defvar rcirc-activity-hooks nil
1488 "Hook to be run when there is channel activity.
1489
1490Functions are called with a single argument, the buffer with the
1491activity. Only run if the buffer is not visible and
adf794e4 1492`rcirc-ignore-buffer-activity-flag' is non-nil.")
bd43c990 1493
a2524d26 1494(defun rcirc-record-activity (buffer &optional type)
bd43c990
RS
1495 "Record BUFFER activity with TYPE."
1496 (with-current-buffer buffer
1497 (when (not (get-buffer-window (current-buffer) t))
a2524d26
EZ
1498 (setq rcirc-activity
1499 (sort (add-to-list 'rcirc-activity (current-buffer))
1500 (lambda (b1 b2)
1501 (let ((t1 (with-current-buffer b1 rcirc-last-post-time))
1502 (t2 (with-current-buffer b2 rcirc-last-post-time)))
1503 (time-less-p t2 t1)))))
f8db61b2 1504 (pushnew type rcirc-activity-types)
bd43c990
RS
1505 (rcirc-update-activity-string)))
1506 (run-hook-with-args 'rcirc-activity-hooks buffer))
1507
1508(defun rcirc-clear-activity (buffer)
1509 "Clear the BUFFER activity."
1510 (setq rcirc-activity (delete buffer rcirc-activity))
1511 (with-current-buffer buffer
f8db61b2 1512 (setq rcirc-activity-types nil)))
bd43c990 1513
a2524d26
EZ
1514(defun rcirc-split-activity (activity)
1515 "Return a cons cell with ACTIVITY split into (lopri . hipri)."
1516 (let (lopri hipri)
1517 (dolist (buf rcirc-activity)
1518 (with-current-buffer buf
1519 (if (and rcirc-low-priority-flag
f8db61b2 1520 (not (member 'nick rcirc-activity-types)))
a2524d26
EZ
1521 (add-to-list 'lopri buf t)
1522 (add-to-list 'hipri buf t))))
1523 (cons lopri hipri)))
1524
adf794e4 1525;; TODO: add mouse properties
bd43c990
RS
1526(defun rcirc-update-activity-string ()
1527 "Update mode-line string."
a2524d26
EZ
1528 (let* ((pair (rcirc-split-activity rcirc-activity))
1529 (lopri (car pair))
1530 (hipri (cdr pair)))
1531 (setq rcirc-activity-string
7faa3f8c
MB
1532 (cond ((or hipri lopri)
1533 (concat "-"
1534 (and hipri "[")
1535 (rcirc-activity-string hipri)
1536 (and hipri lopri ",")
1537 (and lopri
1538 (concat "("
1539 (rcirc-activity-string lopri)
1540 ")"))
1541 (and hipri "]")
1542 "-"))
1543 ((not (null (rcirc-process-list)))
1544 "-[]-")
1545 (t "")))))
a2524d26
EZ
1546
1547(defun rcirc-activity-string (buffers)
1548 (mapconcat (lambda (b)
f8db61b2 1549 (let ((s (substring-no-properties (rcirc-short-buffer-name b))))
a2524d26 1550 (with-current-buffer b
f8db61b2
EZ
1551 (dolist (type rcirc-activity-types)
1552 (rcirc-add-face 0 (length s)
1553 (case type
82741a5e
CY
1554 (nick 'rcirc-track-nick)
1555 (keyword 'rcirc-track-keyword))
f8db61b2
EZ
1556 s)))
1557 s))
a2524d26 1558 buffers ","))
bd43c990
RS
1559
1560(defun rcirc-short-buffer-name (buffer)
1561 "Return a short name for BUFFER to use in the modeline indicator."
1562 (with-current-buffer buffer
adf794e4
EZ
1563 (or rcirc-short-buffer-name (buffer-name))))
1564
1565(defvar rcirc-current-buffer nil)
1566(defun rcirc-window-configuration-change ()
1567 "Go through visible windows and remove buffers from activity list.
1568Also, clear the overlay arrow if the current buffer is now hidden."
1569 (let ((current-now-hidden t))
1570 (walk-windows (lambda (w)
1571 (let ((buf (window-buffer w)))
f8db61b2
EZ
1572 (with-current-buffer buf
1573 (when (eq major-mode 'rcirc-mode)
1574 (rcirc-clear-activity buf)))
a2524d26 1575 (when (eq buf rcirc-current-buffer)
f8db61b2 1576 (setq current-now-hidden nil)))))
a2524d26 1577 ;; add overlay arrow if the buffer isn't displayed
f8db61b2
EZ
1578 (when (and current-now-hidden
1579 rcirc-current-buffer
1580 (buffer-live-p rcirc-current-buffer))
adf794e4 1581 (with-current-buffer rcirc-current-buffer
f8db61b2
EZ
1582 (when (and (eq major-mode 'rcirc-mode)
1583 (marker-position overlay-arrow-position))
adf794e4
EZ
1584 (set-marker overlay-arrow-position nil)))))
1585
1586 ;; remove any killed buffers from list
1587 (setq rcirc-activity
1588 (delq nil (mapcar (lambda (buf) (when (buffer-live-p buf) buf))
1589 rcirc-activity)))
1590 (rcirc-update-activity-string)
1591 (setq rcirc-current-buffer (current-buffer)))
bd43c990
RS
1592
1593\f
adf794e4
EZ
1594;;; buffer name abbreviation
1595(defun rcirc-update-short-buffer-names ()
1596 (let ((bufalist
1597 (apply 'append (mapcar (lambda (process)
1598 (with-rcirc-process-buffer process
1599 rcirc-buffer-alist))
1600 (rcirc-process-list)))))
1601 (dolist (i (rcirc-abbreviate bufalist))
a2524d26
EZ
1602 (when (buffer-live-p (cdr i))
1603 (with-current-buffer (cdr i)
1604 (setq rcirc-short-buffer-name (car i)))))))
adf794e4
EZ
1605
1606(defun rcirc-abbreviate (pairs)
1607 (apply 'append (mapcar 'rcirc-rebuild-tree (rcirc-make-trees pairs))))
1608
1609(defun rcirc-rebuild-tree (tree &optional acc)
1610 (let ((ch (char-to-string (car tree))))
1611 (dolist (x (cdr tree))
1612 (if (listp x)
1613 (setq acc (append acc
1614 (mapcar (lambda (y)
1615 (cons (concat ch (car y))
1616 (cdr y)))
1617 (rcirc-rebuild-tree x))))
1618 (setq acc (cons (cons ch x) acc))))
1619 acc))
1620
1621(defun rcirc-make-trees (pairs)
1622 (let (alist)
1623 (mapc (lambda (pair)
1624 (if (consp pair)
1625 (let* ((str (car pair))
1626 (data (cdr pair))
1627 (char (unless (zerop (length str))
1628 (aref str 0)))
1629 (rest (unless (zerop (length str))
1630 (substring str 1)))
1631 (part (if char (assq char alist))))
1632 (if part
1633 ;; existing partition
1634 (setcdr part (cons (cons rest data) (cdr part)))
1635 ;; new partition
1636 (setq alist (cons (if char
1637 (list char (cons rest data))
1638 data)
1639 alist))))
1640 (setq alist (cons pair alist))))
1641 pairs)
1642 ;; recurse into cdrs of alist
1643 (mapc (lambda (x)
1644 (when (and (listp x) (listp (cadr x)))
1645 (setcdr x (if (> (length (cdr x)) 1)
1646 (rcirc-make-trees (cdr x))
1647 (setcdr x (list (cdadr x)))))))
1648 alist)))
1649\f
bd43c990
RS
1650;;; /commands these are called with 3 args: PROCESS, TARGET, which is
1651;; the current buffer/channel/user, and ARGS, which is a string
1652;; containing the text following the /cmd.
1653
adf794e4 1654(defmacro defun-rcirc-command (command argument docstring interactive-form
bd43c990
RS
1655 &rest body)
1656 "Define a command."
1657 `(defun ,(intern (concat "rcirc-cmd-" (symbol-name command)))
1658 (,@argument &optional process target)
a2524d26
EZ
1659 ,(concat docstring "\n\nNote: If PROCESS or TARGET are nil, the values given"
1660 "\nby `rcirc-buffer-process' and `rcirc-target' will be used.")
bd43c990 1661 ,interactive-form
a2524d26 1662 (let ((process (or process (rcirc-buffer-process)))
bd43c990
RS
1663 (target (or target rcirc-target)))
1664 ,@body)))
1665
1666(defun-rcirc-command msg (message)
1667 "Send private MESSAGE to TARGET."
1668 (interactive "i")
1669 (if (null message)
1670 (progn
1671 (setq target (completing-read "Message nick: "
a2524d26
EZ
1672 (with-rcirc-server-buffer
1673 rcirc-nick-table)))
bd43c990
RS
1674 (when (> (length target) 0)
1675 (setq message (read-string (format "Message %s: " target)))
1676 (when (> (length message) 0)
1677 (rcirc-send-message process target message))))
1678 (if (not (string-match "\\([^ ]+\\) \\(.+\\)" message))
1679 (message "Not enough args, or something.")
1680 (setq target (match-string 1 message)
1681 message (match-string 2 message))
1682 (rcirc-send-message process target message))))
1683
1684(defun-rcirc-command query (nick)
1685 "Open a private chat buffer to NICK."
1686 (interactive (list (completing-read "Query nick: "
a2524d26 1687 (with-rcirc-server-buffer rcirc-nick-table))))
adf794e4
EZ
1688 (let ((existing-buffer (rcirc-get-buffer process nick)))
1689 (switch-to-buffer (or existing-buffer
1690 (rcirc-get-buffer-create process nick)))
1691 (when (not existing-buffer)
bd43c990
RS
1692 (rcirc-cmd-whois nick))))
1693
f161b079 1694(defun-rcirc-command join (channel)
bd43c990
RS
1695 "Join CHANNEL."
1696 (interactive "sJoin channel: ")
f161b079
JB
1697 (let ((buffer (rcirc-get-buffer-create process
1698 (car (split-string channel)))))
a2524d26 1699 (rcirc-send-string process (concat "JOIN " channel))
bd43c990 1700 (when (not (eq (selected-window) (minibuffer-window)))
a2524d26 1701 (funcall rcirc-switch-to-buffer-function buffer))))
bd43c990
RS
1702
1703(defun-rcirc-command part (channel)
1704 "Part CHANNEL."
1705 (interactive "sPart channel: ")
1706 (let ((channel (if (> (length channel) 0) channel target)))
adf794e4 1707 (rcirc-send-string process (concat "PART " channel " :" rcirc-id-string))))
bd43c990
RS
1708
1709(defun-rcirc-command quit (reason)
1710 "Send a quit message to server with REASON."
1711 (interactive "sQuit reason: ")
adf794e4
EZ
1712 (rcirc-send-string process (concat "QUIT :"
1713 (if (not (zerop (length reason)))
1714 reason
1715 rcirc-id-string))))
bd43c990
RS
1716
1717(defun-rcirc-command nick (nick)
1718 "Change nick to NICK."
1719 (interactive "i")
1720 (when (null nick)
1721 (setq nick (read-string "New nick: " (rcirc-nick process))))
1722 (rcirc-send-string process (concat "NICK " nick)))
1723
1724(defun-rcirc-command names (channel)
1725 "Display list of names in CHANNEL or in current channel if CHANNEL is nil.
1726If called interactively, prompt for a channel when prefix arg is supplied."
1727 (interactive "P")
1728 (if (interactive-p)
1729 (if channel
1730 (setq channel (read-string "List names in channel: " target))))
1731 (let ((channel (if (> (length channel) 0)
1732 channel
1733 target)))
1734 (rcirc-send-string process (concat "NAMES " channel))))
1735
1736(defun-rcirc-command topic (topic)
1737 "List TOPIC for the TARGET channel.
1738With a prefix arg, prompt for new topic."
1739 (interactive "P")
1740 (if (and (interactive-p) topic)
1741 (setq topic (read-string "New Topic: " rcirc-topic)))
1742 (rcirc-send-string process (concat "TOPIC " target
1743 (when (> (length topic) 0)
1744 (concat " :" topic)))))
1745
1746(defun-rcirc-command whois (nick)
1747 "Request information from server about NICK."
1748 (interactive (list
1749 (completing-read "Whois: "
a2524d26 1750 (with-rcirc-server-buffer rcirc-nick-table))))
bd43c990
RS
1751 (rcirc-send-string process (concat "WHOIS " nick)))
1752
1753(defun-rcirc-command mode (args)
1754 "Set mode with ARGS."
1755 (interactive (list (concat (read-string "Mode nick or channel: ")
1756 " " (read-string "Mode: "))))
1757 (rcirc-send-string process (concat "MODE " args)))
1758
1759(defun-rcirc-command list (channels)
1760 "Request information on CHANNELS from server."
1761 (interactive "sList Channels: ")
1762 (rcirc-send-string process (concat "LIST " channels)))
1763
1764(defun-rcirc-command oper (args)
1765 "Send operator command to server."
1766 (interactive "sOper args: ")
1767 (rcirc-send-string process (concat "OPER " args)))
1768
1769(defun-rcirc-command quote (message)
1770 "Send MESSAGE literally to server."
1771 (interactive "sServer message: ")
1772 (rcirc-send-string process message))
1773
1774(defun-rcirc-command kick (arg)
1775 "Kick NICK from current channel."
1776 (interactive (list
1777 (concat (completing-read "Kick nick: "
a2524d26
EZ
1778 (rcirc-channel-nicks
1779 (rcirc-buffer-process)
1780 rcirc-target))
bd43c990
RS
1781 (read-from-minibuffer "Kick reason: "))))
1782 (let* ((arglist (split-string arg))
adf794e4 1783 (argstring (concat (car arglist) " :"
bd43c990
RS
1784 (mapconcat 'identity (cdr arglist) " "))))
1785 (rcirc-send-string process (concat "KICK " target " " argstring))))
1786
1787(defun rcirc-cmd-ctcp (args &optional process target)
1788 (if (string-match "^\\([^ ]+\\)\\s-+\\(.+\\)$" args)
1789 (let ((target (match-string 1 args))
1790 (request (match-string 2 args)))
adf794e4
EZ
1791 (rcirc-send-string process
1792 (format "PRIVMSG %s \C-a%s\C-a"
1793 target (upcase request))))
1794 (rcirc-print process (rcirc-nick process) "ERROR" nil
bd43c990
RS
1795 "usage: /ctcp NICK REQUEST")))
1796
1797(defun rcirc-cmd-me (args &optional process target)
1798 (rcirc-send-string process (format "PRIVMSG %s :\C-aACTION %s\C-a"
1799 target args)))
2c8abe90 1800
f8db61b2
EZ
1801(defun rcirc-add-or-remove (set &optional elt)
1802 (if (and elt (not (string= "" elt)))
1803 (if (member-ignore-case elt set)
1804 (delete elt set)
1805 (cons elt set))
1806 set))
1807
2c8abe90
AS
1808(defun-rcirc-command ignore (nick)
1809 "Manage the ignore list.
1810Ignore NICK, unignore NICK if already ignored, or list ignored
1811nicks when no NICK is given. When listing ignored nicks, the
2e398771 1812ones added to the list automatically are marked with an asterisk."
2c8abe90 1813 (interactive "sToggle ignoring of nick: ")
f8db61b2
EZ
1814 (setq rcirc-ignore-list (rcirc-add-or-remove rcirc-ignore-list nick))
1815 (rcirc-print process nil "IGNORE" target
db58efbf
EZ
1816 (mapconcat
1817 (lambda (nick)
1818 (concat nick
1819 (if (member nick rcirc-ignore-list-automatic)
1820 "*" "")))
1821 rcirc-ignore-list " ")))
2c8abe90 1822
f8db61b2
EZ
1823(defun-rcirc-command bright (nick)
1824 "Manage the bright nick list."
1825 (interactive "sToggle emphasis of nick: ")
1826 (setq rcirc-bright-nicks (rcirc-add-or-remove rcirc-bright-nicks nick))
1827 (rcirc-print process nil "BRIGHT" target
1828 (mapconcat 'identity rcirc-bright-nicks " ")))
1829
1830(defun-rcirc-command dim (nick)
1831 "Manage the dim nick list."
1832 (interactive "sToggle deemphasis of nick: ")
1833 (setq rcirc-dim-nicks (rcirc-add-or-remove rcirc-dim-nicks nick))
1834 (rcirc-print process nil "DIM" target
1835 (mapconcat 'identity rcirc-dim-nicks " ")))
1836
1837(defun-rcirc-command keyword (keyword)
1838 "Manage the keyword list.
1839Mark KEYWORD, unmark KEYWORD if already marked, or list marked
1840keywords when no KEYWORD is given."
1841 (interactive "sToggle highlighting of keyword: ")
1842 (setq rcirc-keywords (rcirc-add-or-remove rcirc-keywords keyword))
1843 (rcirc-print process nil "KEYWORD" target
1844 (mapconcat 'identity rcirc-keywords " ")))
1845
bd43c990 1846\f
f8db61b2
EZ
1847(defun rcirc-add-face (start end name &optional object)
1848 "Add face NAME to the face text property of the text from START to END."
1849 (when name
1850 (let ((pos start)
1851 next prop)
1852 (while (< pos end)
1853 (setq prop (get-text-property pos 'face object)
1854 next (next-single-property-change pos 'face object end))
1855 (unless (member name (get-text-property pos 'face object))
1856 (add-text-properties pos next (list 'face (cons name prop)) object))
1857 (setq pos next)))))
adf794e4 1858
bd43c990
RS
1859(defun rcirc-facify (string face)
1860 "Return a copy of STRING with FACE property added."
f8db61b2
EZ
1861 (let ((string (or string "")))
1862 (rcirc-add-face 0 (length string) face string)
1863 string))
bd43c990 1864
bd43c990 1865(defvar rcirc-url-regexp
2fbed782
EZ
1866 (rx-to-string
1867 `(and word-boundary
019ed9c7
EZ
1868 (or (and
1869 (or (and (or "http" "https" "ftp" "file" "gopher" "news"
1870 "telnet" "wais" "mailto")
1871 "://")
1872 "www.")
1873 (1+ (char "-a-zA-Z0-9_."))
7faa3f8c 1874 (1+ (char "-a-zA-Z0-9_"))
019ed9c7 1875 (optional ":" (1+ (char "0-9"))))
2fbed782
EZ
1876 (and (1+ (char "-a-zA-Z0-9_."))
1877 (or ".com" ".net" ".org")
1878 word-boundary))
1879 (optional
1880 (and "/"
f8db61b2
EZ
1881 (1+ (char "-a-zA-Z0-9_=!?#$\@~`%&*+|\\/:;.,{}[]()"))
1882 (char "-a-zA-Z0-9_=#$\@~`%&*+|\\/:;{}[]()")))))
2e398771 1883 "Regexp matching URLs. Set to nil to disable URL features in rcirc.")
bd43c990
RS
1884
1885(defun rcirc-browse-url (&optional arg)
2e398771 1886 "Prompt for URL to browse based on URLs in buffer."
02f47e86 1887 (interactive "P")
bd43c990
RS
1888 (let ((completions (mapcar (lambda (x) (cons x nil)) rcirc-urls))
1889 (initial-input (car rcirc-urls))
1890 (history (cdr rcirc-urls)))
1891 (browse-url (completing-read "rcirc browse-url: "
1892 completions nil nil initial-input 'history)
1893 arg)))
1894
adf794e4
EZ
1895(defun rcirc-browse-url-at-point (point)
1896 "Send URL at point to `browse-url'."
1897 (interactive "d")
7faa3f8c 1898 (let ((beg (previous-single-property-change (1+ point) 'mouse-face))
adf794e4
EZ
1899 (end (next-single-property-change point 'mouse-face)))
1900 (browse-url (buffer-substring-no-properties beg end))))
1901
1902(defun rcirc-browse-url-at-mouse (event)
1903 "Send URL at mouse click to `browse-url'."
1904 (interactive "e")
1905 (let ((position (event-end event)))
1906 (with-current-buffer (window-buffer (posn-window position))
1907 (rcirc-browse-url-at-point (posn-point position)))))
1908
f8db61b2
EZ
1909\f
1910(defvar rcirc-markup-text-functions
1911 '(rcirc-markup-body-text
1912 rcirc-markup-attributes
1913 rcirc-markup-my-nick
1914 rcirc-markup-urls
1915 rcirc-markup-keywords
1916 rcirc-markup-bright-nicks)
1917 "List of functions used to manipulate text before it is printed.
1918
1919Each function takes three arguments, PROCESS, SENDER, RESPONSE
1920and CHANNEL-BUFFER. The current buffer is temporary buffer that
1921contains the text to manipulate. Each function works on the text
1922in this buffer.")
1923
1924(defun rcirc-markup-text (process sender response text)
bd43c990 1925 "Return TEXT with properties added based on various patterns."
f8db61b2
EZ
1926 (let ((channel-buffer (current-buffer)))
1927 (with-temp-buffer
1928 (insert text)
1929 (goto-char (point-min))
1930 (dolist (fn rcirc-markup-text-functions)
1931 (save-excursion
1932 (funcall fn process sender response channel-buffer)))
1933 (buffer-substring (point-min) (point-max)))))
1934
1935(defun rcirc-markup-body-text (process sender response channel-buffer)
1936 ;; We add the text property `rcirc-text' to identify this as the
1937 ;; body text.
1938 (add-text-properties (point-min) (point-max)
1939 (list 'rcirc-text (buffer-substring-no-properties
1940 (point-min) (point-max)))))
1941
1942(defun rcirc-markup-attributes (process sender response channel-buffer)
1943 (while (re-search-forward "\\([\C-b\C-_\C-v]\\).*?\\(\\1\\|\C-o\\)" nil t)
1944 (rcirc-add-face (match-beginning 0) (match-end 0)
1945 (case (char-after (match-beginning 1))
1946 (?\C-b 'bold)
1947 (?\C-v 'italic)
1948 (?\C-_ 'underline)))
1949 ;; keep the ^O since it could terminate other attributes
1950 (when (not (eq ?\C-o (char-before (match-end 2))))
1951 (delete-region (match-beginning 2) (match-end 2)))
1952 (delete-region (match-beginning 1) (match-end 1))
1953 (goto-char (1+ (match-beginning 1))))
1954 ;; remove the ^O characters now
1955 (while (re-search-forward "\C-o+" nil t)
1956 (delete-region (match-beginning 0) (match-end 0))))
1957
1958(defun rcirc-markup-my-nick (process sender response channel-buffer)
1959 (with-syntax-table rcirc-nick-syntax-table
1960 (while (re-search-forward (concat "\\b"
1961 (regexp-quote (rcirc-nick process))
1962 "\\b")
1963 nil t)
1964 (rcirc-add-face (match-beginning 0) (match-end 0)
1965 'rcirc-nick-in-message)
1966 (when (string= response "PRIVMSG")
1967 (rcirc-add-face (point-min) (point-max) 'rcirc-nick-in-message-full-line)
1968 (rcirc-record-activity channel-buffer 'nick)))))
1969
1970(defun rcirc-markup-urls (process sender response channel-buffer)
1971 (while (re-search-forward rcirc-url-regexp nil t)
1972 (let ((start (match-beginning 0))
1973 (end (match-end 0)))
1974 (rcirc-add-face start end 'rcirc-url)
1975 (add-text-properties start end (list 'mouse-face 'highlight
1976 'keymap rcirc-browse-url-map))
1977 ;; record the url
1978 (let ((url (buffer-substring-no-properties start end)))
1979 (with-current-buffer channel-buffer
1980 (push url rcirc-urls))))))
1981
1982(defun rcirc-markup-keywords (process sender response channel-buffer)
1983 (let* ((target (with-current-buffer channel-buffer (or rcirc-target "")))
1984 (keywords (delq nil (mapcar (lambda (keyword)
1985 (when (not (string-match keyword target))
1986 keyword))
1987 rcirc-keywords))))
1988 (when keywords
1989 (while (re-search-forward (regexp-opt keywords 'words) nil t)
1990 (rcirc-add-face (match-beginning 0) (match-end 0) 'rcirc-keyword)
1991 (when (and (string= response "PRIVMSG")
1992 (not (string= sender (rcirc-nick process))))
1993 (rcirc-record-activity channel-buffer 'keyword))))))
1994
1995(defun rcirc-markup-bright-nicks (process sender response channel-buffer)
1996 (when (and rcirc-bright-nicks
1997 (string= response "NAMES"))
1998 (with-syntax-table rcirc-nick-syntax-table
1999 (while (re-search-forward (regexp-opt rcirc-bright-nicks 'words) nil t)
2000 (rcirc-add-face (match-beginning 0) (match-end 0)
2001 'rcirc-bright-nick)))))
bd43c990
RS
2002\f
2003;;; handlers
2004;; these are called with the server PROCESS, the SENDER, which is a
2005;; server or a user, depending on the command, the ARGS, which is a
2006;; list of strings, and the TEXT, which is the original server text,
2007;; verbatim
2008(defun rcirc-handler-001 (process sender args text)
2009 (rcirc-handler-generic process "001" sender args text)
2010 ;; set the real server name
adf794e4 2011 (with-rcirc-process-buffer process
bd43c990
RS
2012 (setq rcirc-server sender)
2013 (setq rcirc-nick (car args))
2014 (rcirc-update-prompt)
2015 (when rcirc-auto-authenticate-flag (rcirc-authenticate))
adf794e4 2016 (rcirc-join-channels process rcirc-startup-channels)))
bd43c990
RS
2017
2018(defun rcirc-handler-PRIVMSG (process sender args text)
2019 (let ((target (if (rcirc-channel-p (car args))
2020 (car args)
db58efbf 2021 sender))
bd43c990
RS
2022 (message (or (cadr args) "")))
2023 (if (string-match "^\C-a\\(.*\\)\C-a$" message)
2024 (rcirc-handler-CTCP process target sender (match-string 1 message))
2025 (rcirc-print process sender "PRIVMSG" target message t))
2026 ;; update nick timestamp
2027 (if (member target (rcirc-nick-channels process sender))
2028 (rcirc-put-nick-channel process sender target))))
2029
2030(defun rcirc-handler-NOTICE (process sender args text)
2031 (let ((target (car args))
2032 (message (cadr args)))
adf794e4
EZ
2033 (if (string-match "^\C-a\\(.*\\)\C-a$" message)
2034 (rcirc-handler-CTCP-response process target sender
2035 (match-string 1 message))
2036 (rcirc-print process sender "NOTICE"
2037 (cond ((rcirc-channel-p target)
2038 target)
2039 ;;; -ChanServ- [#gnu] Welcome...
02f47e86 2040 ((string-match "\\[\\(#[^\] ]+\\)\\]" message)
adf794e4
EZ
2041 (match-string 1 message))
2042 (sender
a2524d26 2043 (if (string= sender (rcirc-server-name process))
db58efbf
EZ
2044 nil ; server notice
2045 sender)))
adf794e4 2046 message t))))
bd43c990
RS
2047
2048(defun rcirc-handler-WALLOPS (process sender args text)
db58efbf 2049 (rcirc-print process sender "WALLOPS" sender (car args) t))
bd43c990
RS
2050
2051(defun rcirc-handler-JOIN (process sender args text)
db58efbf 2052 (let ((channel (car args)))
bd43c990
RS
2053 (rcirc-get-buffer-create process channel)
2054 (rcirc-print process sender "JOIN" channel "")
2055
2056 ;; print in private chat buffer if it exists
a2524d26 2057 (when (rcirc-get-buffer (rcirc-buffer-process) sender)
db58efbf 2058 (rcirc-print process sender "JOIN" sender channel))
bd43c990 2059
adf794e4 2060 (rcirc-put-nick-channel process sender channel)))
bd43c990
RS
2061
2062;; PART and KICK are handled the same way
2063(defun rcirc-handler-PART-or-KICK (process response channel sender nick args)
a2524d26 2064 (rcirc-ignore-update-automatic nick)
bd43c990
RS
2065 (if (not (string= nick (rcirc-nick process)))
2066 ;; this is someone else leaving
adf794e4
EZ
2067 (rcirc-remove-nick-channel process nick channel)
2068 ;; this is us leaving
2069 (mapc (lambda (n)
2070 (rcirc-remove-nick-channel process n channel))
2071 (rcirc-channel-nicks process channel))
2072
2073 ;; if the buffer is still around, make it inactive
2074 (let ((buffer (rcirc-get-buffer process channel)))
2075 (when buffer
2076 (with-current-buffer buffer
2077 (setq rcirc-target nil))))))
bd43c990
RS
2078
2079(defun rcirc-handler-PART (process sender args text)
a2524d26
EZ
2080 (let* ((channel (car args))
2081 (reason (cadr args))
2082 (message (concat channel " " reason)))
2083 (rcirc-print process sender "PART" channel message)
2084 ;; print in private chat buffer if it exists
2085 (when (rcirc-get-buffer (rcirc-buffer-process) sender)
2086 (rcirc-print process sender "PART" sender message))
2087
2088 (rcirc-handler-PART-or-KICK process "PART" channel sender sender reason)))
bd43c990
RS
2089
2090(defun rcirc-handler-KICK (process sender args text)
a2524d26
EZ
2091 (let* ((channel (car args))
2092 (nick (cadr args))
2093 (reason (caddr args))
2094 (message (concat nick " " channel " " reason)))
2095 (rcirc-print process sender "KICK" channel message t)
2096 ;; print in private chat buffer if it exists
2097 (when (rcirc-get-buffer (rcirc-buffer-process) nick)
2098 (rcirc-print process sender "KICK" nick message))
2099
2100 (rcirc-handler-PART-or-KICK process "KICK" channel sender nick reason)))
bd43c990
RS
2101
2102(defun rcirc-handler-QUIT (process sender args text)
db58efbf
EZ
2103 (rcirc-ignore-update-automatic sender)
2104 (mapc (lambda (channel)
2105 (rcirc-print process sender "QUIT" channel (apply 'concat args)))
2106 (rcirc-nick-channels process sender))
bd43c990 2107
db58efbf 2108 ;; print in private chat buffer if it exists
a2524d26 2109 (when (rcirc-get-buffer (rcirc-buffer-process) sender)
db58efbf 2110 (rcirc-print process sender "QUIT" sender (apply 'concat args)))
bd43c990 2111
db58efbf 2112 (rcirc-nick-remove process sender))
bd43c990
RS
2113
2114(defun rcirc-handler-NICK (process sender args text)
db58efbf 2115 (let* ((old-nick sender)
bd43c990
RS
2116 (new-nick (car args))
2117 (channels (rcirc-nick-channels process old-nick)))
2c8abe90
AS
2118 ;; update list of ignored nicks
2119 (rcirc-ignore-update-automatic old-nick)
2120 (when (member old-nick rcirc-ignore-list)
2121 (add-to-list 'rcirc-ignore-list new-nick)
2122 (add-to-list 'rcirc-ignore-list-automatic new-nick))
bd43c990
RS
2123 ;; print message to nick's channels
2124 (dolist (target channels)
2125 (rcirc-print process sender "NICK" target new-nick))
2126 ;; update private chat buffer, if it exists
adf794e4
EZ
2127 (let ((chat-buffer (rcirc-get-buffer process old-nick)))
2128 (when chat-buffer
2129 (with-current-buffer chat-buffer
2130 (rcirc-print process sender "NICK" old-nick new-nick)
2131 (setq rcirc-target new-nick)
2132 (rename-buffer (rcirc-generate-new-buffer-name process new-nick)))))
bd43c990 2133 ;; remove old nick and add new one
adf794e4 2134 (with-rcirc-process-buffer process
bd43c990
RS
2135 (let ((v (gethash old-nick rcirc-nick-table)))
2136 (remhash old-nick rcirc-nick-table)
2137 (puthash new-nick v rcirc-nick-table))
2138 ;; if this is our nick...
2139 (when (string= old-nick rcirc-nick)
2140 (setq rcirc-nick new-nick)
adf794e4 2141 (rcirc-update-prompt t)
bd43c990
RS
2142 ;; reauthenticate
2143 (when rcirc-auto-authenticate-flag (rcirc-authenticate))))))
2144
2145(defun rcirc-handler-PING (process sender args text)
2146 (rcirc-send-string process (concat "PONG " (car args))))
2147
2148(defun rcirc-handler-PONG (process sender args text)
2149 ;; do nothing
2150 )
2151
2152(defun rcirc-handler-TOPIC (process sender args text)
2153 (let ((topic (cadr args)))
2154 (rcirc-print process sender "TOPIC" (car args) topic)
2155 (with-current-buffer (rcirc-get-buffer process (car args))
2156 (setq rcirc-topic topic))))
2157
a2524d26
EZ
2158(defvar rcirc-nick-away-alist nil)
2159(defun rcirc-handler-301 (process sender args text)
2160 "RPL_AWAY"
2161 (let* ((nick (cadr args))
2162 (rec (assoc-string nick rcirc-nick-away-alist))
2163 (away-message (caddr args)))
2164 (when (or (not rec)
2165 (not (string= (cdr rec) away-message)))
2166 ;; away message has changed
2167 (rcirc-handler-generic process "AWAY" nick (cdr args) text)
2168 (if rec
2169 (setcdr rec away-message)
2170 (setq rcirc-nick-away-alist (cons (cons nick away-message)
2171 rcirc-nick-away-alist))))))
2172
bd43c990
RS
2173(defun rcirc-handler-332 (process sender args text)
2174 "RPL_TOPIC"
adf794e4
EZ
2175 (let ((buffer (or (rcirc-get-buffer process (cadr args))
2176 (rcirc-get-temp-buffer-create process (cadr args)))))
2177 (with-current-buffer buffer
2178 (setq rcirc-topic (caddr args)))))
bd43c990
RS
2179
2180(defun rcirc-handler-333 (process sender args text)
2181 "Not in rfc1459.txt"
adf794e4
EZ
2182 (let ((buffer (or (rcirc-get-buffer process (cadr args))
2183 (rcirc-get-temp-buffer-create process (cadr args)))))
2184 (with-current-buffer buffer
2185 (let ((setter (caddr args))
2186 (time (current-time-string
2187 (seconds-to-time
2188 (string-to-number (cadddr args))))))
2189 (rcirc-print process sender "TOPIC" (cadr args)
2190 (format "%s (%s on %s)" rcirc-topic setter time))))))
bd43c990
RS
2191
2192(defun rcirc-handler-477 (process sender args text)
2193 "ERR_NOCHANMODES"
2194 (rcirc-print process sender "477" (cadr args) (caddr args)))
2195
2196(defun rcirc-handler-MODE (process sender args text)
2197 (let ((target (car args))
2198 (msg (mapconcat 'identity (cdr args) " ")))
2199 (rcirc-print process sender "MODE"
2200 (if (string= target (rcirc-nick process))
2201 nil
2202 target)
2203 msg)
2204
2205 ;; print in private chat buffers if they exist
2206 (mapc (lambda (nick)
db58efbf
EZ
2207 (when (rcirc-get-buffer process nick)
2208 (rcirc-print process sender "MODE" nick msg)))
adf794e4 2209 (cddr args))))
bd43c990
RS
2210
2211(defun rcirc-get-temp-buffer-create (process channel)
2212 "Return a buffer based on PROCESS and CHANNEL."
2213 (let ((tmpnam (concat " " (downcase channel) "TMP" (process-name process))))
2214 (get-buffer-create tmpnam)))
2215
2216(defun rcirc-handler-353 (process sender args text)
2217 "RPL_NAMREPLY"
adf794e4 2218 (let ((channel (caddr args)))
bd43c990
RS
2219 (mapc (lambda (nick)
2220 (rcirc-put-nick-channel process nick channel))
adf794e4 2221 (split-string (cadddr args) " " t))
bd43c990
RS
2222 (with-current-buffer (rcirc-get-temp-buffer-create process channel)
2223 (goto-char (point-max))
2224 (insert (car (last args)) " "))))
2225
2226(defun rcirc-handler-366 (process sender args text)
2227 "RPL_ENDOFNAMES"
2228 (let* ((channel (cadr args))
2229 (buffer (rcirc-get-temp-buffer-create process channel)))
2230 (with-current-buffer buffer
2231 (rcirc-print process sender "NAMES" channel
2232 (buffer-substring (point-min) (point-max))))
2233 (kill-buffer buffer)))
2234
2235(defun rcirc-handler-433 (process sender args text)
2236 "ERR_NICKNAMEINUSE"
2237 (rcirc-handler-generic process "433" sender args text)
2238 (let* ((new-nick (concat (cadr args) "`")))
adf794e4 2239 (with-rcirc-process-buffer process
bd43c990
RS
2240 (rcirc-cmd-nick new-nick nil process))))
2241
2242(defun rcirc-authenticate ()
2243 "Send authentication to process associated with current buffer.
db58efbf 2244Passwords are stored in `rcirc-authinfo' (which see)."
bd43c990 2245 (interactive)
a2524d26 2246 (with-rcirc-server-buffer
db58efbf 2247 (dolist (i rcirc-authinfo)
a2524d26
EZ
2248 (let ((process (rcirc-buffer-process))
2249 (server (car i))
db58efbf
EZ
2250 (nick (caddr i))
2251 (method (cadr i))
2252 (args (cdddr i)))
2253 (when (and (string-match server rcirc-server)
2254 (string-match nick rcirc-nick))
2255 (cond ((equal method 'nickserv)
2256 (rcirc-send-string
a2524d26 2257 process
db58efbf
EZ
2258 (concat
2259 "PRIVMSG nickserv :identify "
2260 (car args))))
2261 ((equal method 'chanserv)
2262 (rcirc-send-string
a2524d26 2263 process
db58efbf
EZ
2264 (concat
2265 "PRIVMSG chanserv :identify "
2266 (cadr args) " " (car args))))
2267 ((equal method 'bitlbee)
2268 (rcirc-send-string
a2524d26 2269 process
db58efbf
EZ
2270 (concat "PRIVMSG &bitlbee :identify " (car args))))
2271 (t
2272 (message "No %S authentication method defined"
2273 method))))))))
adf794e4 2274
bd43c990
RS
2275(defun rcirc-handler-INVITE (process sender args text)
2276 (rcirc-print process sender "INVITE" nil (mapconcat 'identity args " ") t))
2277
2278(defun rcirc-handler-ERROR (process sender args text)
2279 (rcirc-print process sender "ERROR" nil (mapconcat 'identity args " ")))
2280
2281(defun rcirc-handler-CTCP (process target sender text)
2282 (if (string-match "^\\([^ ]+\\) *\\(.*\\)$" text)
2283 (let* ((request (upcase (match-string 1 text)))
2284 (args (match-string 2 text))
bd43c990
RS
2285 (handler (intern-soft (concat "rcirc-handler-ctcp-" request))))
2286 (if (not (fboundp handler))
db58efbf
EZ
2287 (rcirc-print process sender "ERROR" target
2288 (format "%s sent unsupported ctcp: %s" sender text)
adf794e4 2289 t)
bd43c990
RS
2290 (funcall handler process target sender args)
2291 (if (not (string= request "ACTION"))
db58efbf 2292 (rcirc-print process sender "CTCP" target
adf794e4 2293 (format "%s" text) t))))))
bd43c990
RS
2294
2295(defun rcirc-handler-ctcp-VERSION (process target sender args)
2296 (rcirc-send-string process
db58efbf 2297 (concat "NOTICE " sender
adf794e4 2298 " :\C-aVERSION " rcirc-id-string
bd43c990
RS
2299 "\C-a")))
2300
2301(defun rcirc-handler-ctcp-ACTION (process target sender args)
2302 (rcirc-print process sender "ACTION" target args t))
2303
2304(defun rcirc-handler-ctcp-TIME (process target sender args)
2305 (rcirc-send-string process
db58efbf 2306 (concat "NOTICE " sender
bd43c990 2307 " :\C-aTIME " (current-time-string) "\C-a")))
adf794e4
EZ
2308
2309(defun rcirc-handler-CTCP-response (process target sender message)
2310 (rcirc-print process sender "CTCP" nil message t))
bd43c990 2311\f
adf794e4
EZ
2312(defgroup rcirc-faces nil
2313 "Faces for rcirc."
2314 :group 'rcirc
2315 :group 'faces)
2316
ad8121fe
EZ
2317(defface rcirc-my-nick ; font-lock-function-name-face
2318 '((((class color) (min-colors 88) (background light)) (:foreground "Blue1"))
2319 (((class color) (min-colors 88) (background dark)) (:foreground "LightSkyBlue"))
2320 (((class color) (min-colors 16) (background light)) (:foreground "Blue"))
2321 (((class color) (min-colors 16) (background dark)) (:foreground "LightSkyBlue"))
2322 (((class color) (min-colors 8)) (:foreground "blue" :weight bold))
2323 (t (:inverse-video t :weight bold)))
adf794e4
EZ
2324 "The face used to highlight my messages."
2325 :group 'rcirc-faces)
bd43c990 2326
ad8121fe
EZ
2327(defface rcirc-other-nick ; font-lock-variable-name-face
2328 '((((class grayscale) (background light))
2329 (:foreground "Gray90" :weight bold :slant italic))
bd43c990 2330 (((class grayscale) (background dark))
ad8121fe
EZ
2331 (:foreground "DimGray" :weight bold :slant italic))
2332 (((class color) (min-colors 88) (background light)) (:foreground "DarkGoldenrod"))
2333 (((class color) (min-colors 88) (background dark)) (:foreground "LightGoldenrod"))
2334 (((class color) (min-colors 16) (background light)) (:foreground "DarkGoldenrod"))
2335 (((class color) (min-colors 16) (background dark)) (:foreground "LightGoldenrod"))
2336 (((class color) (min-colors 8)) (:foreground "yellow" :weight light))
2337 (t (:weight bold :slant italic)))
adf794e4
EZ
2338 "The face used to highlight other messages."
2339 :group 'rcirc-faces)
bd43c990 2340
02f47e86
MB
2341(defface rcirc-bright-nick
2342 '((((class grayscale) (background light))
2343 (:foreground "LightGray" :weight bold :underline t))
2344 (((class grayscale) (background dark))
2345 (:foreground "Gray50" :weight bold :underline t))
2346 (((class color) (min-colors 88) (background light)) (:foreground "CadetBlue"))
2347 (((class color) (min-colors 88) (background dark)) (:foreground "Aquamarine"))
2348 (((class color) (min-colors 16) (background light)) (:foreground "CadetBlue"))
2349 (((class color) (min-colors 16) (background dark)) (:foreground "Aquamarine"))
2350 (((class color) (min-colors 8)) (:foreground "magenta"))
2351 (t (:weight bold :underline t)))
f8db61b2 2352 "Face used for nicks matched by `rcirc-bright-nicks'."
02f47e86
MB
2353 :group 'rcirc-faces)
2354
2355(defface rcirc-dim-nick
2356 '((t :inherit default))
f8db61b2 2357 "Face used for nicks in `rcirc-dim-nicks'."
02f47e86
MB
2358 :group 'rcirc-faces)
2359
ad8121fe
EZ
2360(defface rcirc-server ; font-lock-comment-face
2361 '((((class grayscale) (background light))
2362 (:foreground "DimGray" :weight bold :slant italic))
bd43c990 2363 (((class grayscale) (background dark))
ad8121fe
EZ
2364 (:foreground "LightGray" :weight bold :slant italic))
2365 (((class color) (min-colors 88) (background light))
2366 (:foreground "Firebrick"))
2367 (((class color) (min-colors 88) (background dark))
2368 (:foreground "chocolate1"))
2369 (((class color) (min-colors 16) (background light))
2370 (:foreground "red"))
2371 (((class color) (min-colors 16) (background dark))
2372 (:foreground "red1"))
2373 (((class color) (min-colors 8) (background light))
2374 )
2375 (((class color) (min-colors 8) (background dark))
2376 )
2377 (t (:weight bold :slant italic)))
adf794e4
EZ
2378 "The face used to highlight server messages."
2379 :group 'rcirc-faces)
bd43c990 2380
ad8121fe 2381(defface rcirc-server-prefix ; font-lock-comment-delimiter-face
db58efbf 2382 '((default :inherit rcirc-server)
ad8121fe
EZ
2383 (((class grayscale)))
2384 (((class color) (min-colors 16)))
2385 (((class color) (min-colors 8) (background light))
2386 :foreground "red")
2387 (((class color) (min-colors 8) (background dark))
2388 :foreground "red1"))
2389 "The face used to highlight server prefixes."
2390 :group 'rcirc-faces)
2391
2392(defface rcirc-timestamp
2393 '((t (:inherit default)))
2394 "The face used to highlight timestamps."
2395 :group 'rcirc-faces)
2396
2397(defface rcirc-nick-in-message ; font-lock-keyword-face
2398 '((((class grayscale) (background light)) (:foreground "LightGray" :weight bold))
2399 (((class grayscale) (background dark)) (:foreground "DimGray" :weight bold))
2400 (((class color) (min-colors 88) (background light)) (:foreground "Purple"))
2401 (((class color) (min-colors 88) (background dark)) (:foreground "Cyan1"))
2402 (((class color) (min-colors 16) (background light)) (:foreground "Purple"))
2403 (((class color) (min-colors 16) (background dark)) (:foreground "Cyan"))
2404 (((class color) (min-colors 8)) (:foreground "cyan" :weight bold))
2405 (t (:weight bold)))
f8db61b2 2406 "The face used to highlight instances of your nick within messages."
adf794e4 2407 :group 'rcirc-faces)
bd43c990 2408
f8db61b2
EZ
2409(defface rcirc-nick-in-message-full-line
2410 '((t (:bold t)))
2411 "The face used emphasize the entire message when your nick is mentioned."
2412 :group 'rcirc-faces)
2413
ad8121fe
EZ
2414(defface rcirc-prompt ; comint-highlight-prompt
2415 '((((min-colors 88) (background dark)) (:foreground "cyan1"))
2416 (((background dark)) (:foreground "cyan"))
bd43c990 2417 (t (:foreground "dark blue")))
2e398771 2418 "The face used to highlight prompts."
adf794e4 2419 :group 'rcirc-faces)
bd43c990 2420
f8db61b2
EZ
2421(defface rcirc-track-nick
2422 '((t (:inverse-video t)))
2423 "The face used in the mode-line when your nick is mentioned."
2424 :group 'rcirc-faces)
2425
2426(defface rcirc-track-keyword
2427 '((t (:bold t )))
2428 "The face used in the mode-line when keywords are mentioned."
2429 :group 'rcirc-faces)
2430
2431(defface rcirc-url
bd43c990 2432 '((t (:bold t)))
f8db61b2
EZ
2433 "The face used to highlight urls."
2434 :group 'rcirc-faces)
2435
2436(defface rcirc-keyword
2437 '((t (:inherit highlight)))
2438 "The face used to highlight keywords."
adf794e4 2439 :group 'rcirc-faces)
a2524d26 2440
bd43c990 2441\f
adf794e4 2442;; When using M-x flyspell-mode, only check words after the prompt
bd43c990
RS
2443(put 'rcirc-mode 'flyspell-mode-predicate 'rcirc-looking-at-input)
2444(defun rcirc-looking-at-input ()
2445 "Returns true if point is past the input marker."
2446 (>= (point) rcirc-prompt-end-marker))
2447\f
2448
2449(provide 'rcirc)
e636ae15
MB
2450
2451;; arch-tag: b471b7e8-6b5a-4399-b2c6-a3c78dfc8ffb
bd43c990 2452;;; rcirc.el ends here