* lisp/net/rcirc.el: Add support for password authentication.
[emacs.git] / lisp / net / rcirc.el
blob17e36855ac67e304c6124757253a19cba748ef20
1 ;;; rcirc.el --- default, simple IRC client.
3 ;; Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
5 ;; Author: Ryan Yeske
6 ;; URL: http://www.nongnu.org/rcirc
7 ;; Keywords: comm
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs 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 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs 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.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24 ;;; Commentary:
26 ;; Internet Relay Chat (IRC) is a form of instant communication over
27 ;; the Internet. It is mainly designed for group (many-to-many)
28 ;; communication in discussion forums called channels, but also allows
29 ;; one-to-one communication.
31 ;; Rcirc has simple defaults and clear and consistent behavior.
32 ;; Message arrival timestamps, activity notification on the modeline,
33 ;; message filling, nick completion, and keepalive pings are all
34 ;; enabled by default, but can easily be adjusted or turned off. Each
35 ;; discussion takes place in its own buffer and there is a single
36 ;; server buffer per connection.
38 ;; Open a new irc connection with:
39 ;; M-x irc RET
41 ;;; Todo:
43 ;;; Code:
45 (require 'ring)
46 (require 'time-date)
47 (eval-when-compile (require 'cl))
49 (defgroup rcirc nil
50 "Simple IRC client."
51 :version "22.1"
52 :prefix "rcirc-"
53 :link '(custom-manual "(rcirc)")
54 :group 'applications)
56 (defcustom rcirc-server-alist
57 '(("irc.freenode.net" :channels ("#rcirc")))
58 "An alist of IRC connections to establish when running `rcirc'.
59 Each element looks like (SERVER-NAME PARAMETERS).
61 SERVER-NAME is a string describing the server to connect
62 to.
64 The optional PARAMETERS come in pairs PARAMETER VALUE.
66 The following parameters are recognized:
68 `:nick'
70 VALUE must be a string. If absent, `rcirc-default-nick' is used
71 for this connection.
73 `:port'
75 VALUE must be a number or string. If absent,
76 `rcirc-default-port' is used.
78 `:user-name'
80 VALUE must be a string. If absent, `rcirc-default-user-name' is
81 used.
83 `:password'
85 VALUE must be a string. If absent, no PASS command will be sent
86 to the server.
88 `:full-name'
90 VALUE must be a string. If absent, `rcirc-default-full-name' is
91 used.
93 `:channels'
95 VALUE must be a list of strings describing which channels to join
96 when connecting to this server. If absent, no channels will be
97 connected to automatically."
98 :type '(alist :key-type string
99 :value-type (plist :options ((:nick string)
100 (:port integer)
101 (:user-name string)
102 (:password string)
103 (:full-name string)
104 (:channels (repeat string)))))
105 :group 'rcirc)
107 (defcustom rcirc-default-port 6667
108 "The default port to connect to."
109 :type 'integer
110 :group 'rcirc)
112 (defcustom rcirc-default-nick (user-login-name)
113 "Your nick."
114 :type 'string
115 :group 'rcirc)
117 (defcustom rcirc-default-user-name (user-login-name)
118 "Your user name sent to the server when connecting."
119 :type 'string
120 :group 'rcirc)
122 (defcustom rcirc-default-full-name (if (string= (user-full-name) "")
123 rcirc-default-user-name
124 (user-full-name))
125 "The full name sent to the server when connecting."
126 :type 'string
127 :group 'rcirc)
129 (defcustom rcirc-fill-flag t
130 "*Non-nil means line-wrap messages printed in channel buffers."
131 :type 'boolean
132 :group 'rcirc)
134 (defcustom rcirc-fill-column nil
135 "*Column beyond which automatic line-wrapping should happen.
136 If nil, use value of `fill-column'. If 'frame-width, use the
137 maximum frame width."
138 :type '(choice (const :tag "Value of `fill-column'")
139 (const :tag "Full frame width" frame-width)
140 (integer :tag "Number of columns"))
141 :group 'rcirc)
143 (defcustom rcirc-fill-prefix nil
144 "*Text to insert before filled lines.
145 If nil, calculate the prefix dynamically to line up text
146 underneath each nick."
147 :type '(choice (const :tag "Dynamic" nil)
148 (string :tag "Prefix text"))
149 :group 'rcirc)
151 (defvar rcirc-ignore-buffer-activity-flag nil
152 "If non-nil, ignore activity in this buffer.")
153 (make-variable-buffer-local 'rcirc-ignore-buffer-activity-flag)
155 (defvar rcirc-low-priority-flag nil
156 "If non-nil, activity in this buffer is considered low priority.")
157 (make-variable-buffer-local 'rcirc-low-priority-flag)
159 (defvar rcirc-omit-mode nil
160 "Non-nil if Rcirc-Omit mode is enabled.
161 Use the command `rcirc-omit-mode' to change this variable.")
162 (make-variable-buffer-local 'rcirc-omit-mode)
164 (defcustom rcirc-time-format "%H:%M "
165 "*Describes how timestamps are printed.
166 Used as the first arg to `format-time-string'."
167 :type 'string
168 :group 'rcirc)
170 (defcustom rcirc-input-ring-size 1024
171 "*Size of input history ring."
172 :type 'integer
173 :group 'rcirc)
175 (defcustom rcirc-read-only-flag t
176 "*Non-nil means make text in IRC buffers read-only."
177 :type 'boolean
178 :group 'rcirc)
180 (defcustom rcirc-buffer-maximum-lines nil
181 "*The maximum size in lines for rcirc buffers.
182 Channel buffers are truncated from the top to be no greater than this
183 number. If zero or nil, no truncating is done."
184 :type '(choice (const :tag "No truncation" nil)
185 (integer :tag "Number of lines"))
186 :group 'rcirc)
188 (defcustom rcirc-scroll-show-maximum-output t
189 "*If non-nil, scroll buffer to keep the point at the bottom of
190 the window."
191 :type 'boolean
192 :group 'rcirc)
194 (defcustom rcirc-authinfo nil
195 "List of authentication passwords.
196 Each element of the list is a list with a SERVER-REGEXP string
197 and a method symbol followed by method specific arguments.
199 The valid METHOD symbols are `nickserv', `chanserv' and
200 `bitlbee'.
202 The ARGUMENTS for each METHOD symbol are:
203 `nickserv': NICK PASSWORD [NICKSERV-NICK]
204 `chanserv': NICK CHANNEL PASSWORD
205 `bitlbee': NICK PASSWORD
207 Examples:
208 ((\"freenode\" nickserv \"bob\" \"p455w0rd\")
209 (\"freenode\" chanserv \"bob\" \"#bobland\" \"passwd99\")
210 (\"bitlbee\" bitlbee \"robert\" \"sekrit\")
211 (\"dal.net\" nickserv \"bob\" \"sekrit\" \"NickServ@services.dal.net\"))"
212 :type '(alist :key-type (string :tag "Server")
213 :value-type (choice (list :tag "NickServ"
214 (const nickserv)
215 (string :tag "Nick")
216 (string :tag "Password"))
217 (list :tag "ChanServ"
218 (const chanserv)
219 (string :tag "Nick")
220 (string :tag "Channel")
221 (string :tag "Password"))
222 (list :tag "BitlBee"
223 (const bitlbee)
224 (string :tag "Nick")
225 (string :tag "Password"))))
226 :group 'rcirc)
228 (defcustom rcirc-auto-authenticate-flag t
229 "*Non-nil means automatically send authentication string to server.
230 See also `rcirc-authinfo'."
231 :type 'boolean
232 :group 'rcirc)
234 (defcustom rcirc-prompt "> "
235 "Prompt string to use in IRC buffers.
237 The following replacements are made:
238 %n is your nick.
239 %s is the server.
240 %t is the buffer target, a channel or a user.
242 Setting this alone will not affect the prompt;
243 use either M-x customize or also call `rcirc-update-prompt'."
244 :type 'string
245 :set 'rcirc-set-changed
246 :initialize 'custom-initialize-default
247 :group 'rcirc)
249 (defcustom rcirc-keywords nil
250 "List of keywords to highlight in message text."
251 :type '(repeat string)
252 :group 'rcirc)
254 (defcustom rcirc-ignore-list ()
255 "List of ignored nicks.
256 Use /ignore to list them, use /ignore NICK to add or remove a nick."
257 :type '(repeat string)
258 :group 'rcirc)
260 (defvar rcirc-ignore-list-automatic ()
261 "List of ignored nicks added to `rcirc-ignore-list' because of renaming.
262 When an ignored person renames, their nick is added to both lists.
263 Nicks will be removed from the automatic list on follow-up renamings or
264 parts.")
266 (defcustom rcirc-bright-nicks nil
267 "List of nicks to be emphasized.
268 See `rcirc-bright-nick' face."
269 :type '(repeat string)
270 :group 'rcirc)
272 (defcustom rcirc-dim-nicks nil
273 "List of nicks to be deemphasized.
274 See `rcirc-dim-nick' face."
275 :type '(repeat string)
276 :group 'rcirc)
278 (defcustom rcirc-print-hooks nil
279 "Hook run after text is printed.
280 Called with 5 arguments, PROCESS, SENDER, RESPONSE, TARGET and TEXT."
281 :type 'hook
282 :group 'rcirc)
284 (defcustom rcirc-always-use-server-buffer-flag nil
285 "Non-nil means messages without a channel target will go to the server buffer."
286 :type 'boolean
287 :group 'rcirc)
289 (defcustom rcirc-decode-coding-system 'utf-8
290 "Coding system used to decode incoming irc messages."
291 :type 'coding-system
292 :group 'rcirc)
294 (defcustom rcirc-encode-coding-system 'utf-8
295 "Coding system used to encode outgoing irc messages."
296 :type 'coding-system
297 :group 'rcirc)
299 (defcustom rcirc-coding-system-alist nil
300 "Alist to decide a coding system to use for a channel I/O operation.
301 The format is ((PATTERN . VAL) ...).
302 PATTERN is either a string or a cons of strings.
303 If PATTERN is a string, it is used to match a target.
304 If PATTERN is a cons of strings, the car part is used to match a
305 target, and the cdr part is used to match a server.
306 VAL is either a coding system or a cons of coding systems.
307 If VAL is a coding system, it is used for both decoding and encoding
308 messages.
309 If VAL is a cons of coding systems, the car part is used for decoding,
310 and the cdr part is used for encoding."
311 :type '(alist :key-type (choice (string :tag "Channel Regexp")
312 (cons (string :tag "Channel Regexp")
313 (string :tag "Server Regexp")))
314 :value-type (choice coding-system
315 (cons (coding-system :tag "Decode")
316 (coding-system :tag "Encode"))))
317 :group 'rcirc)
319 (defcustom rcirc-multiline-major-mode 'fundamental-mode
320 "Major-mode function to use in multiline edit buffers."
321 :type 'function
322 :group 'rcirc)
324 (defvar rcirc-nick nil)
326 (defvar rcirc-prompt-start-marker nil)
327 (defvar rcirc-prompt-end-marker nil)
329 (defvar rcirc-nick-table nil)
331 (defvar rcirc-recent-quit-alist nil
332 "Alist of nicks that have recently quit or parted the channel.")
334 (defvar rcirc-nick-syntax-table
335 (let ((table (make-syntax-table text-mode-syntax-table)))
336 (mapc (lambda (c) (modify-syntax-entry c "w" table))
337 "[]\\`_^{|}-")
338 (modify-syntax-entry ?' "_" table)
339 table)
340 "Syntax table which includes all nick characters as word constituents.")
342 ;; each process has an alist of (target . buffer) pairs
343 (defvar rcirc-buffer-alist nil)
345 (defvar rcirc-activity nil
346 "List of buffers with unviewed activity.")
348 (defvar rcirc-activity-string ""
349 "String displayed in modeline representing `rcirc-activity'.")
350 (put 'rcirc-activity-string 'risky-local-variable t)
352 (defvar rcirc-server-buffer nil
353 "The server buffer associated with this channel buffer.")
355 (defvar rcirc-target nil
356 "The channel or user associated with this buffer.")
358 (defvar rcirc-urls nil
359 "List of urls seen in the current buffer.")
360 (put 'rcirc-urls 'permanent-local t)
362 (defvar rcirc-timeout-seconds 600
363 "Kill connection after this many seconds if there is no activity.")
365 (defconst rcirc-id-string (concat "rcirc on GNU Emacs " emacs-version))
367 (defvar rcirc-startup-channels nil)
369 (defvar rcirc-server-name-history nil
370 "History variable for \\[rcirc] call.")
372 (defvar rcirc-server-port-history nil
373 "History variable for \\[rcirc] call.")
375 (defvar rcirc-nick-name-history nil
376 "History variable for \\[rcirc] call.")
378 ;;;###autoload
379 (defun rcirc (arg)
380 "Connect to all servers in `rcirc-server-alist'.
382 Do not connect to a server if it is already connected.
384 If ARG is non-nil, instead prompt for connection parameters."
385 (interactive "P")
386 (if arg
387 (let* ((server (completing-read "IRC Server: "
388 rcirc-server-alist
389 nil nil
390 (caar rcirc-server-alist)
391 'rcirc-server-name-history))
392 (server-plist (cdr (assoc-string server rcirc-server-alist)))
393 (port (read-string "IRC Port: "
394 (number-to-string
395 (or (plist-get server-plist :port)
396 rcirc-default-port))
397 'rcirc-server-port-history))
398 (nick (read-string "IRC Nick: "
399 (or (plist-get server-plist :nick)
400 rcirc-default-nick)
401 'rcirc-nick-name-history))
402 (password (read-passwd "IRC Password: "
403 (plist-get server-plist 'password)))
404 (channels (split-string
405 (read-string "IRC Channels: "
406 (mapconcat 'identity
407 (plist-get server-plist
408 :channels)
409 " "))
410 "[, ]+" t)))
412 (when (= 0 (length password))
413 (setq password nil))
415 (rcirc-connect server port nick rcirc-default-user-name
416 rcirc-default-full-name
417 channels password))
418 ;; connect to servers in `rcirc-server-alist'
419 (let (connected-servers)
420 (dolist (c rcirc-server-alist)
421 (let ((server (car c))
422 (nick (or (plist-get (cdr c) :nick) rcirc-default-nick))
423 (port (or (plist-get (cdr c) :port) rcirc-default-port))
424 (user-name (or (plist-get (cdr c) :user-name)
425 rcirc-default-user-name))
426 (full-name (or (plist-get (cdr c) :full-name)
427 rcirc-default-full-name))
428 (channels (plist-get (cdr c) :channels))
429 (password (plist-get (cdr c) :password)))
430 (when server
431 (let (connected)
432 (dolist (p (rcirc-process-list))
433 (when (string= server (process-name p))
434 (setq connected p)))
435 (if (not connected)
436 (condition-case e
437 (rcirc-connect server port nick user-name
438 full-name channels password)
439 (quit (message "Quit connecting to %s" server)))
440 (with-current-buffer (process-buffer connected)
441 (setq connected-servers
442 (cons (process-contact (get-buffer-process
443 (current-buffer)) :host)
444 connected-servers))))))))
445 (when connected-servers
446 (message "Already connected to %s"
447 (if (cdr connected-servers)
448 (concat (mapconcat 'identity (butlast connected-servers) ", ")
449 ", and "
450 (car (last connected-servers)))
451 (car connected-servers)))))))
453 ;;;###autoload
454 (defalias 'irc 'rcirc)
457 (defvar rcirc-process-output nil)
458 (defvar rcirc-topic nil)
459 (defvar rcirc-keepalive-timer nil)
460 (defvar rcirc-last-server-message-time nil)
461 (defvar rcirc-server nil) ; server provided by server
462 (defvar rcirc-server-name nil) ; server name given by 001 response
463 (defvar rcirc-timeout-timer nil)
464 (defvar rcirc-user-disconnect nil)
465 (defvar rcirc-connecting nil)
466 (defvar rcirc-process nil)
468 ;;;###autoload
469 (defun rcirc-connect (server &optional port nick user-name full-name
470 startup-channels password)
471 (save-excursion
472 (message "Connecting to %s..." server)
473 (let* ((inhibit-eol-conversion)
474 (port-number (if port
475 (if (stringp port)
476 (string-to-number port)
477 port)
478 rcirc-default-port))
479 (nick (or nick rcirc-default-nick))
480 (user-name (or user-name rcirc-default-user-name))
481 (full-name (or full-name rcirc-default-full-name))
482 (startup-channels startup-channels)
483 (process (make-network-process :name server :host server :service port-number)))
484 ;; set up process
485 (set-process-coding-system process 'raw-text 'raw-text)
486 (switch-to-buffer (rcirc-generate-new-buffer-name process nil))
487 (set-process-buffer process (current-buffer))
488 (rcirc-mode process nil)
489 (set-process-sentinel process 'rcirc-sentinel)
490 (set-process-filter process 'rcirc-filter)
491 (make-local-variable 'rcirc-process)
492 (setq rcirc-process process)
493 (make-local-variable 'rcirc-server)
494 (setq rcirc-server server)
495 (make-local-variable 'rcirc-server-name)
496 (setq rcirc-server-name server) ; update when we get 001 response
497 (make-local-variable 'rcirc-buffer-alist)
498 (setq rcirc-buffer-alist nil)
499 (make-local-variable 'rcirc-nick-table)
500 (setq rcirc-nick-table (make-hash-table :test 'equal))
501 (make-local-variable 'rcirc-nick)
502 (setq rcirc-nick nick)
503 (make-local-variable 'rcirc-process-output)
504 (setq rcirc-process-output nil)
505 (make-local-variable 'rcirc-startup-channels)
506 (setq rcirc-startup-channels startup-channels)
507 (make-local-variable 'rcirc-last-server-message-time)
508 (setq rcirc-last-server-message-time (current-time))
509 (make-local-variable 'rcirc-timeout-timer)
510 (setq rcirc-timeout-timer nil)
511 (make-local-variable 'rcirc-user-disconnect)
512 (setq rcirc-user-disconnect nil)
513 (make-local-variable 'rcirc-connecting)
514 (setq rcirc-connecting t)
516 (add-hook 'auto-save-hook 'rcirc-log-write)
518 ;; identify
519 (when password
520 (rcirc-send-string process (concat "PASS " password)))
521 (rcirc-send-string process (concat "NICK " nick))
522 (rcirc-send-string process (concat "USER " user-name
523 " hostname servername :"
524 full-name))
526 ;; setup ping timer if necessary
527 (unless rcirc-keepalive-timer
528 (setq rcirc-keepalive-timer
529 (run-at-time 0 (/ rcirc-timeout-seconds 2) 'rcirc-keepalive)))
531 (message "Connecting to %s...done" server)
533 ;; return process object
534 process)))
536 (defmacro with-rcirc-process-buffer (process &rest body)
537 (declare (indent 1) (debug t))
538 `(with-current-buffer (process-buffer ,process)
539 ,@body))
541 (defmacro with-rcirc-server-buffer (&rest body)
542 (declare (indent 0) (debug t))
543 `(with-current-buffer rcirc-server-buffer
544 ,@body))
546 (defun rcirc-keepalive ()
547 "Send keep alive pings to active rcirc processes.
548 Kill processes that have not received a server message since the
549 last ping."
550 (if (rcirc-process-list)
551 (mapc (lambda (process)
552 (with-rcirc-process-buffer process
553 (when (not rcirc-connecting)
554 (rcirc-send-string process
555 (format "PRIVMSG %s :\C-aKEEPALIVE %f\C-a"
556 rcirc-nick
557 (if (featurep 'xemacs)
558 (time-to-seconds
559 (current-time))
560 (float-time)))))))
561 (rcirc-process-list))
562 ;; no processes, clean up timer
563 (cancel-timer rcirc-keepalive-timer)
564 (setq rcirc-keepalive-timer nil)))
566 (defun rcirc-handler-ctcp-KEEPALIVE (process target sender message)
567 (with-rcirc-process-buffer process
568 (setq header-line-format (format "%f" (- (if (featurep 'xemacs)
569 (time-to-seconds
570 (current-time))
571 (float-time))
572 (string-to-number message))))))
574 (defvar rcirc-debug-buffer " *rcirc debug*")
575 (defvar rcirc-debug-flag nil
576 "If non-nil, write information to `rcirc-debug-buffer'.")
577 (defun rcirc-debug (process text)
578 "Add an entry to the debug log including PROCESS and TEXT.
579 Debug text is written to `rcirc-debug-buffer' if `rcirc-debug-flag'
580 is non-nil."
581 (when rcirc-debug-flag
582 (with-current-buffer (get-buffer-create rcirc-debug-buffer)
583 (goto-char (point-max))
584 (insert (concat
586 (format-time-string "%Y-%m-%dT%T ") (process-name process)
587 "] "
588 text)))))
590 (defvar rcirc-sentinel-hooks nil
591 "Hook functions called when the process sentinel is called.
592 Functions are called with PROCESS and SENTINEL arguments.")
594 (defun rcirc-sentinel (process sentinel)
595 "Called when PROCESS receives SENTINEL."
596 (let ((sentinel (replace-regexp-in-string "\n" "" sentinel)))
597 (rcirc-debug process (format "SENTINEL: %S %S\n" process sentinel))
598 (with-rcirc-process-buffer process
599 (dolist (buffer (cons nil (mapcar 'cdr rcirc-buffer-alist)))
600 (with-current-buffer (or buffer (current-buffer))
601 (rcirc-print process "rcirc.el" "ERROR" rcirc-target
602 (format "%s: %s (%S)"
603 (process-name process)
604 sentinel
605 (process-status process)) (not rcirc-target))
606 (rcirc-disconnect-buffer)))
607 (run-hook-with-args 'rcirc-sentinel-hooks process sentinel))))
609 (defun rcirc-disconnect-buffer (&optional buffer)
610 (with-current-buffer (or buffer (current-buffer))
611 ;; set rcirc-target to nil for each channel so cleanup
612 ;; doesnt happen when we reconnect
613 (setq rcirc-target nil)
614 (setq mode-line-process ":disconnected")))
616 (defun rcirc-process-list ()
617 "Return a list of rcirc processes."
618 (let (ps)
619 (mapc (lambda (p)
620 (when (buffer-live-p (process-buffer p))
621 (with-rcirc-process-buffer p
622 (when (eq major-mode 'rcirc-mode)
623 (setq ps (cons p ps))))))
624 (process-list))
625 ps))
627 (defvar rcirc-receive-message-hooks nil
628 "Hook functions run when a message is received from server.
629 Function is called with PROCESS, COMMAND, SENDER, ARGS and LINE.")
630 (defun rcirc-filter (process output)
631 "Called when PROCESS receives OUTPUT."
632 (rcirc-debug process output)
633 (rcirc-reschedule-timeout process)
634 (with-rcirc-process-buffer process
635 (setq rcirc-last-server-message-time (current-time))
636 (setq rcirc-process-output (concat rcirc-process-output output))
637 (when (= (aref rcirc-process-output
638 (1- (length rcirc-process-output))) ?\n)
639 (mapc (lambda (line)
640 (rcirc-process-server-response process line))
641 (split-string rcirc-process-output "[\n\r]" t))
642 (setq rcirc-process-output nil))))
644 (defun rcirc-reschedule-timeout (process)
645 (with-rcirc-process-buffer process
646 (when (not rcirc-connecting)
647 (with-rcirc-process-buffer process
648 (when rcirc-timeout-timer (cancel-timer rcirc-timeout-timer))
649 (setq rcirc-timeout-timer (run-at-time rcirc-timeout-seconds nil
650 'rcirc-delete-process
651 process))))))
653 (defun rcirc-delete-process (process)
654 (delete-process process))
656 (defvar rcirc-trap-errors-flag t)
657 (defun rcirc-process-server-response (process text)
658 (if rcirc-trap-errors-flag
659 (condition-case err
660 (rcirc-process-server-response-1 process text)
661 (error
662 (rcirc-print process "RCIRC" "ERROR" nil
663 (format "\"%s\" %s" text err) t)))
664 (rcirc-process-server-response-1 process text)))
666 (defun rcirc-process-server-response-1 (process text)
667 (if (string-match "^\\(:\\([^ ]+\\) \\)?\\([^ ]+\\) \\(.+\\)$" text)
668 (let* ((user (match-string 2 text))
669 (sender (rcirc-user-nick user))
670 (cmd (match-string 3 text))
671 (args (match-string 4 text))
672 (handler (intern-soft (concat "rcirc-handler-" cmd))))
673 (string-match "^\\([^:]*\\):?\\(.+\\)?$" args)
674 (let* ((args1 (match-string 1 args))
675 (args2 (match-string 2 args))
676 (args (delq nil (append (split-string args1 " " t)
677 (list args2)))))
678 (if (not (fboundp handler))
679 (rcirc-handler-generic process cmd sender args text)
680 (funcall handler process sender args text))
681 (run-hook-with-args 'rcirc-receive-message-hooks
682 process cmd sender args text)))
683 (message "UNHANDLED: %s" text)))
685 (defvar rcirc-responses-no-activity '("305" "306")
686 "Responses that don't trigger activity in the mode-line indicator.")
688 (defun rcirc-handler-generic (process response sender args text)
689 "Generic server response handler."
690 (rcirc-print process sender response nil
691 (mapconcat 'identity (cdr args) " ")
692 (not (member response rcirc-responses-no-activity))))
694 (defun rcirc-send-string (process string)
695 "Send PROCESS a STRING plus a newline."
696 (let ((string (concat (encode-coding-string string rcirc-encode-coding-system)
697 "\n")))
698 (unless (eq (process-status process) 'open)
699 (error "Network connection to %s is not open"
700 (process-name process)))
701 (rcirc-debug process string)
702 (process-send-string process string)))
704 (defun rcirc-buffer-process (&optional buffer)
705 "Return the process associated with channel BUFFER.
706 With no argument or nil as argument, use the current buffer."
707 (or (get-buffer-process (if buffer
708 (with-current-buffer buffer
709 rcirc-server-buffer)
710 rcirc-server-buffer))
711 rcirc-process))
713 (defun rcirc-server-name (process)
714 "Return PROCESS server name, given by the 001 response."
715 (with-rcirc-process-buffer process
716 (or rcirc-server-name
717 (warn "server name for process %S unknown" process))))
719 (defun rcirc-nick (process)
720 "Return PROCESS nick."
721 (with-rcirc-process-buffer process
722 (or rcirc-nick rcirc-default-nick)))
724 (defun rcirc-buffer-nick (&optional buffer)
725 "Return the nick associated with BUFFER.
726 With no argument or nil as argument, use the current buffer."
727 (with-current-buffer (or buffer (current-buffer))
728 (with-current-buffer rcirc-server-buffer
729 (or rcirc-nick rcirc-default-nick))))
731 (defvar rcirc-max-message-length 420
732 "Messages longer than this value will be split.")
734 (defun rcirc-send-message (process target message &optional noticep silent)
735 "Send TARGET associated with PROCESS a privmsg with text MESSAGE.
736 If NOTICEP is non-nil, send a notice instead of privmsg.
737 If SILENT is non-nil, do not print the message in any irc buffer."
738 ;; max message length is 512 including CRLF
739 (let* ((response (if noticep "NOTICE" "PRIVMSG"))
740 (oversize (> (length message) rcirc-max-message-length))
741 (text (if oversize
742 (substring message 0 rcirc-max-message-length)
743 message))
744 (text (if (string= text "")
746 text))
747 (more (if oversize
748 (substring message rcirc-max-message-length))))
749 (rcirc-get-buffer-create process target)
750 (rcirc-send-string process (concat response " " target " :" text))
751 (unless silent
752 (rcirc-print process (rcirc-nick process) response target text))
753 (when more (rcirc-send-message process target more noticep))))
755 (defvar rcirc-input-ring nil)
756 (defvar rcirc-input-ring-index 0)
757 (defun rcirc-prev-input-string (arg)
758 (ring-ref rcirc-input-ring (+ rcirc-input-ring-index arg)))
760 (defun rcirc-insert-prev-input (arg)
761 (interactive "p")
762 (when (<= rcirc-prompt-end-marker (point))
763 (delete-region rcirc-prompt-end-marker (point-max))
764 (insert (rcirc-prev-input-string 0))
765 (setq rcirc-input-ring-index (1+ rcirc-input-ring-index))))
767 (defun rcirc-insert-next-input (arg)
768 (interactive "p")
769 (when (<= rcirc-prompt-end-marker (point))
770 (delete-region rcirc-prompt-end-marker (point-max))
771 (setq rcirc-input-ring-index (1- rcirc-input-ring-index))
772 (insert (rcirc-prev-input-string -1))))
774 (defvar rcirc-nick-completions nil)
775 (defvar rcirc-nick-completion-start-offset nil)
777 (defun rcirc-complete-nick ()
778 "Cycle through nick completions from list of nicks in channel."
779 (interactive)
780 (if (eq last-command this-command)
781 (setq rcirc-nick-completions
782 (append (cdr rcirc-nick-completions)
783 (list (car rcirc-nick-completions))))
784 (setq rcirc-nick-completion-start-offset
785 (- (save-excursion
786 (if (re-search-backward " " rcirc-prompt-end-marker t)
787 (1+ (point))
788 rcirc-prompt-end-marker))
789 rcirc-prompt-end-marker))
790 (setq rcirc-nick-completions
791 (let ((completion-ignore-case t))
792 (all-completions
793 (buffer-substring
794 (+ rcirc-prompt-end-marker
795 rcirc-nick-completion-start-offset)
796 (point))
797 (mapcar (lambda (x) (cons x nil))
798 (rcirc-channel-nicks (rcirc-buffer-process)
799 rcirc-target))))))
800 (let ((completion (car rcirc-nick-completions)))
801 (when completion
802 (delete-region (+ rcirc-prompt-end-marker
803 rcirc-nick-completion-start-offset)
804 (point))
805 (insert (concat completion
806 (if (= (+ rcirc-prompt-end-marker
807 rcirc-nick-completion-start-offset)
808 rcirc-prompt-end-marker)
809 ": "))))))
811 (defun set-rcirc-decode-coding-system (coding-system)
812 "Set the decode coding system used in this channel."
813 (interactive "zCoding system for incoming messages: ")
814 (setq rcirc-decode-coding-system coding-system))
816 (defun set-rcirc-encode-coding-system (coding-system)
817 "Set the encode coding system used in this channel."
818 (interactive "zCoding system for outgoing messages: ")
819 (setq rcirc-encode-coding-system coding-system))
821 (defvar rcirc-mode-map (make-sparse-keymap)
822 "Keymap for rcirc mode.")
824 (define-key rcirc-mode-map (kbd "RET") 'rcirc-send-input)
825 (define-key rcirc-mode-map (kbd "M-p") 'rcirc-insert-prev-input)
826 (define-key rcirc-mode-map (kbd "M-n") 'rcirc-insert-next-input)
827 (define-key rcirc-mode-map (kbd "TAB") 'rcirc-complete-nick)
828 (define-key rcirc-mode-map (kbd "C-c C-b") 'rcirc-browse-url)
829 (define-key rcirc-mode-map (kbd "C-c C-c") 'rcirc-edit-multiline)
830 (define-key rcirc-mode-map (kbd "C-c C-j") 'rcirc-cmd-join)
831 (define-key rcirc-mode-map (kbd "C-c C-k") 'rcirc-cmd-kick)
832 (define-key rcirc-mode-map (kbd "C-c C-l") 'rcirc-toggle-low-priority)
833 (define-key rcirc-mode-map (kbd "C-c C-d") 'rcirc-cmd-mode)
834 (define-key rcirc-mode-map (kbd "C-c C-m") 'rcirc-cmd-msg)
835 (define-key rcirc-mode-map (kbd "C-c C-r") 'rcirc-cmd-nick) ; rename
836 (define-key rcirc-mode-map (kbd "C-c C-o") 'rcirc-omit-mode)
837 (define-key rcirc-mode-map (kbd "M-o") 'rcirc-omit-mode)
838 (define-key rcirc-mode-map (kbd "C-c C-p") 'rcirc-cmd-part)
839 (define-key rcirc-mode-map (kbd "C-c C-q") 'rcirc-cmd-query)
840 (define-key rcirc-mode-map (kbd "C-c C-t") 'rcirc-cmd-topic)
841 (define-key rcirc-mode-map (kbd "C-c C-n") 'rcirc-cmd-names)
842 (define-key rcirc-mode-map (kbd "C-c C-w") 'rcirc-cmd-whois)
843 (define-key rcirc-mode-map (kbd "C-c C-x") 'rcirc-cmd-quit)
844 (define-key rcirc-mode-map (kbd "C-c TAB") ; C-i
845 'rcirc-toggle-ignore-buffer-activity)
846 (define-key rcirc-mode-map (kbd "C-c C-s") 'rcirc-switch-to-server-buffer)
847 (define-key rcirc-mode-map (kbd "C-c C-a") 'rcirc-jump-to-first-unread-line)
849 (defvar rcirc-browse-url-map (make-sparse-keymap)
850 "Keymap used for browsing URLs in `rcirc-mode'.")
852 (define-key rcirc-browse-url-map (kbd "RET") 'rcirc-browse-url-at-point)
853 (define-key rcirc-browse-url-map (kbd "<mouse-2>") 'rcirc-browse-url-at-mouse)
854 (define-key rcirc-browse-url-map [follow-link] 'mouse-face)
856 (defvar rcirc-short-buffer-name nil
857 "Generated abbreviation to use to indicate buffer activity.")
859 (defvar rcirc-mode-hook nil
860 "Hook run when setting up rcirc buffer.")
862 (defvar rcirc-last-post-time nil)
864 (defvar rcirc-log-alist nil
865 "Alist of lines to log to disk when `rcirc-log-flag' is non-nil.
866 Each element looks like (FILENAME . TEXT).")
868 (defvar rcirc-current-line 0
869 "The current number of responses printed in this channel.
870 This number is independent of the number of lines in the buffer.")
872 (defun rcirc-mode (process target)
873 "Major mode for IRC channel buffers.
875 \\{rcirc-mode-map}"
876 (kill-all-local-variables)
877 (use-local-map rcirc-mode-map)
878 (setq mode-name "rcirc")
879 (setq major-mode 'rcirc-mode)
880 (setq mode-line-process nil)
882 (make-local-variable 'rcirc-input-ring)
883 (setq rcirc-input-ring (make-ring rcirc-input-ring-size))
884 (make-local-variable 'rcirc-server-buffer)
885 (setq rcirc-server-buffer (process-buffer process))
886 (make-local-variable 'rcirc-target)
887 (setq rcirc-target target)
888 (make-local-variable 'rcirc-topic)
889 (setq rcirc-topic nil)
890 (make-local-variable 'rcirc-last-post-time)
891 (setq rcirc-last-post-time (current-time))
892 (make-local-variable 'fill-paragraph-function)
893 (setq fill-paragraph-function 'rcirc-fill-paragraph)
894 (make-local-variable 'rcirc-recent-quit-alist)
895 (setq rcirc-recent-quit-alist nil)
896 (make-local-variable 'rcirc-current-line)
897 (setq rcirc-current-line 0)
899 (make-local-variable 'rcirc-short-buffer-name)
900 (setq rcirc-short-buffer-name nil)
901 (make-local-variable 'rcirc-urls)
902 (setq use-hard-newlines t)
904 ;; setup for omitting responses
905 (setq buffer-invisibility-spec '())
906 (setq buffer-display-table (make-display-table))
907 (set-display-table-slot buffer-display-table 4
908 (let ((glyph (make-glyph-code
909 ?. 'font-lock-keyword-face)))
910 (make-vector 3 glyph)))
912 (make-local-variable 'rcirc-decode-coding-system)
913 (make-local-variable 'rcirc-encode-coding-system)
914 (dolist (i rcirc-coding-system-alist)
915 (let ((chan (if (consp (car i)) (caar i) (car i)))
916 (serv (if (consp (car i)) (cdar i) "")))
917 (when (and (string-match chan (or target ""))
918 (string-match serv (rcirc-server-name process)))
919 (setq rcirc-decode-coding-system (if (consp (cdr i)) (cadr i) (cdr i))
920 rcirc-encode-coding-system (if (consp (cdr i)) (cddr i) (cdr i))))))
922 ;; setup the prompt and markers
923 (make-local-variable 'rcirc-prompt-start-marker)
924 (setq rcirc-prompt-start-marker (make-marker))
925 (set-marker rcirc-prompt-start-marker (point-max))
926 (make-local-variable 'rcirc-prompt-end-marker)
927 (setq rcirc-prompt-end-marker (make-marker))
928 (set-marker rcirc-prompt-end-marker (point-max))
929 (rcirc-update-prompt)
930 (goto-char rcirc-prompt-end-marker)
931 (make-local-variable 'overlay-arrow-position)
932 (setq overlay-arrow-position (make-marker))
933 (set-marker overlay-arrow-position nil)
935 ;; if the user changes the major mode or kills the buffer, there is
936 ;; cleanup work to do
937 (add-hook 'change-major-mode-hook 'rcirc-change-major-mode-hook nil t)
938 (add-hook 'kill-buffer-hook 'rcirc-kill-buffer-hook nil t)
940 ;; add to buffer list, and update buffer abbrevs
941 (when target ; skip server buffer
942 (let ((buffer (current-buffer)))
943 (with-rcirc-process-buffer process
944 (setq rcirc-buffer-alist (cons (cons target buffer)
945 rcirc-buffer-alist))))
946 (rcirc-update-short-buffer-names))
948 (run-hooks 'rcirc-mode-hook))
950 (defun rcirc-update-prompt (&optional all)
951 "Reset the prompt string in the current buffer.
953 If ALL is non-nil, update prompts in all IRC buffers."
954 (if all
955 (mapc (lambda (process)
956 (mapc (lambda (buffer)
957 (with-current-buffer buffer
958 (rcirc-update-prompt)))
959 (with-rcirc-process-buffer process
960 (mapcar 'cdr rcirc-buffer-alist))))
961 (rcirc-process-list))
962 (let ((inhibit-read-only t)
963 (prompt (or rcirc-prompt "")))
964 (mapc (lambda (rep)
965 (setq prompt
966 (replace-regexp-in-string (car rep) (cdr rep) prompt)))
967 (list (cons "%n" (rcirc-buffer-nick))
968 (cons "%s" (with-rcirc-server-buffer rcirc-server-name))
969 (cons "%t" (or rcirc-target ""))))
970 (save-excursion
971 (delete-region rcirc-prompt-start-marker rcirc-prompt-end-marker)
972 (goto-char rcirc-prompt-start-marker)
973 (let ((start (point)))
974 (insert-before-markers prompt)
975 (set-marker rcirc-prompt-start-marker start)
976 (when (not (zerop (- rcirc-prompt-end-marker
977 rcirc-prompt-start-marker)))
978 (add-text-properties rcirc-prompt-start-marker
979 rcirc-prompt-end-marker
980 (list 'face 'rcirc-prompt
981 'read-only t 'field t
982 'front-sticky t 'rear-nonsticky t))))))))
984 (defun rcirc-set-changed (option value)
985 "Set OPTION to VALUE and do updates after a customization change."
986 (set-default option value)
987 (cond ((eq option 'rcirc-prompt)
988 (rcirc-update-prompt 'all))
990 (error "Bad option %s" option))))
992 (defun rcirc-channel-p (target)
993 "Return t if TARGET is a channel name."
994 (and target
995 (not (zerop (length target)))
996 (or (eq (aref target 0) ?#)
997 (eq (aref target 0) ?&))))
999 (defun rcirc-kill-buffer-hook ()
1000 "Part the channel when killing an rcirc buffer."
1001 (when (eq major-mode 'rcirc-mode)
1002 (rcirc-clean-up-buffer "Killed buffer")))
1004 (defun rcirc-change-major-mode-hook ()
1005 "Part the channel when changing the major-mode."
1006 (rcirc-clean-up-buffer "Changed major mode"))
1008 (defun rcirc-clean-up-buffer (reason)
1009 (let ((buffer (current-buffer)))
1010 (rcirc-clear-activity buffer)
1011 (when (and (rcirc-buffer-process)
1012 (eq (process-status (rcirc-buffer-process)) 'open))
1013 (with-rcirc-server-buffer
1014 (setq rcirc-buffer-alist
1015 (rassq-delete-all buffer rcirc-buffer-alist)))
1016 (rcirc-update-short-buffer-names)
1017 (if (rcirc-channel-p rcirc-target)
1018 (rcirc-send-string (rcirc-buffer-process)
1019 (concat "PART " rcirc-target " :" reason))
1020 (when rcirc-target
1021 (rcirc-remove-nick-channel (rcirc-buffer-process)
1022 (rcirc-buffer-nick)
1023 rcirc-target))))
1024 (setq rcirc-target nil)))
1026 (defun rcirc-generate-new-buffer-name (process target)
1027 "Return a buffer name based on PROCESS and TARGET.
1028 This is used for the initial name given to IRC buffers."
1029 (substring-no-properties
1030 (if target
1031 (concat target "@" (process-name process))
1032 (concat "*" (process-name process) "*"))))
1034 (defun rcirc-get-buffer (process target &optional server)
1035 "Return the buffer associated with the PROCESS and TARGET.
1037 If optional argument SERVER is non-nil, return the server buffer
1038 if there is no existing buffer for TARGET, otherwise return nil."
1039 (with-rcirc-process-buffer process
1040 (if (null target)
1041 (current-buffer)
1042 (let ((buffer (cdr (assoc-string target rcirc-buffer-alist t))))
1043 (or buffer (when server (current-buffer)))))))
1045 (defun rcirc-get-buffer-create (process target)
1046 "Return the buffer associated with the PROCESS and TARGET.
1047 Create the buffer if it doesn't exist."
1048 (let ((buffer (rcirc-get-buffer process target)))
1049 (if (and buffer (buffer-live-p buffer))
1050 (with-current-buffer buffer
1051 (when (not rcirc-target)
1052 (setq rcirc-target target))
1053 buffer)
1054 ;; create the buffer
1055 (with-rcirc-process-buffer process
1056 (let ((new-buffer (get-buffer-create
1057 (rcirc-generate-new-buffer-name process target))))
1058 (with-current-buffer new-buffer
1059 (rcirc-mode process target)
1060 (rcirc-put-nick-channel process (rcirc-nick process) target
1061 rcirc-current-line))
1062 new-buffer)))))
1064 (defun rcirc-send-input ()
1065 "Send input to target associated with the current buffer."
1066 (interactive)
1067 (if (< (point) rcirc-prompt-end-marker)
1068 ;; copy the line down to the input area
1069 (progn
1070 (forward-line 0)
1071 (let ((start (if (eq (point) (point-min))
1072 (point)
1073 (if (get-text-property (1- (point)) 'hard)
1074 (point)
1075 (previous-single-property-change (point) 'hard))))
1076 (end (next-single-property-change (1+ (point)) 'hard)))
1077 (goto-char (point-max))
1078 (insert (replace-regexp-in-string
1079 "\n\\s-+" " "
1080 (buffer-substring-no-properties start end)))))
1081 ;; process input
1082 (goto-char (point-max))
1083 (when (not (equal 0 (- (point) rcirc-prompt-end-marker)))
1084 ;; delete a trailing newline
1085 (when (eq (point) (point-at-bol))
1086 (delete-backward-char 1))
1087 (let ((input (buffer-substring-no-properties
1088 rcirc-prompt-end-marker (point))))
1089 (dolist (line (split-string input "\n"))
1090 (rcirc-process-input-line line))
1091 ;; add to input-ring
1092 (save-excursion
1093 (ring-insert rcirc-input-ring input)
1094 (setq rcirc-input-ring-index 0))))))
1096 (defun rcirc-fill-paragraph (&optional arg)
1097 (interactive "p")
1098 (when (> (point) rcirc-prompt-end-marker)
1099 (save-restriction
1100 (narrow-to-region rcirc-prompt-end-marker (point-max))
1101 (let ((fill-column rcirc-max-message-length))
1102 (fill-region (point-min) (point-max))))))
1104 (defun rcirc-process-input-line (line)
1105 (if (string-match "^/\\([^ ]+\\) ?\\(.*\\)$" line)
1106 (rcirc-process-command (match-string 1 line)
1107 (match-string 2 line)
1108 line)
1109 (rcirc-process-message line)))
1111 (defun rcirc-process-message (line)
1112 (if (not rcirc-target)
1113 (message "Not joined (no target)")
1114 (delete-region rcirc-prompt-end-marker (point))
1115 (rcirc-send-message (rcirc-buffer-process) rcirc-target line)
1116 (setq rcirc-last-post-time (current-time))))
1118 (defun rcirc-process-command (command args line)
1119 (if (eq (aref command 0) ?/)
1120 ;; "//text" will send "/text" as a message
1121 (rcirc-process-message (substring line 1))
1122 (let ((fun (intern-soft (concat "rcirc-cmd-" command)))
1123 (process (rcirc-buffer-process)))
1124 (newline)
1125 (with-current-buffer (current-buffer)
1126 (delete-region rcirc-prompt-end-marker (point))
1127 (if (string= command "me")
1128 (rcirc-print process (rcirc-buffer-nick)
1129 "ACTION" rcirc-target args)
1130 (rcirc-print process (rcirc-buffer-nick)
1131 "COMMAND" rcirc-target line))
1132 (set-marker rcirc-prompt-end-marker (point))
1133 (if (fboundp fun)
1134 (funcall fun args process rcirc-target)
1135 (rcirc-send-string process
1136 (concat command " :" args)))))))
1138 (defvar rcirc-parent-buffer nil)
1139 (defvar rcirc-window-configuration nil)
1140 (defun rcirc-edit-multiline ()
1141 "Move current edit to a dedicated buffer."
1142 (interactive)
1143 (let ((pos (1+ (- (point) rcirc-prompt-end-marker))))
1144 (goto-char (point-max))
1145 (let ((text (buffer-substring-no-properties rcirc-prompt-end-marker
1146 (point)))
1147 (parent (buffer-name)))
1148 (delete-region rcirc-prompt-end-marker (point))
1149 (setq rcirc-window-configuration (current-window-configuration))
1150 (pop-to-buffer (concat "*multiline " parent "*"))
1151 (funcall rcirc-multiline-major-mode)
1152 (rcirc-multiline-minor-mode 1)
1153 (setq rcirc-parent-buffer parent)
1154 (insert text)
1155 (and (> pos 0) (goto-char pos))
1156 (message "Type C-c C-c to return text to %s, or C-c C-k to cancel" parent))))
1158 (defvar rcirc-multiline-minor-mode-map (make-sparse-keymap)
1159 "Keymap for multiline mode in rcirc.")
1160 (define-key rcirc-multiline-minor-mode-map
1161 (kbd "C-c C-c") 'rcirc-multiline-minor-submit)
1162 (define-key rcirc-multiline-minor-mode-map
1163 (kbd "C-x C-s") 'rcirc-multiline-minor-submit)
1164 (define-key rcirc-multiline-minor-mode-map
1165 (kbd "C-c C-k") 'rcirc-multiline-minor-cancel)
1166 (define-key rcirc-multiline-minor-mode-map
1167 (kbd "ESC ESC ESC") 'rcirc-multiline-minor-cancel)
1169 (define-minor-mode rcirc-multiline-minor-mode
1170 "Minor mode for editing multiple lines in rcirc."
1171 :init-value nil
1172 :lighter " rcirc-mline"
1173 :keymap rcirc-multiline-minor-mode-map
1174 :global nil
1175 :group 'rcirc
1176 (make-local-variable 'rcirc-parent-buffer)
1177 (put 'rcirc-parent-buffer 'permanent-local t)
1178 (setq fill-column rcirc-max-message-length))
1180 (defun rcirc-multiline-minor-submit ()
1181 "Send the text in buffer back to parent buffer."
1182 (interactive)
1183 (untabify (point-min) (point-max))
1184 (let ((text (buffer-substring (point-min) (point-max)))
1185 (buffer (current-buffer))
1186 (pos (point)))
1187 (set-buffer rcirc-parent-buffer)
1188 (goto-char (point-max))
1189 (insert text)
1190 (kill-buffer buffer)
1191 (set-window-configuration rcirc-window-configuration)
1192 (goto-char (+ rcirc-prompt-end-marker (1- pos)))))
1194 (defun rcirc-multiline-minor-cancel ()
1195 "Cancel the multiline edit."
1196 (interactive)
1197 (kill-buffer (current-buffer))
1198 (set-window-configuration rcirc-window-configuration))
1200 (defun rcirc-any-buffer (process)
1201 "Return a buffer for PROCESS, either the one selected or the process buffer."
1202 (if rcirc-always-use-server-buffer-flag
1203 (process-buffer process)
1204 (let ((buffer (window-buffer (selected-window))))
1205 (if (and buffer
1206 (with-current-buffer buffer
1207 (and (eq major-mode 'rcirc-mode)
1208 (eq (rcirc-buffer-process) process))))
1209 buffer
1210 (process-buffer process)))))
1212 (defcustom rcirc-response-formats
1213 '(("PRIVMSG" . "<%N> %m")
1214 ("NOTICE" . "-%N- %m")
1215 ("ACTION" . "[%N %m]")
1216 ("COMMAND" . "%m")
1217 ("ERROR" . "%fw!!! %m")
1218 (t . "%fp*** %fs%n %r %m"))
1219 "An alist of formats used for printing responses.
1220 The format is looked up using the response-type as a key;
1221 if no match is found, the default entry (with a key of `t') is used.
1223 The entry's value part should be a string, which is inserted with
1224 the of the following escape sequences replaced by the described values:
1226 %m The message text
1227 %n The sender's nick
1228 %N The sender's nick (with face `rcirc-my-nick' or `rcirc-other-nick')
1229 %r The response-type
1230 %t The target
1231 %fw Following text uses the face `font-lock-warning-face'
1232 %fp Following text uses the face `rcirc-server-prefix'
1233 %fs Following text uses the face `rcirc-server'
1234 %f[FACE] Following text uses the face FACE
1235 %f- Following text uses the default face
1236 %% A literal `%' character"
1237 :type '(alist :key-type (choice (string :tag "Type")
1238 (const :tag "Default" t))
1239 :value-type string)
1240 :group 'rcirc)
1242 (defcustom rcirc-omit-responses
1243 '("JOIN" "PART" "QUIT" "NICK")
1244 "Responses which will be hidden when `rcirc-omit-mode' is enabled."
1245 :type '(repeat string)
1246 :group 'rcirc)
1248 (defun rcirc-format-response-string (process sender response target text)
1249 "Return a nicely-formatted response string, incorporating TEXT
1250 \(and perhaps other arguments). The specific formatting used
1251 is found by looking up RESPONSE in `rcirc-response-formats'."
1252 (with-temp-buffer
1253 (insert (or (cdr (assoc response rcirc-response-formats))
1254 (cdr (assq t rcirc-response-formats))))
1255 (goto-char (point-min))
1256 (let ((start (point-min))
1257 (sender (if (or (not sender)
1258 (string= (rcirc-server-name process) sender))
1260 sender))
1261 face)
1262 (while (re-search-forward "%\\(\\(f\\(.\\)\\)\\|\\(.\\)\\)" nil t)
1263 (rcirc-add-face start (match-beginning 0) face)
1264 (setq start (match-beginning 0))
1265 (replace-match
1266 (case (aref (match-string 1) 0)
1267 (?f (setq face
1268 (case (string-to-char (match-string 3))
1269 (?w 'font-lock-warning-face)
1270 (?p 'rcirc-server-prefix)
1271 (?s 'rcirc-server)
1272 (t nil)))
1274 (?n sender)
1275 (?N (let ((my-nick (rcirc-nick process)))
1276 (save-match-data
1277 (with-syntax-table rcirc-nick-syntax-table
1278 (rcirc-facify sender
1279 (cond ((string= sender my-nick)
1280 'rcirc-my-nick)
1281 ((and rcirc-bright-nicks
1282 (string-match
1283 (regexp-opt rcirc-bright-nicks
1284 'words)
1285 sender))
1286 'rcirc-bright-nick)
1287 ((and rcirc-dim-nicks
1288 (string-match
1289 (regexp-opt rcirc-dim-nicks
1290 'words)
1291 sender))
1292 'rcirc-dim-nick)
1294 'rcirc-other-nick)))))))
1295 (?m (propertize text 'rcirc-text text))
1296 (?r response)
1297 (?t (or target ""))
1298 (t (concat "UNKNOWN CODE:" (match-string 0))))
1299 t t nil 0)
1300 (rcirc-add-face (match-beginning 0) (match-end 0) face))
1301 (rcirc-add-face start (match-beginning 0) face))
1302 (buffer-substring (point-min) (point-max))))
1304 (defun rcirc-target-buffer (process sender response target text)
1305 "Return a buffer to print the server response."
1306 (assert (not (bufferp target)))
1307 (with-rcirc-process-buffer process
1308 (cond ((not target)
1309 (rcirc-any-buffer process))
1310 ((not (rcirc-channel-p target))
1311 ;; message from another user
1312 (if (or (string= response "PRIVMSG")
1313 (string= response "ACTION"))
1314 (rcirc-get-buffer-create process (if (string= sender rcirc-nick)
1315 target
1316 sender))
1317 (rcirc-get-buffer process target t)))
1318 ((or (rcirc-get-buffer process target)
1319 (rcirc-any-buffer process))))))
1321 (defvar rcirc-activity-types nil)
1322 (make-variable-buffer-local 'rcirc-activity-types)
1323 (defvar rcirc-last-sender nil)
1324 (make-variable-buffer-local 'rcirc-last-sender)
1326 (defcustom rcirc-log-directory "~/.emacs.d/rcirc-log"
1327 "Directory to keep IRC logfiles."
1328 :type 'directory
1329 :group 'rcirc)
1331 (defcustom rcirc-log-flag nil
1332 "Non-nil means log IRC activity to disk.
1333 Logfiles are kept in `rcirc-log-directory'."
1334 :type 'boolean
1335 :group 'rcirc)
1337 (defcustom rcirc-omit-threshold 100
1338 "Number of lines since last activity from a nick before `rcirc-omit-responses' are omitted."
1339 :type 'integer
1340 :group 'rcirc)
1342 (defun rcirc-last-quit-line (process nick target)
1343 "Return the line number where NICK left TARGET.
1344 Returns nil if the information is not recorded."
1345 (let ((chanbuf (rcirc-get-buffer process target)))
1346 (when chanbuf
1347 (cdr (assoc-string nick (with-current-buffer chanbuf
1348 rcirc-recent-quit-alist))))))
1350 (defun rcirc-last-line (process nick target)
1351 "Return the line from the last activity from NICK in TARGET."
1352 (let* ((chanbuf (rcirc-get-buffer process target))
1353 (line (or (cdr (assoc-string target
1354 (gethash nick (with-rcirc-server-buffer
1355 rcirc-nick-table)) t))
1356 (rcirc-last-quit-line process nick target))))
1357 (if line
1358 line
1359 ;;(message "line is nil for %s in %s" nick target)
1360 nil)))
1362 (defun rcirc-elapsed-lines (process nick target)
1363 "Return the number of lines since activity from NICK in TARGET."
1364 (let ((last-activity-line (rcirc-last-line process nick target)))
1365 (when (and last-activity-line
1366 (> last-activity-line 0))
1367 (- rcirc-current-line last-activity-line))))
1369 (defvar rcirc-markup-text-functions
1370 '(rcirc-markup-attributes
1371 rcirc-markup-my-nick
1372 rcirc-markup-urls
1373 rcirc-markup-keywords
1374 rcirc-markup-bright-nicks)
1376 "List of functions used to manipulate text before it is printed.
1378 Each function takes two arguments, SENDER, and RESPONSE. The
1379 buffer is narrowed with the text to be printed and the point is
1380 at the beginning of the `rcirc-text' propertized text.")
1382 (defun rcirc-print (process sender response target text &optional activity)
1383 "Print TEXT in the buffer associated with TARGET.
1384 Format based on SENDER and RESPONSE. If ACTIVITY is non-nil,
1385 record activity."
1386 (or text (setq text ""))
1387 (unless (and (or (member sender rcirc-ignore-list)
1388 (member (with-syntax-table rcirc-nick-syntax-table
1389 (when (string-match "^\\([^/]\\w*\\)[:,]" text)
1390 (match-string 1 text)))
1391 rcirc-ignore-list))
1392 ;; do not ignore if we sent the message
1393 (not (string= sender (rcirc-nick process))))
1394 (let* ((buffer (rcirc-target-buffer process sender response target text))
1395 (inhibit-read-only t))
1396 (with-current-buffer buffer
1397 (let ((moving (= (point) rcirc-prompt-end-marker))
1398 (old-point (point-marker))
1399 (fill-start (marker-position rcirc-prompt-start-marker)))
1401 (unless (string= sender (rcirc-nick process))
1402 ;; only decode text from other senders, not ours
1403 (setq text (decode-coding-string text rcirc-decode-coding-system))
1404 ;; mark the line with overlay arrow
1405 (unless (or (marker-position overlay-arrow-position)
1406 (get-buffer-window (current-buffer))
1407 (member response rcirc-omit-responses))
1408 (set-marker overlay-arrow-position
1409 (marker-position rcirc-prompt-start-marker))))
1411 ;; temporarily set the marker insertion-type because
1412 ;; insert-before-markers results in hidden text in new buffers
1413 (goto-char rcirc-prompt-start-marker)
1414 (set-marker-insertion-type rcirc-prompt-start-marker t)
1415 (set-marker-insertion-type rcirc-prompt-end-marker t)
1417 (let ((start (point)))
1418 (insert (rcirc-format-response-string process sender response nil
1419 text)
1420 (propertize "\n" 'hard t))
1422 ;; squeeze spaces out of text before rcirc-text
1423 (fill-region fill-start
1424 (1- (or (next-single-property-change fill-start
1425 'rcirc-text)
1426 rcirc-prompt-end-marker)))
1428 ;; run markup functions
1429 (save-excursion
1430 (save-restriction
1431 (narrow-to-region start rcirc-prompt-start-marker)
1432 (goto-char (or (next-single-property-change start 'rcirc-text)
1433 (point)))
1434 (when (rcirc-buffer-process)
1435 (save-excursion (rcirc-markup-timestamp sender response))
1436 (dolist (fn rcirc-markup-text-functions)
1437 (save-excursion (funcall fn sender response)))
1438 (when rcirc-fill-flag
1439 (save-excursion (rcirc-markup-fill sender response))))
1441 (when rcirc-read-only-flag
1442 (add-text-properties (point-min) (point-max)
1443 '(read-only t front-sticky t))))
1444 ;; make text omittable
1445 (let ((last-activity-lines (rcirc-elapsed-lines process sender target)))
1446 (if (and (not (string= (rcirc-nick process) sender))
1447 (member response rcirc-omit-responses)
1448 (or (not last-activity-lines)
1449 (< rcirc-omit-threshold last-activity-lines)))
1450 (put-text-property (1- start) (1- rcirc-prompt-start-marker)
1451 'invisible 'rcirc-omit)
1452 ;; otherwise increment the line count
1453 (setq rcirc-current-line (1+ rcirc-current-line))))))
1455 (set-marker-insertion-type rcirc-prompt-start-marker nil)
1456 (set-marker-insertion-type rcirc-prompt-end-marker nil)
1458 ;; truncate buffer if it is very long
1459 (save-excursion
1460 (when (and rcirc-buffer-maximum-lines
1461 (> rcirc-buffer-maximum-lines 0)
1462 (= (forward-line (- rcirc-buffer-maximum-lines)) 0))
1463 (delete-region (point-min) (point))))
1465 ;; set the window point for buffers show in windows
1466 (walk-windows (lambda (w)
1467 (when (and (not (eq (selected-window) w))
1468 (eq (current-buffer)
1469 (window-buffer w))
1470 (>= (window-point w)
1471 rcirc-prompt-end-marker))
1472 (set-window-point w (point-max))))
1473 nil t)
1475 ;; restore the point
1476 (goto-char (if moving rcirc-prompt-end-marker old-point))
1478 ;; keep window on bottom line if it was already there
1479 (when rcirc-scroll-show-maximum-output
1480 (walk-windows (lambda (w)
1481 (when (eq (window-buffer w) (current-buffer))
1482 (with-current-buffer (window-buffer w)
1483 (when (eq major-mode 'rcirc-mode)
1484 (with-selected-window w
1485 (when (<= (- (window-height)
1486 (count-screen-lines (window-point)
1487 (window-start))
1490 (recenter -1)))))))
1491 nil t))
1493 ;; flush undo (can we do something smarter here?)
1494 (buffer-disable-undo)
1495 (buffer-enable-undo))
1497 ;; record modeline activity
1498 (when (and activity
1499 (not rcirc-ignore-buffer-activity-flag)
1500 (not (and rcirc-dim-nicks sender
1501 (string-match (regexp-opt rcirc-dim-nicks) sender)
1502 (rcirc-channel-p target))))
1503 (rcirc-record-activity (current-buffer)
1504 (when (not (rcirc-channel-p rcirc-target))
1505 'nick)))
1507 (when rcirc-log-flag
1508 (rcirc-log process sender response target text))
1510 (sit-for 0) ; displayed text before hook
1511 (run-hook-with-args 'rcirc-print-hooks
1512 process sender response target text)))))
1514 (defcustom rcirc-log-filename-function 'rcirc-generate-new-buffer-name
1515 "A function to generate the filename used by rcirc's logging facility.
1517 It is called with two arguments, PROCESS and TARGET (see
1518 `rcirc-generate-new-buffer-name' for their meaning), and should
1519 return the filename, or nil if no logging is desired for this
1520 session.
1522 If the returned filename is absolute (`file-name-absolute-p'
1523 returns true), then it is used as-is, otherwise the resulting
1524 file is put into `rcirc-log-directory'."
1525 :group 'rcirc
1526 :type 'function)
1528 (defun rcirc-log (process sender response target text)
1529 "Record line in `rcirc-log', to be later written to disk."
1530 (let ((filename (funcall rcirc-log-filename-function process target)))
1531 (unless (null filename)
1532 (let ((cell (assoc-string filename rcirc-log-alist))
1533 (line (concat (format-time-string rcirc-time-format)
1534 (substring-no-properties
1535 (rcirc-format-response-string process sender
1536 response target text))
1537 "\n")))
1538 (if cell
1539 (setcdr cell (concat (cdr cell) line))
1540 (setq rcirc-log-alist
1541 (cons (cons filename line) rcirc-log-alist)))))))
1543 (defun rcirc-log-write ()
1544 "Flush `rcirc-log-alist' data to disk.
1546 Log data is written to `rcirc-log-directory', except for
1547 log-files with absolute names (see `rcirc-log-filename-function')."
1548 (dolist (cell rcirc-log-alist)
1549 (let ((filename (expand-file-name (car cell) rcirc-log-directory))
1550 (coding-system-for-write 'utf-8))
1551 (make-directory (file-name-directory filename) t)
1552 (with-temp-buffer
1553 (insert (cdr cell))
1554 (write-region (point-min) (point-max) filename t 'quiet))))
1555 (setq rcirc-log-alist nil))
1557 (defun rcirc-view-log-file ()
1558 "View logfile corresponding to the current buffer."
1559 (interactive)
1560 (find-file-other-window
1561 (expand-file-name (funcall rcirc-log-filename-function
1562 (rcirc-buffer-process) rcirc-target)
1563 rcirc-log-directory)))
1565 (defun rcirc-join-channels (process channels)
1566 "Join CHANNELS."
1567 (save-window-excursion
1568 (dolist (channel channels)
1569 (with-rcirc-process-buffer process
1570 (rcirc-cmd-join channel process)))))
1572 ;;; nick management
1573 (defvar rcirc-nick-prefix-chars "~&@%+")
1574 (defun rcirc-user-nick (user)
1575 "Return the nick from USER. Remove any non-nick junk."
1576 (save-match-data
1577 (if (string-match (concat "^[" rcirc-nick-prefix-chars
1578 "]?\\([^! ]+\\)!?") (or user ""))
1579 (match-string 1 user)
1580 user)))
1582 (defun rcirc-nick-channels (process nick)
1583 "Return list of channels for NICK."
1584 (with-rcirc-process-buffer process
1585 (mapcar (lambda (x) (car x))
1586 (gethash nick rcirc-nick-table))))
1588 (defun rcirc-put-nick-channel (process nick channel &optional line)
1589 "Add CHANNEL to list associated with NICK.
1590 Update the associated linestamp if LINE is non-nil.
1592 If the record doesn't exist, and LINE is nil, set the linestamp
1593 to zero."
1594 (let ((nick (rcirc-user-nick nick)))
1595 (with-rcirc-process-buffer process
1596 (let* ((chans (gethash nick rcirc-nick-table))
1597 (record (assoc-string channel chans t)))
1598 (if record
1599 (when line (setcdr record line))
1600 (puthash nick (cons (cons channel (or line 0))
1601 chans)
1602 rcirc-nick-table))))))
1604 (defun rcirc-nick-remove (process nick)
1605 "Remove NICK from table."
1606 (with-rcirc-process-buffer process
1607 (remhash nick rcirc-nick-table)))
1609 (defun rcirc-remove-nick-channel (process nick channel)
1610 "Remove the CHANNEL from list associated with NICK."
1611 (with-rcirc-process-buffer process
1612 (let* ((chans (gethash nick rcirc-nick-table))
1613 (newchans
1614 ;; instead of assoc-string-delete-all:
1615 (let ((record (assoc-string channel chans t)))
1616 (when record
1617 (setcar record 'delete)
1618 (assq-delete-all 'delete chans)))))
1619 (if newchans
1620 (puthash nick newchans rcirc-nick-table)
1621 (remhash nick rcirc-nick-table)))))
1623 (defun rcirc-channel-nicks (process target)
1624 "Return the list of nicks associated with TARGET sorted by last activity."
1625 (when target
1626 (if (rcirc-channel-p target)
1627 (with-rcirc-process-buffer process
1628 (let (nicks)
1629 (maphash
1630 (lambda (k v)
1631 (let ((record (assoc-string target v t)))
1632 (if record
1633 (setq nicks (cons (cons k (cdr record)) nicks)))))
1634 rcirc-nick-table)
1635 (mapcar (lambda (x) (car x))
1636 (sort nicks (lambda (x y)
1637 (let ((lx (or (cdr x) 0))
1638 (ly (or (cdr y) 0)))
1639 (< ly lx)))))))
1640 (list target))))
1642 (defun rcirc-ignore-update-automatic (nick)
1643 "Remove NICK from `rcirc-ignore-list'
1644 if NICK is also on `rcirc-ignore-list-automatic'."
1645 (when (member nick rcirc-ignore-list-automatic)
1646 (setq rcirc-ignore-list-automatic
1647 (delete nick rcirc-ignore-list-automatic)
1648 rcirc-ignore-list
1649 (delete nick rcirc-ignore-list))))
1651 ;;; activity tracking
1652 (defvar rcirc-track-minor-mode-map (make-sparse-keymap)
1653 "Keymap for rcirc track minor mode.")
1655 (define-key rcirc-track-minor-mode-map (kbd "C-c C-@") 'rcirc-next-active-buffer)
1656 (define-key rcirc-track-minor-mode-map (kbd "C-c C-SPC") 'rcirc-next-active-buffer)
1658 ;;;###autoload
1659 (define-minor-mode rcirc-track-minor-mode
1660 "Global minor mode for tracking activity in rcirc buffers."
1661 :init-value nil
1662 :lighter ""
1663 :keymap rcirc-track-minor-mode-map
1664 :global t
1665 :group 'rcirc
1666 (or global-mode-string (setq global-mode-string '("")))
1667 ;; toggle the mode-line channel indicator
1668 (if rcirc-track-minor-mode
1669 (progn
1670 (and (not (memq 'rcirc-activity-string global-mode-string))
1671 (setq global-mode-string
1672 (append global-mode-string '(rcirc-activity-string))))
1673 (add-hook 'window-configuration-change-hook
1674 'rcirc-window-configuration-change))
1675 (setq global-mode-string
1676 (delete 'rcirc-activity-string global-mode-string))
1677 (remove-hook 'window-configuration-change-hook
1678 'rcirc-window-configuration-change)))
1680 (or (assq 'rcirc-ignore-buffer-activity-flag minor-mode-alist)
1681 (setq minor-mode-alist
1682 (cons '(rcirc-ignore-buffer-activity-flag " Ignore") minor-mode-alist)))
1683 (or (assq 'rcirc-low-priority-flag minor-mode-alist)
1684 (setq minor-mode-alist
1685 (cons '(rcirc-low-priority-flag " LowPri") minor-mode-alist)))
1686 (or (assq 'rcirc-omit-mode minor-mode-alist)
1687 (setq minor-mode-alist
1688 (cons '(rcirc-omit-mode " Omit") minor-mode-alist)))
1690 (defun rcirc-toggle-ignore-buffer-activity ()
1691 "Toggle the value of `rcirc-ignore-buffer-activity-flag'."
1692 (interactive)
1693 (setq rcirc-ignore-buffer-activity-flag
1694 (not rcirc-ignore-buffer-activity-flag))
1695 (message (if rcirc-ignore-buffer-activity-flag
1696 "Ignore activity in this buffer"
1697 "Notice activity in this buffer"))
1698 (force-mode-line-update))
1700 (defun rcirc-toggle-low-priority ()
1701 "Toggle the value of `rcirc-low-priority-flag'."
1702 (interactive)
1703 (setq rcirc-low-priority-flag
1704 (not rcirc-low-priority-flag))
1705 (message (if rcirc-low-priority-flag
1706 "Activity in this buffer is low priority"
1707 "Activity in this buffer is normal priority"))
1708 (force-mode-line-update))
1710 (defun rcirc-omit-mode ()
1711 "Toggle the Rcirc-Omit mode.
1712 If enabled, \"uninteresting\" lines are not shown.
1713 Uninteresting lines are those whose responses are listed in
1714 `rcirc-omit-responses'."
1715 (interactive)
1716 (setq rcirc-omit-mode (not rcirc-omit-mode))
1717 (if rcirc-omit-mode
1718 (progn
1719 (add-to-invisibility-spec '(rcirc-omit . nil))
1720 (message "Rcirc-Omit mode enabled"))
1721 (remove-from-invisibility-spec '(rcirc-omit . nil))
1722 (message "Rcirc-Omit mode disabled"))
1723 (recenter (when (> (point) rcirc-prompt-start-marker) -1)))
1725 (defun rcirc-switch-to-server-buffer ()
1726 "Switch to the server buffer associated with current channel buffer."
1727 (interactive)
1728 (switch-to-buffer rcirc-server-buffer))
1730 (defun rcirc-jump-to-first-unread-line ()
1731 "Move the point to the first unread line in this buffer."
1732 (interactive)
1733 (if (marker-position overlay-arrow-position)
1734 (goto-char overlay-arrow-position)
1735 (message "No unread messages")))
1737 (defun rcirc-non-irc-buffer ()
1738 (let ((buflist (buffer-list))
1739 buffer)
1740 (while (and buflist (not buffer))
1741 (with-current-buffer (car buflist)
1742 (unless (or (eq major-mode 'rcirc-mode)
1743 (= ?\s (aref (buffer-name) 0)) ; internal buffers
1744 (get-buffer-window (current-buffer)))
1745 (setq buffer (current-buffer))))
1746 (setq buflist (cdr buflist)))
1747 buffer))
1749 (defun rcirc-next-active-buffer (arg)
1750 "Switch to the next rcirc buffer with activity.
1751 With prefix ARG, go to the next low priority buffer with activity."
1752 (interactive "P")
1753 (let* ((pair (rcirc-split-activity rcirc-activity))
1754 (lopri (car pair))
1755 (hipri (cdr pair)))
1756 (if (or (and (not arg) hipri)
1757 (and arg lopri))
1758 (progn
1759 (switch-to-buffer (car (if arg lopri hipri)))
1760 (when (> (point) rcirc-prompt-start-marker)
1761 (recenter -1)))
1762 (if (eq major-mode 'rcirc-mode)
1763 (switch-to-buffer (rcirc-non-irc-buffer))
1764 (message "%s" (concat
1765 "No IRC activity."
1766 (when lopri
1767 (concat
1768 " Type C-u "
1769 (key-description (this-command-keys))
1770 " for low priority activity."))))))))
1772 (defvar rcirc-activity-hooks nil
1773 "Hook to be run when there is channel activity.
1775 Functions are called with a single argument, the buffer with the
1776 activity. Only run if the buffer is not visible and
1777 `rcirc-ignore-buffer-activity-flag' is non-nil.")
1779 (defun rcirc-record-activity (buffer &optional type)
1780 "Record BUFFER activity with TYPE."
1781 (with-current-buffer buffer
1782 (let ((old-activity rcirc-activity)
1783 (old-types rcirc-activity-types))
1784 (when (not (get-buffer-window (current-buffer) t))
1785 (setq rcirc-activity
1786 (sort (add-to-list 'rcirc-activity (current-buffer))
1787 (lambda (b1 b2)
1788 (let ((t1 (with-current-buffer b1 rcirc-last-post-time))
1789 (t2 (with-current-buffer b2 rcirc-last-post-time)))
1790 (time-less-p t2 t1)))))
1791 (pushnew type rcirc-activity-types)
1792 (unless (and (equal rcirc-activity old-activity)
1793 (member type old-types))
1794 (rcirc-update-activity-string)))))
1795 (run-hook-with-args 'rcirc-activity-hooks buffer))
1797 (defun rcirc-clear-activity (buffer)
1798 "Clear the BUFFER activity."
1799 (setq rcirc-activity (remove buffer rcirc-activity))
1800 (with-current-buffer buffer
1801 (setq rcirc-activity-types nil)))
1803 (defun rcirc-clear-unread (buffer)
1804 "Erase the last read message arrow from BUFFER."
1805 (when (buffer-live-p buffer)
1806 (with-current-buffer buffer
1807 (set-marker overlay-arrow-position nil))))
1809 (defun rcirc-split-activity (activity)
1810 "Return a cons cell with ACTIVITY split into (lopri . hipri)."
1811 (let (lopri hipri)
1812 (dolist (buf rcirc-activity)
1813 (with-current-buffer buf
1814 (if (and rcirc-low-priority-flag
1815 (not (member 'nick rcirc-activity-types)))
1816 (add-to-list 'lopri buf t)
1817 (add-to-list 'hipri buf t))))
1818 (cons lopri hipri)))
1820 (defvar rcirc-update-activity-string-hook nil
1821 "Hook run whenever the activity string is updated.")
1823 ;; TODO: add mouse properties
1824 (defun rcirc-update-activity-string ()
1825 "Update mode-line string."
1826 (let* ((pair (rcirc-split-activity rcirc-activity))
1827 (lopri (car pair))
1828 (hipri (cdr pair)))
1829 (setq rcirc-activity-string
1830 (cond ((or hipri lopri)
1831 (concat (and hipri "[")
1832 (rcirc-activity-string hipri)
1833 (and hipri lopri ",")
1834 (and lopri
1835 (concat "("
1836 (rcirc-activity-string lopri)
1837 ")"))
1838 (and hipri "]")))
1839 ((not (null (rcirc-process-list)))
1840 "[]")
1841 (t "[]")))
1842 (run-hooks 'rcirc-update-activity-string-hook)))
1844 (defun rcirc-activity-string (buffers)
1845 (mapconcat (lambda (b)
1846 (let ((s (substring-no-properties (rcirc-short-buffer-name b))))
1847 (with-current-buffer b
1848 (dolist (type rcirc-activity-types)
1849 (rcirc-add-face 0 (length s)
1850 (case type
1851 (nick 'rcirc-track-nick)
1852 (keyword 'rcirc-track-keyword))
1853 s)))
1855 buffers ","))
1857 (defun rcirc-short-buffer-name (buffer)
1858 "Return a short name for BUFFER to use in the modeline indicator."
1859 (with-current-buffer buffer
1860 (or rcirc-short-buffer-name (buffer-name))))
1862 (defun rcirc-visible-buffers ()
1863 "Return a list of the visible buffers that are in rcirc-mode."
1864 (let (acc)
1865 (walk-windows (lambda (w)
1866 (with-current-buffer (window-buffer w)
1867 (when (eq major-mode 'rcirc-mode)
1868 (push (current-buffer) acc)))))
1869 acc))
1871 (defvar rcirc-visible-buffers nil)
1872 (defun rcirc-window-configuration-change ()
1873 (unless (minibuffer-window-active-p (minibuffer-window))
1874 ;; delay this until command has finished to make sure window is
1875 ;; actually visible before clearing activity
1876 (add-hook 'post-command-hook 'rcirc-window-configuration-change-1)))
1878 (defun rcirc-window-configuration-change-1 ()
1879 ;; clear activity and overlay arrows
1880 (let* ((old-activity rcirc-activity)
1881 (hidden-buffers rcirc-visible-buffers))
1883 (setq rcirc-visible-buffers (rcirc-visible-buffers))
1885 (dolist (vbuf rcirc-visible-buffers)
1886 (setq hidden-buffers (delq vbuf hidden-buffers))
1887 ;; clear activity for all visible buffers
1888 (rcirc-clear-activity vbuf))
1890 ;; clear unread arrow from recently hidden buffers
1891 (dolist (hbuf hidden-buffers)
1892 (rcirc-clear-unread hbuf))
1894 ;; remove any killed buffers from list
1895 (setq rcirc-activity
1896 (delq nil (mapcar (lambda (buf) (when (buffer-live-p buf) buf))
1897 rcirc-activity)))
1898 ;; update the mode-line string
1899 (unless (equal old-activity rcirc-activity)
1900 (rcirc-update-activity-string)))
1902 (remove-hook 'post-command-hook 'rcirc-window-configuration-change-1))
1905 ;;; buffer name abbreviation
1906 (defun rcirc-update-short-buffer-names ()
1907 (let ((bufalist
1908 (apply 'append (mapcar (lambda (process)
1909 (with-rcirc-process-buffer process
1910 rcirc-buffer-alist))
1911 (rcirc-process-list)))))
1912 (dolist (i (rcirc-abbreviate bufalist))
1913 (when (buffer-live-p (cdr i))
1914 (with-current-buffer (cdr i)
1915 (setq rcirc-short-buffer-name (car i)))))))
1917 (defun rcirc-abbreviate (pairs)
1918 (apply 'append (mapcar 'rcirc-rebuild-tree (rcirc-make-trees pairs))))
1920 (defun rcirc-rebuild-tree (tree &optional acc)
1921 (let ((ch (char-to-string (car tree))))
1922 (dolist (x (cdr tree))
1923 (if (listp x)
1924 (setq acc (append acc
1925 (mapcar (lambda (y)
1926 (cons (concat ch (car y))
1927 (cdr y)))
1928 (rcirc-rebuild-tree x))))
1929 (setq acc (cons (cons ch x) acc))))
1930 acc))
1932 (defun rcirc-make-trees (pairs)
1933 (let (alist)
1934 (mapc (lambda (pair)
1935 (if (consp pair)
1936 (let* ((str (car pair))
1937 (data (cdr pair))
1938 (char (unless (zerop (length str))
1939 (aref str 0)))
1940 (rest (unless (zerop (length str))
1941 (substring str 1)))
1942 (part (if char (assq char alist))))
1943 (if part
1944 ;; existing partition
1945 (setcdr part (cons (cons rest data) (cdr part)))
1946 ;; new partition
1947 (setq alist (cons (if char
1948 (list char (cons rest data))
1949 data)
1950 alist))))
1951 (setq alist (cons pair alist))))
1952 pairs)
1953 ;; recurse into cdrs of alist
1954 (mapc (lambda (x)
1955 (when (and (listp x) (listp (cadr x)))
1956 (setcdr x (if (> (length (cdr x)) 1)
1957 (rcirc-make-trees (cdr x))
1958 (setcdr x (list (cdadr x)))))))
1959 alist)))
1961 ;;; /commands these are called with 3 args: PROCESS, TARGET, which is
1962 ;; the current buffer/channel/user, and ARGS, which is a string
1963 ;; containing the text following the /cmd.
1965 (defmacro defun-rcirc-command (command argument docstring interactive-form
1966 &rest body)
1967 "Define a command."
1968 `(defun ,(intern (concat "rcirc-cmd-" (symbol-name command)))
1969 (,@argument &optional process target)
1970 ,(concat docstring "\n\nNote: If PROCESS or TARGET are nil, the values given"
1971 "\nby `rcirc-buffer-process' and `rcirc-target' will be used.")
1972 ,interactive-form
1973 (let ((process (or process (rcirc-buffer-process)))
1974 (target (or target rcirc-target)))
1975 ,@body)))
1977 (defun-rcirc-command msg (message)
1978 "Send private MESSAGE to TARGET."
1979 (interactive "i")
1980 (if (null message)
1981 (progn
1982 (setq target (completing-read "Message nick: "
1983 (with-rcirc-server-buffer
1984 rcirc-nick-table)))
1985 (when (> (length target) 0)
1986 (setq message (read-string (format "Message %s: " target)))
1987 (when (> (length message) 0)
1988 (rcirc-send-message process target message))))
1989 (if (not (string-match "\\([^ ]+\\) \\(.+\\)" message))
1990 (message "Not enough args, or something.")
1991 (setq target (match-string 1 message)
1992 message (match-string 2 message))
1993 (rcirc-send-message process target message))))
1995 (defun-rcirc-command query (nick)
1996 "Open a private chat buffer to NICK."
1997 (interactive (list (completing-read "Query nick: "
1998 (with-rcirc-server-buffer rcirc-nick-table))))
1999 (let ((existing-buffer (rcirc-get-buffer process nick)))
2000 (switch-to-buffer (or existing-buffer
2001 (rcirc-get-buffer-create process nick)))
2002 (when (not existing-buffer)
2003 (rcirc-cmd-whois nick))))
2005 (defun-rcirc-command join (channel)
2006 "Join CHANNEL."
2007 (interactive "sJoin channel: ")
2008 (let ((buffer (rcirc-get-buffer-create process
2009 (car (split-string channel)))))
2010 (rcirc-send-string process (concat "JOIN " channel))
2011 (when (not (eq (selected-window) (minibuffer-window)))
2012 (switch-to-buffer buffer))))
2014 ;; TODO: /part #channel reason, or consider removing #channel altogether
2015 (defun-rcirc-command part (channel)
2016 "Part CHANNEL."
2017 (interactive "sPart channel: ")
2018 (let ((channel (if (> (length channel) 0) channel target)))
2019 (rcirc-send-string process (concat "PART " channel " :" rcirc-id-string))))
2021 (defun-rcirc-command quit (reason)
2022 "Send a quit message to server with REASON."
2023 (interactive "sQuit reason: ")
2024 (rcirc-send-string process (concat "QUIT :"
2025 (if (not (zerop (length reason)))
2026 reason
2027 rcirc-id-string))))
2029 (defun-rcirc-command nick (nick)
2030 "Change nick to NICK."
2031 (interactive "i")
2032 (when (null nick)
2033 (setq nick (read-string "New nick: " (rcirc-nick process))))
2034 (rcirc-send-string process (concat "NICK " nick)))
2036 (defun-rcirc-command names (channel)
2037 "Display list of names in CHANNEL or in current channel if CHANNEL is nil.
2038 If called interactively, prompt for a channel when prefix arg is supplied."
2039 (interactive "P")
2040 (if (called-interactively-p 'interactive)
2041 (if channel
2042 (setq channel (read-string "List names in channel: " target))))
2043 (let ((channel (if (> (length channel) 0)
2044 channel
2045 target)))
2046 (rcirc-send-string process (concat "NAMES " channel))))
2048 (defun-rcirc-command topic (topic)
2049 "List TOPIC for the TARGET channel.
2050 With a prefix arg, prompt for new topic."
2051 (interactive "P")
2052 (if (and (called-interactively-p 'interactive) topic)
2053 (setq topic (read-string "New Topic: " rcirc-topic)))
2054 (rcirc-send-string process (concat "TOPIC " target
2055 (when (> (length topic) 0)
2056 (concat " :" topic)))))
2058 (defun-rcirc-command whois (nick)
2059 "Request information from server about NICK."
2060 (interactive (list
2061 (completing-read "Whois: "
2062 (with-rcirc-server-buffer rcirc-nick-table))))
2063 (rcirc-send-string process (concat "WHOIS " nick)))
2065 (defun-rcirc-command mode (args)
2066 "Set mode with ARGS."
2067 (interactive (list (concat (read-string "Mode nick or channel: ")
2068 " " (read-string "Mode: "))))
2069 (rcirc-send-string process (concat "MODE " args)))
2071 (defun-rcirc-command list (channels)
2072 "Request information on CHANNELS from server."
2073 (interactive "sList Channels: ")
2074 (rcirc-send-string process (concat "LIST " channels)))
2076 (defun-rcirc-command oper (args)
2077 "Send operator command to server."
2078 (interactive "sOper args: ")
2079 (rcirc-send-string process (concat "OPER " args)))
2081 (defun-rcirc-command quote (message)
2082 "Send MESSAGE literally to server."
2083 (interactive "sServer message: ")
2084 (rcirc-send-string process message))
2086 (defun-rcirc-command kick (arg)
2087 "Kick NICK from current channel."
2088 (interactive (list
2089 (concat (completing-read "Kick nick: "
2090 (rcirc-channel-nicks
2091 (rcirc-buffer-process)
2092 rcirc-target))
2093 (read-from-minibuffer "Kick reason: "))))
2094 (let* ((arglist (split-string arg))
2095 (argstring (concat (car arglist) " :"
2096 (mapconcat 'identity (cdr arglist) " "))))
2097 (rcirc-send-string process (concat "KICK " target " " argstring))))
2099 (defun rcirc-cmd-ctcp (args &optional process target)
2100 (if (string-match "^\\([^ ]+\\)\\s-+\\(.+\\)$" args)
2101 (let ((target (match-string 1 args))
2102 (request (match-string 2 args)))
2103 (rcirc-send-string process
2104 (format "PRIVMSG %s \C-a%s\C-a"
2105 target (upcase request))))
2106 (rcirc-print process (rcirc-nick process) "ERROR" nil
2107 "usage: /ctcp NICK REQUEST")))
2109 (defun rcirc-cmd-me (args &optional process target)
2110 (rcirc-send-string process (format "PRIVMSG %s :\C-aACTION %s\C-a"
2111 target args)))
2113 (defun rcirc-add-or-remove (set &optional elt)
2114 (if (and elt (not (string= "" elt)))
2115 (if (member-ignore-case elt set)
2116 (delete elt set)
2117 (cons elt set))
2118 set))
2120 (defun-rcirc-command ignore (nick)
2121 "Manage the ignore list.
2122 Ignore NICK, unignore NICK if already ignored, or list ignored
2123 nicks when no NICK is given. When listing ignored nicks, the
2124 ones added to the list automatically are marked with an asterisk."
2125 (interactive "sToggle ignoring of nick: ")
2126 (setq rcirc-ignore-list (rcirc-add-or-remove rcirc-ignore-list nick))
2127 (rcirc-print process nil "IGNORE" target
2128 (mapconcat
2129 (lambda (nick)
2130 (concat nick
2131 (if (member nick rcirc-ignore-list-automatic)
2132 "*" "")))
2133 rcirc-ignore-list " ")))
2135 (defun-rcirc-command bright (nick)
2136 "Manage the bright nick list."
2137 (interactive "sToggle emphasis of nick: ")
2138 (setq rcirc-bright-nicks (rcirc-add-or-remove rcirc-bright-nicks nick))
2139 (rcirc-print process nil "BRIGHT" target
2140 (mapconcat 'identity rcirc-bright-nicks " ")))
2142 (defun-rcirc-command dim (nick)
2143 "Manage the dim nick list."
2144 (interactive "sToggle deemphasis of nick: ")
2145 (setq rcirc-dim-nicks (rcirc-add-or-remove rcirc-dim-nicks nick))
2146 (rcirc-print process nil "DIM" target
2147 (mapconcat 'identity rcirc-dim-nicks " ")))
2149 (defun-rcirc-command keyword (keyword)
2150 "Manage the keyword list.
2151 Mark KEYWORD, unmark KEYWORD if already marked, or list marked
2152 keywords when no KEYWORD is given."
2153 (interactive "sToggle highlighting of keyword: ")
2154 (setq rcirc-keywords (rcirc-add-or-remove rcirc-keywords keyword))
2155 (rcirc-print process nil "KEYWORD" target
2156 (mapconcat 'identity rcirc-keywords " ")))
2159 (defun rcirc-add-face (start end name &optional object)
2160 "Add face NAME to the face text property of the text from START to END."
2161 (when name
2162 (let ((pos start)
2163 next prop)
2164 (while (< pos end)
2165 (setq prop (get-text-property pos 'face object)
2166 next (next-single-property-change pos 'face object end))
2167 (unless (member name (get-text-property pos 'face object))
2168 (add-text-properties pos next (list 'face (cons name prop)) object))
2169 (setq pos next)))))
2171 (defun rcirc-facify (string face)
2172 "Return a copy of STRING with FACE property added."
2173 (let ((string (or string "")))
2174 (rcirc-add-face 0 (length string) face string)
2175 string))
2177 (defvar rcirc-url-regexp
2178 (concat
2179 "\\b\\(\\(www\\.\\|\\(s?https?\\|ftp\\|file\\|gopher\\|"
2180 "nntp\\|news\\|telnet\\|wais\\|mailto\\|info\\):\\)"
2181 "\\(//[-a-z0-9_.]+:[0-9]*\\)?"
2182 (if (string-match "[[:digit:]]" "1") ;; Support POSIX?
2183 (let ((chars "-a-z0-9_=#$@~%&*+\\/[:word:]")
2184 (punct "!?:;.,"))
2185 (concat
2186 "\\(?:"
2187 ;; Match paired parentheses, e.g. in Wikipedia URLs:
2188 "[" chars punct "]+" "(" "[" chars punct "]+" "[" chars "]*)" "[" chars "]"
2189 "\\|"
2190 "[" chars punct "]+" "[" chars "]"
2191 "\\)"))
2192 (concat ;; XEmacs 21.4 doesn't support POSIX.
2193 "\\([-a-z0-9_=!?#$@~%&*+\\/:;.,]\\|\\w\\)+"
2194 "\\([-a-z0-9_=#$@~%&*+\\/]\\|\\w\\)"))
2195 "\\)")
2196 "Regexp matching URLs. Set to nil to disable URL features in rcirc.")
2198 (defun rcirc-browse-url (&optional arg)
2199 "Prompt for URL to browse based on URLs in buffer."
2200 (interactive "P")
2201 (let ((completions (mapcar (lambda (x) (cons x nil)) rcirc-urls))
2202 (initial-input (car rcirc-urls))
2203 (history (cdr rcirc-urls)))
2204 (browse-url (completing-read "rcirc browse-url: "
2205 completions nil nil initial-input 'history)
2206 arg)))
2208 (defun rcirc-browse-url-at-point (point)
2209 "Send URL at point to `browse-url'."
2210 (interactive "d")
2211 (let ((beg (previous-single-property-change (1+ point) 'mouse-face))
2212 (end (next-single-property-change point 'mouse-face)))
2213 (browse-url (buffer-substring-no-properties beg end))))
2215 (defun rcirc-browse-url-at-mouse (event)
2216 "Send URL at mouse click to `browse-url'."
2217 (interactive "e")
2218 (let ((position (event-end event)))
2219 (with-current-buffer (window-buffer (posn-window position))
2220 (rcirc-browse-url-at-point (posn-point position)))))
2223 (defun rcirc-markup-timestamp (sender response)
2224 (goto-char (point-min))
2225 (insert (rcirc-facify (format-time-string rcirc-time-format)
2226 'rcirc-timestamp)))
2228 (defun rcirc-markup-attributes (sender response)
2229 (while (re-search-forward "\\([\C-b\C-_\C-v]\\).*?\\(\\1\\|\C-o\\)" nil t)
2230 (rcirc-add-face (match-beginning 0) (match-end 0)
2231 (case (char-after (match-beginning 1))
2232 (?\C-b 'bold)
2233 (?\C-v 'italic)
2234 (?\C-_ 'underline)))
2235 ;; keep the ^O since it could terminate other attributes
2236 (when (not (eq ?\C-o (char-before (match-end 2))))
2237 (delete-region (match-beginning 2) (match-end 2)))
2238 (delete-region (match-beginning 1) (match-end 1))
2239 (goto-char (match-beginning 1)))
2240 ;; remove the ^O characters now
2241 (while (re-search-forward "\C-o+" nil t)
2242 (delete-region (match-beginning 0) (match-end 0))))
2244 (defun rcirc-markup-my-nick (sender response)
2245 (with-syntax-table rcirc-nick-syntax-table
2246 (while (re-search-forward (concat "\\b"
2247 (regexp-quote (rcirc-nick
2248 (rcirc-buffer-process)))
2249 "\\b")
2250 nil t)
2251 (rcirc-add-face (match-beginning 0) (match-end 0)
2252 'rcirc-nick-in-message)
2253 (when (string= response "PRIVMSG")
2254 (rcirc-add-face (point-min) (point-max)
2255 'rcirc-nick-in-message-full-line)
2256 (rcirc-record-activity (current-buffer) 'nick)))))
2258 (defun rcirc-markup-urls (sender response)
2259 (while (re-search-forward rcirc-url-regexp nil t)
2260 (let ((start (match-beginning 0))
2261 (end (match-end 0)))
2262 (rcirc-add-face start end 'rcirc-url)
2263 (add-text-properties start end (list 'mouse-face 'highlight
2264 'keymap rcirc-browse-url-map))
2265 ;; record the url
2266 (push (buffer-substring-no-properties start end) rcirc-urls))))
2268 (defun rcirc-markup-keywords (sender response)
2269 (when (and (string= response "PRIVMSG")
2270 (not (string= sender (rcirc-nick (rcirc-buffer-process)))))
2271 (let* ((target (or rcirc-target ""))
2272 (keywords (delq nil (mapcar (lambda (keyword)
2273 (when (not (string-match keyword
2274 target))
2275 keyword))
2276 rcirc-keywords))))
2277 (when keywords
2278 (while (re-search-forward (regexp-opt keywords 'words) nil t)
2279 (rcirc-add-face (match-beginning 0) (match-end 0) 'rcirc-keyword)
2280 (rcirc-record-activity (current-buffer) 'keyword))))))
2282 (defun rcirc-markup-bright-nicks (sender response)
2283 (when (and rcirc-bright-nicks
2284 (string= response "NAMES"))
2285 (with-syntax-table rcirc-nick-syntax-table
2286 (while (re-search-forward (regexp-opt rcirc-bright-nicks 'words) nil t)
2287 (rcirc-add-face (match-beginning 0) (match-end 0)
2288 'rcirc-bright-nick)))))
2290 (defun rcirc-markup-fill (sender response)
2291 (when (not (string= response "372")) ; /motd
2292 (let ((fill-prefix
2293 (or rcirc-fill-prefix
2294 (make-string (- (point) (line-beginning-position)) ?\s)))
2295 (fill-column (- (cond ((eq rcirc-fill-column 'frame-width)
2296 (1- (frame-width)))
2297 (rcirc-fill-column
2298 rcirc-fill-column)
2299 (t fill-column))
2300 ;; make sure ... doesn't cause line wrapping
2301 3)))
2302 (fill-region (point) (point-max) nil t))))
2304 ;;; handlers
2305 ;; these are called with the server PROCESS, the SENDER, which is a
2306 ;; server or a user, depending on the command, the ARGS, which is a
2307 ;; list of strings, and the TEXT, which is the original server text,
2308 ;; verbatim
2309 (defun rcirc-handler-001 (process sender args text)
2310 (rcirc-handler-generic process "001" sender args text)
2311 (with-rcirc-process-buffer process
2312 (setq rcirc-connecting nil)
2313 (rcirc-reschedule-timeout process)
2314 (setq rcirc-server-name sender)
2315 (setq rcirc-nick (car args))
2316 (rcirc-update-prompt)
2317 (when rcirc-auto-authenticate-flag (rcirc-authenticate))
2318 (rcirc-join-channels process rcirc-startup-channels)))
2320 (defun rcirc-handler-PRIVMSG (process sender args text)
2321 (let ((target (if (rcirc-channel-p (car args))
2322 (car args)
2323 sender))
2324 (message (or (cadr args) "")))
2325 (if (string-match "^\C-a\\(.*\\)\C-a$" message)
2326 (rcirc-handler-CTCP process target sender (match-string 1 message))
2327 (rcirc-print process sender "PRIVMSG" target message t))
2328 ;; update nick linestamp
2329 (with-current-buffer (rcirc-get-buffer process target t)
2330 (rcirc-put-nick-channel process sender target rcirc-current-line))))
2332 (defun rcirc-handler-NOTICE (process sender args text)
2333 (let ((target (car args))
2334 (message (cadr args)))
2335 (if (string-match "^\C-a\\(.*\\)\C-a$" message)
2336 (rcirc-handler-CTCP-response process target sender
2337 (match-string 1 message))
2338 (rcirc-print process sender "NOTICE"
2339 (cond ((rcirc-channel-p target)
2340 target)
2341 ;;; -ChanServ- [#gnu] Welcome...
2342 ((string-match "\\[\\(#[^\] ]+\\)\\]" message)
2343 (match-string 1 message))
2344 (sender
2345 (if (string= sender (rcirc-server-name process))
2346 nil ; server notice
2347 sender)))
2348 message t))))
2350 (defun rcirc-handler-WALLOPS (process sender args text)
2351 (rcirc-print process sender "WALLOPS" sender (car args) t))
2353 (defun rcirc-handler-JOIN (process sender args text)
2354 (let ((channel (car args)))
2355 (with-current-buffer (rcirc-get-buffer-create process channel)
2356 ;; when recently rejoining, restore the linestamp
2357 (rcirc-put-nick-channel process sender channel
2358 (let ((last-activity-lines
2359 (rcirc-elapsed-lines process sender channel)))
2360 (when (and last-activity-lines
2361 (< last-activity-lines rcirc-omit-threshold))
2362 (rcirc-last-line process sender channel)))))
2364 (rcirc-print process sender "JOIN" channel "")
2366 ;; print in private chat buffer if it exists
2367 (when (rcirc-get-buffer (rcirc-buffer-process) sender)
2368 (rcirc-print process sender "JOIN" sender channel))))
2370 ;; PART and KICK are handled the same way
2371 (defun rcirc-handler-PART-or-KICK (process response channel sender nick args)
2372 (rcirc-ignore-update-automatic nick)
2373 (if (not (string= nick (rcirc-nick process)))
2374 ;; this is someone else leaving
2375 (progn
2376 (rcirc-maybe-remember-nick-quit process nick channel)
2377 (rcirc-remove-nick-channel process nick channel))
2378 ;; this is us leaving
2379 (mapc (lambda (n)
2380 (rcirc-remove-nick-channel process n channel))
2381 (rcirc-channel-nicks process channel))
2383 ;; if the buffer is still around, make it inactive
2384 (let ((buffer (rcirc-get-buffer process channel)))
2385 (when buffer
2386 (rcirc-disconnect-buffer buffer)))))
2388 (defun rcirc-handler-PART (process sender args text)
2389 (let* ((channel (car args))
2390 (reason (cadr args))
2391 (message (concat channel " " reason)))
2392 (rcirc-print process sender "PART" channel message)
2393 ;; print in private chat buffer if it exists
2394 (when (rcirc-get-buffer (rcirc-buffer-process) sender)
2395 (rcirc-print process sender "PART" sender message))
2397 (rcirc-handler-PART-or-KICK process "PART" channel sender sender reason)))
2399 (defun rcirc-handler-KICK (process sender args text)
2400 (let* ((channel (car args))
2401 (nick (cadr args))
2402 (reason (caddr args))
2403 (message (concat nick " " channel " " reason)))
2404 (rcirc-print process sender "KICK" channel message t)
2405 ;; print in private chat buffer if it exists
2406 (when (rcirc-get-buffer (rcirc-buffer-process) nick)
2407 (rcirc-print process sender "KICK" nick message))
2409 (rcirc-handler-PART-or-KICK process "KICK" channel sender nick reason)))
2411 (defun rcirc-maybe-remember-nick-quit (process nick channel)
2412 "Remember NICK as leaving CHANNEL if they recently spoke."
2413 (let ((elapsed-lines (rcirc-elapsed-lines process nick channel)))
2414 (when (and elapsed-lines
2415 (< elapsed-lines rcirc-omit-threshold))
2416 (let ((buffer (rcirc-get-buffer process channel)))
2417 (when buffer
2418 (with-current-buffer buffer
2419 (let ((record (assoc-string nick rcirc-recent-quit-alist t))
2420 (line (rcirc-last-line process nick channel)))
2421 (if record
2422 (setcdr record line)
2423 (setq rcirc-recent-quit-alist
2424 (cons (cons nick line)
2425 rcirc-recent-quit-alist))))))))))
2427 (defun rcirc-handler-QUIT (process sender args text)
2428 (rcirc-ignore-update-automatic sender)
2429 (mapc (lambda (channel)
2430 ;; broadcast quit message each channel
2431 (rcirc-print process sender "QUIT" channel (apply 'concat args))
2432 ;; record nick in quit table if they recently spoke
2433 (rcirc-maybe-remember-nick-quit process sender channel))
2434 (rcirc-nick-channels process sender))
2435 (rcirc-nick-remove process sender))
2437 (defun rcirc-handler-NICK (process sender args text)
2438 (let* ((old-nick sender)
2439 (new-nick (car args))
2440 (channels (rcirc-nick-channels process old-nick)))
2441 ;; update list of ignored nicks
2442 (rcirc-ignore-update-automatic old-nick)
2443 (when (member old-nick rcirc-ignore-list)
2444 (add-to-list 'rcirc-ignore-list new-nick)
2445 (add-to-list 'rcirc-ignore-list-automatic new-nick))
2446 ;; print message to nick's channels
2447 (dolist (target channels)
2448 (rcirc-print process sender "NICK" target new-nick))
2449 ;; update private chat buffer, if it exists
2450 (let ((chat-buffer (rcirc-get-buffer process old-nick)))
2451 (when chat-buffer
2452 (with-current-buffer chat-buffer
2453 (rcirc-print process sender "NICK" old-nick new-nick)
2454 (setq rcirc-target new-nick)
2455 (rename-buffer (rcirc-generate-new-buffer-name process new-nick)))))
2456 ;; remove old nick and add new one
2457 (with-rcirc-process-buffer process
2458 (let ((v (gethash old-nick rcirc-nick-table)))
2459 (remhash old-nick rcirc-nick-table)
2460 (puthash new-nick v rcirc-nick-table))
2461 ;; if this is our nick...
2462 (when (string= old-nick rcirc-nick)
2463 (setq rcirc-nick new-nick)
2464 (rcirc-update-prompt t)
2465 ;; reauthenticate
2466 (when rcirc-auto-authenticate-flag (rcirc-authenticate))))))
2468 (defun rcirc-handler-PING (process sender args text)
2469 (rcirc-send-string process (concat "PONG :" (car args))))
2471 (defun rcirc-handler-PONG (process sender args text)
2472 ;; do nothing
2475 (defun rcirc-handler-TOPIC (process sender args text)
2476 (let ((topic (cadr args)))
2477 (rcirc-print process sender "TOPIC" (car args) topic)
2478 (with-current-buffer (rcirc-get-buffer process (car args))
2479 (setq rcirc-topic topic))))
2481 (defvar rcirc-nick-away-alist nil)
2482 (defun rcirc-handler-301 (process sender args text)
2483 "RPL_AWAY"
2484 (let* ((nick (cadr args))
2485 (rec (assoc-string nick rcirc-nick-away-alist))
2486 (away-message (caddr args)))
2487 (when (or (not rec)
2488 (not (string= (cdr rec) away-message)))
2489 ;; away message has changed
2490 (rcirc-handler-generic process "AWAY" nick (cdr args) text)
2491 (if rec
2492 (setcdr rec away-message)
2493 (setq rcirc-nick-away-alist (cons (cons nick away-message)
2494 rcirc-nick-away-alist))))))
2496 (defun rcirc-handler-332 (process sender args text)
2497 "RPL_TOPIC"
2498 (let ((buffer (or (rcirc-get-buffer process (cadr args))
2499 (rcirc-get-temp-buffer-create process (cadr args)))))
2500 (with-current-buffer buffer
2501 (setq rcirc-topic (caddr args)))))
2503 (defun rcirc-handler-333 (process sender args text)
2504 "Not in rfc1459.txt"
2505 (let ((buffer (or (rcirc-get-buffer process (cadr args))
2506 (rcirc-get-temp-buffer-create process (cadr args)))))
2507 (with-current-buffer buffer
2508 (let ((setter (caddr args))
2509 (time (current-time-string
2510 (seconds-to-time
2511 (string-to-number (cadddr args))))))
2512 (rcirc-print process sender "TOPIC" (cadr args)
2513 (format "%s (%s on %s)" rcirc-topic setter time))))))
2515 (defun rcirc-handler-477 (process sender args text)
2516 "ERR_NOCHANMODES"
2517 (rcirc-print process sender "477" (cadr args) (caddr args)))
2519 (defun rcirc-handler-MODE (process sender args text)
2520 (let ((target (car args))
2521 (msg (mapconcat 'identity (cdr args) " ")))
2522 (rcirc-print process sender "MODE"
2523 (if (string= target (rcirc-nick process))
2525 target)
2526 msg)
2528 ;; print in private chat buffers if they exist
2529 (mapc (lambda (nick)
2530 (when (rcirc-get-buffer process nick)
2531 (rcirc-print process sender "MODE" nick msg)))
2532 (cddr args))))
2534 (defun rcirc-get-temp-buffer-create (process channel)
2535 "Return a buffer based on PROCESS and CHANNEL."
2536 (let ((tmpnam (concat " " (downcase channel) "TMP" (process-name process))))
2537 (get-buffer-create tmpnam)))
2539 (defun rcirc-handler-353 (process sender args text)
2540 "RPL_NAMREPLY"
2541 (let ((channel (caddr args)))
2542 (mapc (lambda (nick)
2543 (rcirc-put-nick-channel process nick channel))
2544 (split-string (cadddr args) " " t))
2545 (with-current-buffer (rcirc-get-temp-buffer-create process channel)
2546 (goto-char (point-max))
2547 (insert (car (last args)) " "))))
2549 (defun rcirc-handler-366 (process sender args text)
2550 "RPL_ENDOFNAMES"
2551 (let* ((channel (cadr args))
2552 (buffer (rcirc-get-temp-buffer-create process channel)))
2553 (with-current-buffer buffer
2554 (rcirc-print process sender "NAMES" channel
2555 (buffer-substring (point-min) (point-max))))
2556 (kill-buffer buffer)))
2558 (defun rcirc-handler-433 (process sender args text)
2559 "ERR_NICKNAMEINUSE"
2560 (rcirc-handler-generic process "433" sender args text)
2561 (let* ((new-nick (concat (cadr args) "`")))
2562 (with-rcirc-process-buffer process
2563 (rcirc-cmd-nick new-nick nil process))))
2565 (defun rcirc-authenticate ()
2566 "Send authentication to process associated with current buffer.
2567 Passwords are stored in `rcirc-authinfo' (which see)."
2568 (interactive)
2569 (with-rcirc-server-buffer
2570 (dolist (i rcirc-authinfo)
2571 (let ((process (rcirc-buffer-process))
2572 (server (car i))
2573 (nick (caddr i))
2574 (method (cadr i))
2575 (args (cdddr i)))
2576 (when (and (string-match server rcirc-server)
2577 (string-match nick rcirc-nick))
2578 (cond ((equal method 'nickserv)
2579 (rcirc-send-string
2580 process
2581 (concat "PRIVMSG " (or (cadr args) "nickserv")
2582 " :identify " (car args))))
2583 ((equal method 'chanserv)
2584 (rcirc-send-string
2585 process
2586 (concat
2587 "PRIVMSG chanserv :identify "
2588 (car args) " " (cadr args))))
2589 ((equal method 'bitlbee)
2590 (rcirc-send-string
2591 process
2592 (concat "PRIVMSG &bitlbee :identify " (car args))))
2594 (message "No %S authentication method defined"
2595 method))))))))
2597 (defun rcirc-handler-INVITE (process sender args text)
2598 (rcirc-print process sender "INVITE" nil (mapconcat 'identity args " ") t))
2600 (defun rcirc-handler-ERROR (process sender args text)
2601 (rcirc-print process sender "ERROR" nil (mapconcat 'identity args " ")))
2603 (defun rcirc-handler-CTCP (process target sender text)
2604 (if (string-match "^\\([^ ]+\\) *\\(.*\\)$" text)
2605 (let* ((request (upcase (match-string 1 text)))
2606 (args (match-string 2 text))
2607 (handler (intern-soft (concat "rcirc-handler-ctcp-" request))))
2608 (if (not (fboundp handler))
2609 (rcirc-print process sender "ERROR" target
2610 (format "%s sent unsupported ctcp: %s" sender text)
2612 (funcall handler process target sender args)
2613 (unless (or (string= request "ACTION")
2614 (string= request "KEEPALIVE"))
2615 (rcirc-print process sender "CTCP" target
2616 (format "%s" text) t))))))
2618 (defun rcirc-handler-ctcp-VERSION (process target sender args)
2619 (rcirc-send-string process
2620 (concat "NOTICE " sender
2621 " :\C-aVERSION " rcirc-id-string
2622 "\C-a")))
2624 (defun rcirc-handler-ctcp-ACTION (process target sender args)
2625 (rcirc-print process sender "ACTION" target args t))
2627 (defun rcirc-handler-ctcp-TIME (process target sender args)
2628 (rcirc-send-string process
2629 (concat "NOTICE " sender
2630 " :\C-aTIME " (current-time-string) "\C-a")))
2632 (defun rcirc-handler-CTCP-response (process target sender message)
2633 (rcirc-print process sender "CTCP" nil message t))
2635 (defgroup rcirc-faces nil
2636 "Faces for rcirc."
2637 :group 'rcirc
2638 :group 'faces)
2640 (defface rcirc-my-nick ; font-lock-function-name-face
2641 '((((class color) (min-colors 88) (background light)) (:foreground "Blue1"))
2642 (((class color) (min-colors 88) (background dark)) (:foreground "LightSkyBlue"))
2643 (((class color) (min-colors 16) (background light)) (:foreground "Blue"))
2644 (((class color) (min-colors 16) (background dark)) (:foreground "LightSkyBlue"))
2645 (((class color) (min-colors 8)) (:foreground "blue" :weight bold))
2646 (t (:inverse-video t :weight bold)))
2647 "The face used to highlight my messages."
2648 :group 'rcirc-faces)
2650 (defface rcirc-other-nick ; font-lock-variable-name-face
2651 '((((class grayscale) (background light))
2652 (:foreground "Gray90" :weight bold :slant italic))
2653 (((class grayscale) (background dark))
2654 (:foreground "DimGray" :weight bold :slant italic))
2655 (((class color) (min-colors 88) (background light)) (:foreground "DarkGoldenrod"))
2656 (((class color) (min-colors 88) (background dark)) (:foreground "LightGoldenrod"))
2657 (((class color) (min-colors 16) (background light)) (:foreground "DarkGoldenrod"))
2658 (((class color) (min-colors 16) (background dark)) (:foreground "LightGoldenrod"))
2659 (((class color) (min-colors 8)) (:foreground "yellow" :weight light))
2660 (t (:weight bold :slant italic)))
2661 "The face used to highlight other messages."
2662 :group 'rcirc-faces)
2664 (defface rcirc-bright-nick
2665 '((((class grayscale) (background light))
2666 (:foreground "LightGray" :weight bold :underline t))
2667 (((class grayscale) (background dark))
2668 (:foreground "Gray50" :weight bold :underline t))
2669 (((class color) (min-colors 88) (background light)) (:foreground "CadetBlue"))
2670 (((class color) (min-colors 88) (background dark)) (:foreground "Aquamarine"))
2671 (((class color) (min-colors 16) (background light)) (:foreground "CadetBlue"))
2672 (((class color) (min-colors 16) (background dark)) (:foreground "Aquamarine"))
2673 (((class color) (min-colors 8)) (:foreground "magenta"))
2674 (t (:weight bold :underline t)))
2675 "Face used for nicks matched by `rcirc-bright-nicks'."
2676 :group 'rcirc-faces)
2678 (defface rcirc-dim-nick
2679 '((t :inherit default))
2680 "Face used for nicks in `rcirc-dim-nicks'."
2681 :group 'rcirc-faces)
2683 (defface rcirc-server ; font-lock-comment-face
2684 '((((class grayscale) (background light))
2685 (:foreground "DimGray" :weight bold :slant italic))
2686 (((class grayscale) (background dark))
2687 (:foreground "LightGray" :weight bold :slant italic))
2688 (((class color) (min-colors 88) (background light))
2689 (:foreground "Firebrick"))
2690 (((class color) (min-colors 88) (background dark))
2691 (:foreground "chocolate1"))
2692 (((class color) (min-colors 16) (background light))
2693 (:foreground "red"))
2694 (((class color) (min-colors 16) (background dark))
2695 (:foreground "red1"))
2696 (((class color) (min-colors 8) (background light))
2698 (((class color) (min-colors 8) (background dark))
2700 (t (:weight bold :slant italic)))
2701 "The face used to highlight server messages."
2702 :group 'rcirc-faces)
2704 (defface rcirc-server-prefix ; font-lock-comment-delimiter-face
2705 '((default :inherit rcirc-server)
2706 (((class grayscale)))
2707 (((class color) (min-colors 16)))
2708 (((class color) (min-colors 8) (background light))
2709 :foreground "red")
2710 (((class color) (min-colors 8) (background dark))
2711 :foreground "red1"))
2712 "The face used to highlight server prefixes."
2713 :group 'rcirc-faces)
2715 (defface rcirc-timestamp
2716 '((t (:inherit default)))
2717 "The face used to highlight timestamps."
2718 :group 'rcirc-faces)
2720 (defface rcirc-nick-in-message ; font-lock-keyword-face
2721 '((((class grayscale) (background light)) (:foreground "LightGray" :weight bold))
2722 (((class grayscale) (background dark)) (:foreground "DimGray" :weight bold))
2723 (((class color) (min-colors 88) (background light)) (:foreground "Purple"))
2724 (((class color) (min-colors 88) (background dark)) (:foreground "Cyan1"))
2725 (((class color) (min-colors 16) (background light)) (:foreground "Purple"))
2726 (((class color) (min-colors 16) (background dark)) (:foreground "Cyan"))
2727 (((class color) (min-colors 8)) (:foreground "cyan" :weight bold))
2728 (t (:weight bold)))
2729 "The face used to highlight instances of your nick within messages."
2730 :group 'rcirc-faces)
2732 (defface rcirc-nick-in-message-full-line
2733 '((t (:bold t)))
2734 "The face used emphasize the entire message when your nick is mentioned."
2735 :group 'rcirc-faces)
2737 (defface rcirc-prompt ; comint-highlight-prompt
2738 '((((min-colors 88) (background dark)) (:foreground "cyan1"))
2739 (((background dark)) (:foreground "cyan"))
2740 (t (:foreground "dark blue")))
2741 "The face used to highlight prompts."
2742 :group 'rcirc-faces)
2744 (defface rcirc-track-nick
2745 '((((type tty)) (:inherit default))
2746 (t (:inverse-video t)))
2747 "The face used in the mode-line when your nick is mentioned."
2748 :group 'rcirc-faces)
2750 (defface rcirc-track-keyword
2751 '((t (:bold t )))
2752 "The face used in the mode-line when keywords are mentioned."
2753 :group 'rcirc-faces)
2755 (defface rcirc-url
2756 '((t (:bold t)))
2757 "The face used to highlight urls."
2758 :group 'rcirc-faces)
2760 (defface rcirc-keyword
2761 '((t (:inherit highlight)))
2762 "The face used to highlight keywords."
2763 :group 'rcirc-faces)
2766 ;; When using M-x flyspell-mode, only check words after the prompt
2767 (put 'rcirc-mode 'flyspell-mode-predicate 'rcirc-looking-at-input)
2768 (defun rcirc-looking-at-input ()
2769 "Returns true if point is past the input marker."
2770 (>= (point) rcirc-prompt-end-marker))
2773 (provide 'rcirc)
2775 ;; arch-tag: b471b7e8-6b5a-4399-b2c6-a3c78dfc8ffb
2776 ;;; rcirc.el ends here