]> code.delx.au - gnu-emacs/blob - lisp/erc/erc.el
7cb6fbb595b6ccfa1118b095d4c983f62e34f4da
[gnu-emacs] / lisp / erc / erc.el
1 ;; erc.el --- An Emacs Internet Relay Chat client
2
3 ;; Copyright (C) 1997-2012 Free Software Foundation, Inc.
4
5 ;; Author: Alexander L. Belikoff (alexander@belikoff.net)
6 ;; Contributors: Sergey Berezin (sergey.berezin@cs.cmu.edu),
7 ;; Mario Lang (mlang@delysid.org),
8 ;; Alex Schroeder (alex@gnu.org)
9 ;; Andreas Fuchs (afs@void.at)
10 ;; Gergely Nagy (algernon@midgard.debian.net)
11 ;; David Edmondson (dme@dme.org)
12 ;; Maintainer: FSF
13 ;; Keywords: IRC, chat, client, Internet
14 ;; Version: 5.3
15
16 ;; This file is part of GNU Emacs.
17
18 ;; GNU Emacs is free software: you can redistribute it and/or modify
19 ;; it under the terms of the GNU General Public License as published by
20 ;; the Free Software Foundation, either version 3 of the License, or
21 ;; (at your option) any later version.
22
23 ;; GNU Emacs is distributed in the hope that it will be useful,
24 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
25 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 ;; GNU General Public License for more details.
27
28 ;; You should have received a copy of the GNU General Public License
29 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
30
31 ;;; Commentary:
32
33 ;; ERC is a powerful, modular, and extensible IRC client for Emacs.
34
35 ;; For more information, see the following URLs:
36 ;; * http://sv.gnu.org/projects/erc/
37 ;; * http://www.emacswiki.org/cgi-bin/wiki/ERC
38
39 ;; As of 2006-06-13, ERC development is now hosted on Savannah
40 ;; (http://sv.gnu.org/projects/erc). I invite everyone who wants to
41 ;; hack on it to contact me <mwolson@gnu.org> in order to get write
42 ;; access to the shared Arch archive.
43
44 ;; Installation:
45
46 ;; Put erc.el in your load-path, and put (require 'erc) in your .emacs.
47
48 ;; Configuration:
49
50 ;; Use M-x customize-group RET erc RET to get an overview
51 ;; of all the variables you can tweak.
52
53 ;; Usage:
54
55 ;; To connect to an IRC server, do
56 ;;
57 ;; M-x erc RET
58 ;;
59 ;; After you are connected to a server, you can use C-h m or have a look at
60 ;; the ERC menu.
61
62 ;;; History:
63 ;;
64
65 ;;; Code:
66
67 (defconst erc-version-string "Version 5.3"
68 "ERC version. This is used by function `erc-version'.")
69
70 (eval-when-compile (require 'cl))
71 (require 'font-lock)
72 (require 'pp)
73 (require 'thingatpt)
74 (require 'auth-source)
75 (require 'erc-compat)
76
77 (defvar erc-official-location
78 "http://emacswiki.org/cgi-bin/wiki/ERC (mailing list: erc-discuss@gnu.org)"
79 "Location of the ERC client on the Internet.")
80
81 (defgroup erc nil
82 "Emacs Internet Relay Chat client."
83 :link '(url-link "http://www.emacswiki.org/cgi-bin/wiki/ERC")
84 :prefix "erc-"
85 :group 'applications)
86
87 (defgroup erc-buffers nil
88 "Creating new ERC buffers"
89 :group 'erc)
90
91 (defgroup erc-display nil
92 "Settings for how various things are displayed"
93 :group 'erc)
94
95 (defgroup erc-mode-line-and-header nil
96 "Displaying information in the mode-line and header"
97 :group 'erc-display)
98
99 (defgroup erc-ignore nil
100 "Ignoring certain messages"
101 :group 'erc)
102
103 (defgroup erc-lurker nil
104 "Hide specified message types sent by lurkers"
105 :version "24.3"
106 :group 'erc-ignore)
107
108 (defgroup erc-query nil
109 "Using separate buffers for private discussions"
110 :group 'erc)
111
112 (defgroup erc-quit-and-part nil
113 "Quitting and parting channels"
114 :group 'erc)
115
116 (defgroup erc-paranoia nil
117 "Know what is sent and received; control the display of sensitive data."
118 :group 'erc)
119
120 (defgroup erc-scripts nil
121 "Running scripts at startup and with /LOAD"
122 :group 'erc)
123
124 (require 'erc-backend)
125
126 ;; compatibility with older ERC releases
127
128 (if (fboundp 'defvaralias)
129 (progn
130 (defvaralias 'erc-announced-server-name 'erc-server-announced-name)
131 (erc-make-obsolete-variable 'erc-announced-server-name
132 'erc-server-announced-name
133 "ERC 5.1")
134 (defvaralias 'erc-process 'erc-server-process)
135 (erc-make-obsolete-variable 'erc-process 'erc-server-process "ERC 5.1")
136 (defvaralias 'erc-default-coding-system 'erc-server-coding-system)
137 (erc-make-obsolete-variable 'erc-default-coding-system
138 'erc-server-coding-system
139 "ERC 5.1"))
140 (message (concat "ERC: The function `defvaralias' is not bound. See the "
141 "NEWS file for variable name changes since ERC 5.0.4.")))
142
143 (define-obsolete-function-alias 'erc-send-command
144 'erc-server-send "ERC 5.1")
145
146 ;; tunable connection and authentication parameters
147
148 (defcustom erc-server nil
149 "IRC server to use if one is not provided.
150 See function `erc-compute-server' for more details on connection
151 parameters and authentication."
152 :group 'erc
153 :type '(choice (const :tag "None" nil)
154 (string :tag "Server")))
155
156 (defcustom erc-port nil
157 "IRC port to use if not specified.
158
159 This can be either a string or a number."
160 :group 'erc
161 :type '(choice (const :tag "None" nil)
162 (integer :tag "Port number")
163 (string :tag "Port string")))
164
165 (defcustom erc-nick nil
166 "Nickname to use if one is not provided.
167
168 This can be either a string, or a list of strings.
169 In the latter case, if the first nick in the list is already in use,
170 other nicks are tried in the list order.
171
172 See function `erc-compute-nick' for more details on connection
173 parameters and authentication."
174 :group 'erc
175 :type '(choice (const :tag "None" nil)
176 (string :tag "Nickname")
177 (repeat (string :tag "Nickname"))))
178
179 (defcustom erc-nick-uniquifier "`"
180 "The string to append to the nick if it is already in use."
181 :group 'erc
182 :type 'string)
183
184 (defcustom erc-try-new-nick-p t
185 "If the nickname you chose isn't available, and this option is non-nil,
186 ERC should automatically attempt to connect with another nickname.
187
188 You can manually set another nickname with the /NICK command."
189 :group 'erc
190 :type 'boolean)
191
192 (defcustom erc-user-full-name nil
193 "User full name.
194
195 This can be either a string or a function to call.
196
197 See function `erc-compute-full-name' for more details on connection
198 parameters and authentication."
199 :group 'erc
200 :type '(choice (const :tag "No name" nil)
201 (string :tag "Name")
202 (function :tag "Get from function"))
203 :set (lambda (sym val)
204 (if (functionp val)
205 (set sym (funcall val))
206 (set sym val))))
207
208 (defvar erc-password nil
209 "Password to use when authenticating to an IRC server.
210 It is not strictly necessary to provide this, since ERC will
211 prompt you for it.")
212
213 (defcustom erc-user-mode nil
214 "Initial user modes to be set after a connection is established."
215 :group 'erc
216 :type '(choice (const nil) string function))
217
218
219 (defcustom erc-prompt-for-password t
220 "Asks before using the default password, or whether to enter a new one."
221 :group 'erc
222 :type 'boolean)
223
224 (defcustom erc-warn-about-blank-lines t
225 "Warn the user if they attempt to send a blank line."
226 :group 'erc
227 :type 'boolean)
228
229 (defcustom erc-send-whitespace-lines nil
230 "If set to non-nil, send lines consisting of only whitespace."
231 :group 'erc
232 :type 'boolean)
233
234 (defcustom erc-hide-prompt nil
235 "If non-nil, do not display the prompt for commands.
236
237 \(A command is any input starting with a '/').
238
239 See also the variables `erc-prompt' and `erc-command-indicator'."
240 :group 'erc-display
241 :type 'boolean)
242
243 ;; tunable GUI stuff
244
245 (defcustom erc-show-my-nick t
246 "If non-nil, display one's own nickname when sending a message.
247
248 If non-nil, \"<nickname>\" will be shown.
249 If nil, only \"> \" will be shown."
250 :group 'erc-display
251 :type 'boolean)
252
253 (define-widget 'erc-message-type 'set
254 "A set of standard IRC Message types."
255 :args '((const "JOIN")
256 (const "KICK")
257 (const "NICK")
258 (const "PART")
259 (const "QUIT")
260 (const "MODE")
261 (repeat :inline t :tag "Others" (string :tag "IRC Message Type"))))
262
263 (defcustom erc-hide-list nil
264 "List of IRC type messages to hide.
265 A typical value would be '(\"JOIN\" \"PART\" \"QUIT\")."
266 :group 'erc-ignore
267 :type 'erc-message-type)
268
269 (defvar erc-session-password nil
270 "The password used for the current session.")
271 (make-variable-buffer-local 'erc-session-password)
272
273 (defcustom erc-disconnected-hook nil
274 "Run this hook with arguments (NICK IP REASON) when disconnected.
275 This happens before automatic reconnection. Note, that
276 `erc-server-QUIT-functions' might not be run when we disconnect,
277 simply because we do not necessarily receive the QUIT event."
278 :group 'erc-hooks
279 :type 'hook)
280
281 (defcustom erc-complete-functions nil
282 "These functions get called when the user hits TAB in ERC.
283 Each function in turn is called until one returns non-nil to
284 indicate it has handled the input."
285 :group 'erc-hooks
286 :type 'hook)
287
288 (defcustom erc-join-hook nil
289 "Hook run when we join a channel. Hook functions are called
290 without arguments, with the current buffer set to the buffer of
291 the new channel.
292
293 See also `erc-server-JOIN-functions', `erc-part-hook'."
294 :group 'erc-hooks
295 :type 'hook)
296
297 (defcustom erc-quit-hook nil
298 "Hook run when processing a quit command directed at our nick.
299
300 The hook receives one argument, the current PROCESS.
301 See also `erc-server-QUIT-functions' and `erc-disconnected-hook'."
302 :group 'erc-hooks
303 :type 'hook)
304
305 (defcustom erc-part-hook nil
306 "Hook run when processing a PART message directed at our nick.
307
308 The hook receives one argument, the current BUFFER.
309 See also `erc-server-QUIT-functions', `erc-quit-hook' and
310 `erc-disconnected-hook'."
311 :group 'erc-hooks
312 :type 'hook)
313
314 (defcustom erc-kick-hook nil
315 "Hook run when processing a KICK message directed at our nick.
316
317 The hook receives one argument, the current BUFFER.
318 See also `erc-server-PART-functions' and `erc-part-hook'."
319 :group 'erc-hooks
320 :type 'hook)
321
322 (defcustom erc-nick-changed-functions nil
323 "List of functions run when your nick was successfully changed.
324
325 Each function should accept two arguments, NEW-NICK and OLD-NICK."
326 :group 'erc-hooks
327 :type 'hook)
328
329 (defcustom erc-connect-pre-hook '(erc-initialize-log-marker)
330 "Hook called just before `erc' calls `erc-connect'.
331 Functions are passed a buffer as the first argument."
332 :group 'erc-hooks
333 :type 'hook)
334
335
336 (defvar erc-channel-users nil
337 "A hash table of members in the current channel, which
338 associates nicknames with cons cells of the form:
339 \(USER . MEMBER-DATA) where USER is a pointer to an
340 erc-server-user struct, and MEMBER-DATA is a pointer to an
341 erc-channel-user struct.")
342 (make-variable-buffer-local 'erc-channel-users)
343
344 (defvar erc-server-users nil
345 "A hash table of users on the current server, which associates
346 nicknames with erc-server-user struct instances.")
347 (make-variable-buffer-local 'erc-server-users)
348
349 (defun erc-downcase (string)
350 "Convert STRING to IRC standard conforming downcase."
351 (let ((s (downcase string))
352 (c '((?\[ . ?\{)
353 (?\] . ?\})
354 (?\\ . ?\|)
355 (?~ . ?^))))
356 (save-match-data
357 (while (string-match "[]\\[~]" s)
358 (aset s (match-beginning 0)
359 (cdr (assq (aref s (match-beginning 0)) c)))))
360 s))
361
362 (defmacro erc-with-server-buffer (&rest body)
363 "Execute BODY in the current ERC server buffer.
364 If no server buffer exists, return nil."
365 (declare (indent 0) (debug (body)))
366 (let ((buffer (make-symbol "buffer")))
367 `(let ((,buffer (erc-server-buffer)))
368 (when (buffer-live-p ,buffer)
369 (with-current-buffer ,buffer
370 ,@body)))))
371
372 (defstruct (erc-server-user (:type vector) :named)
373 ;; User data
374 nickname host login full-name info
375 ;; Buffers
376 ;;
377 ;; This is an alist of the form (BUFFER . CHANNEL-DATA), where
378 ;; CHANNEL-DATA is either nil or an erc-channel-user struct.
379 (buffers nil)
380 )
381
382 (defstruct (erc-channel-user (:type vector) :named)
383 op voice
384 ;; Last message time (in the form of the return value of
385 ;; (current-time)
386 ;;
387 ;; This is useful for ordered name completion.
388 (last-message-time nil))
389
390 (defsubst erc-get-channel-user (nick)
391 "Finds the (USER . CHANNEL-DATA) element corresponding to NICK
392 in the current buffer's `erc-channel-users' hash table."
393 (gethash (erc-downcase nick) erc-channel-users))
394
395 (defsubst erc-get-server-user (nick)
396 "Finds the USER corresponding to NICK in the current server's
397 `erc-server-users' hash table."
398 (erc-with-server-buffer
399 (gethash (erc-downcase nick) erc-server-users)))
400
401 (defsubst erc-add-server-user (nick user)
402 "This function is for internal use only.
403
404 Adds USER with nickname NICK to the `erc-server-users' hash table."
405 (erc-with-server-buffer
406 (puthash (erc-downcase nick) user erc-server-users)))
407
408 (defsubst erc-remove-server-user (nick)
409 "This function is for internal use only.
410
411 Removes the user with nickname NICK from the `erc-server-users'
412 hash table. This user is not removed from the
413 `erc-channel-users' lists of other buffers.
414
415 See also: `erc-remove-user'."
416 (erc-with-server-buffer
417 (remhash (erc-downcase nick) erc-server-users)))
418
419 (defun erc-change-user-nickname (user new-nick)
420 "This function is for internal use only.
421
422 Changes the nickname of USER to NEW-NICK in the
423 `erc-server-users' hash table. The `erc-channel-users' lists of
424 other buffers are also changed."
425 (let ((nick (erc-server-user-nickname user)))
426 (setf (erc-server-user-nickname user) new-nick)
427 (erc-with-server-buffer
428 (remhash (erc-downcase nick) erc-server-users)
429 (puthash (erc-downcase new-nick) user erc-server-users))
430 (dolist (buf (erc-server-user-buffers user))
431 (if (buffer-live-p buf)
432 (with-current-buffer buf
433 (let ((cdata (erc-get-channel-user nick)))
434 (remhash (erc-downcase nick) erc-channel-users)
435 (puthash (erc-downcase new-nick) cdata
436 erc-channel-users)))))))
437
438 (defun erc-remove-channel-user (nick)
439 "This function is for internal use only.
440
441 Removes the user with nickname NICK from the `erc-channel-users'
442 list for this channel. If this user is not in the
443 `erc-channel-users' list of any other buffers, the user is also
444 removed from the server's `erc-server-users' list.
445
446 See also: `erc-remove-server-user' and `erc-remove-user'."
447 (let ((channel-data (erc-get-channel-user nick)))
448 (when channel-data
449 (let ((user (car channel-data)))
450 (setf (erc-server-user-buffers user)
451 (delq (current-buffer)
452 (erc-server-user-buffers user)))
453 (remhash (erc-downcase nick) erc-channel-users)
454 (if (null (erc-server-user-buffers user))
455 (erc-remove-server-user nick))))))
456
457 (defun erc-remove-user (nick)
458 "This function is for internal use only.
459
460 Removes the user with nickname NICK from the `erc-server-users'
461 list as well as from all `erc-channel-users' lists.
462
463 See also: `erc-remove-server-user' and
464 `erc-remove-channel-user'."
465 (let ((user (erc-get-server-user nick)))
466 (when user
467 (let ((buffers (erc-server-user-buffers user)))
468 (dolist (buf buffers)
469 (if (buffer-live-p buf)
470 (with-current-buffer buf
471 (remhash (erc-downcase nick) erc-channel-users)
472 (run-hooks 'erc-channel-members-changed-hook)))))
473 (erc-remove-server-user nick))))
474
475 (defun erc-remove-channel-users ()
476 "This function is for internal use only.
477
478 Removes all users in the current channel. This is called by
479 `erc-server-PART' and `erc-server-QUIT'."
480 (when (and erc-server-connected
481 (erc-server-process-alive)
482 (hash-table-p erc-channel-users))
483 (maphash (lambda (nick cdata)
484 (erc-remove-channel-user nick))
485 erc-channel-users)
486 (clrhash erc-channel-users)))
487
488 (defsubst erc-channel-user-op-p (nick)
489 "Return t if NICK is an operator in the current channel."
490 (and nick
491 (hash-table-p erc-channel-users)
492 (let ((cdata (erc-get-channel-user nick)))
493 (and cdata (cdr cdata)
494 (erc-channel-user-op (cdr cdata))))))
495
496 (defsubst erc-channel-user-voice-p (nick)
497 "Return t if NICK has voice in the current channel."
498 (and nick
499 (hash-table-p erc-channel-users)
500 (let ((cdata (erc-get-channel-user nick)))
501 (and cdata (cdr cdata)
502 (erc-channel-user-voice (cdr cdata))))))
503
504 (defun erc-get-channel-user-list ()
505 "Returns a list of users in the current channel. Each element
506 of the list is of the form (USER . CHANNEL-DATA), where USER is
507 an erc-server-user struct, and CHANNEL-DATA is either `nil' or an
508 erc-channel-user struct.
509
510 See also: `erc-sort-channel-users-by-activity'"
511 (let (users)
512 (if (hash-table-p erc-channel-users)
513 (maphash (lambda (nick cdata)
514 (setq users (cons cdata users)))
515 erc-channel-users))
516 users))
517
518 (defun erc-get-server-nickname-list ()
519 "Returns a list of known nicknames on the current server."
520 (erc-with-server-buffer
521 (let (nicks)
522 (when (hash-table-p erc-server-users)
523 (maphash (lambda (n user)
524 (setq nicks
525 (cons (erc-server-user-nickname user)
526 nicks)))
527 erc-server-users)
528 nicks))))
529
530 (defun erc-get-channel-nickname-list ()
531 "Returns a list of known nicknames on the current channel."
532 (let (nicks)
533 (when (hash-table-p erc-channel-users)
534 (maphash (lambda (n cdata)
535 (setq nicks
536 (cons (erc-server-user-nickname (car cdata))
537 nicks)))
538 erc-channel-users)
539 nicks)))
540
541 (defun erc-get-server-nickname-alist ()
542 "Returns an alist of known nicknames on the current server."
543 (erc-with-server-buffer
544 (let (nicks)
545 (when (hash-table-p erc-server-users)
546 (maphash (lambda (n user)
547 (setq nicks
548 (cons (cons (erc-server-user-nickname user) nil)
549 nicks)))
550 erc-server-users)
551 nicks))))
552
553 (defun erc-get-channel-nickname-alist ()
554 "Returns an alist of known nicknames on the current channel."
555 (let (nicks)
556 (when (hash-table-p erc-channel-users)
557 (maphash (lambda (n cdata)
558 (setq nicks
559 (cons (cons (erc-server-user-nickname (car cdata)) nil)
560 nicks)))
561 erc-channel-users)
562 nicks)))
563
564 (defun erc-sort-channel-users-by-activity (list)
565 "Sorts LIST such that users which have spoken most recently are
566 listed first. LIST must be of the form (USER . CHANNEL-DATA).
567
568 See also: `erc-get-channel-user-list'."
569 (sort list
570 (lambda (x y)
571 (when (and
572 (cdr x) (cdr y))
573 (let ((tx (erc-channel-user-last-message-time (cdr x)))
574 (ty (erc-channel-user-last-message-time (cdr y))))
575 (if tx
576 (if ty
577 (time-less-p ty tx)
578 t)
579 nil))))))
580
581 (defun erc-sort-channel-users-alphabetically (list)
582 "Sort LIST so that users' nicknames are in alphabetical order.
583 LIST must be of the form (USER . CHANNEL-DATA).
584
585 See also: `erc-get-channel-user-list'."
586 (sort list
587 (lambda (x y)
588 (when (and
589 (cdr x) (cdr y))
590 (let ((nickx (downcase (erc-server-user-nickname (car x))))
591 (nicky (downcase (erc-server-user-nickname (car y)))))
592 (if nickx
593 (if nicky
594 (string-lessp nickx nicky)
595 t)
596 nil))))))
597
598 (defvar erc-channel-topic nil
599 "A topic string for the channel. Should only be used in channel-buffers.")
600 (make-variable-buffer-local 'erc-channel-topic)
601
602 (defvar erc-channel-modes nil
603 "List of strings representing channel modes.
604 E.g. '(\"i\" \"m\" \"s\" \"b Quake!*@*\")
605 \(not sure the ban list will be here, but why not)")
606 (make-variable-buffer-local 'erc-channel-modes)
607
608 (defvar erc-insert-marker nil
609 "The place where insertion of new text in erc buffers should happen.")
610 (make-variable-buffer-local 'erc-insert-marker)
611
612 (defvar erc-input-marker nil
613 "The marker where input should be inserted.")
614 (make-variable-buffer-local 'erc-input-marker)
615
616 (defun erc-string-no-properties (string)
617 "Return a copy of STRING will all text-properties removed."
618 (let ((newstring (copy-sequence string)))
619 (set-text-properties 0 (length newstring) nil newstring)
620 newstring))
621
622 (defcustom erc-prompt "ERC>"
623 "Prompt used by ERC. Trailing whitespace is not required."
624 :group 'erc-display
625 :type '(choice string function))
626
627 (defun erc-prompt ()
628 "Return the input prompt as a string.
629
630 See also the variable `erc-prompt'."
631 (let ((prompt (if (functionp erc-prompt)
632 (funcall erc-prompt)
633 erc-prompt)))
634 (if (> (length prompt) 0)
635 (concat prompt " ")
636 prompt)))
637
638 (defcustom erc-command-indicator nil
639 "Indicator used by ERC for showing commands.
640
641 If non-nil, this will be used in the ERC buffer to indicate
642 commands (i.e., input starting with a '/').
643
644 If nil, the prompt will be constructed from the variable `erc-prompt'."
645 :group 'erc-display
646 :type '(choice (const nil) string function))
647
648 (defun erc-command-indicator ()
649 "Return the command indicator prompt as a string.
650
651 This only has any meaning if the variable `erc-command-indicator' is non-nil."
652 (and erc-command-indicator
653 (let ((prompt (if (functionp erc-command-indicator)
654 (funcall erc-command-indicator)
655 erc-command-indicator)))
656 (if (> (length prompt) 0)
657 (concat prompt " ")
658 prompt))))
659
660 (defcustom erc-notice-prefix "*** "
661 "Prefix for all notices."
662 :group 'erc-display
663 :type 'string)
664
665 (defcustom erc-notice-highlight-type 'all
666 "Determines how to highlight notices.
667 See `erc-notice-prefix'.
668
669 The following values are allowed:
670
671 'prefix - highlight notice prefix only
672 'all - highlight the entire notice
673
674 Any other value disables notice's highlighting altogether."
675 :group 'erc-display
676 :type '(choice (const :tag "highlight notice prefix only" prefix)
677 (const :tag "highlight the entire notice" all)
678 (const :tag "don't highlight notices at all" nil)))
679
680 (defcustom erc-echo-notice-hook nil
681 "Specifies a list of functions to call to echo a private
682 notice. Each function is called with four arguments, the string
683 to display, the parsed server message, the target buffer (or
684 nil), and the sender. The functions are called in order, until a
685 function evaluates to non-nil. These hooks are called after
686 those specified in `erc-echo-notice-always-hook'.
687
688 See also: `erc-echo-notice-always-hook',
689 `erc-echo-notice-in-default-buffer',
690 `erc-echo-notice-in-target-buffer',
691 `erc-echo-notice-in-minibuffer',
692 `erc-echo-notice-in-server-buffer',
693 `erc-echo-notice-in-active-non-server-buffer',
694 `erc-echo-notice-in-active-buffer',
695 `erc-echo-notice-in-user-buffers',
696 `erc-echo-notice-in-user-and-target-buffers',
697 `erc-echo-notice-in-first-user-buffer'"
698 :group 'erc-hooks
699 :type 'hook
700 :options '(erc-echo-notice-in-default-buffer
701 erc-echo-notice-in-target-buffer
702 erc-echo-notice-in-minibuffer
703 erc-echo-notice-in-server-buffer
704 erc-echo-notice-in-active-non-server-buffer
705 erc-echo-notice-in-active-buffer
706 erc-echo-notice-in-user-buffers
707 erc-echo-notice-in-user-and-target-buffers
708 erc-echo-notice-in-first-user-buffer))
709
710 (defcustom erc-echo-notice-always-hook
711 '(erc-echo-notice-in-default-buffer)
712 "Specifies a list of functions to call to echo a private
713 notice. Each function is called with four arguments, the string
714 to display, the parsed server message, the target buffer (or
715 nil), and the sender. The functions are called in order, and all
716 functions are called. These hooks are called before those
717 specified in `erc-echo-notice-hook'.
718
719 See also: `erc-echo-notice-hook',
720 `erc-echo-notice-in-default-buffer',
721 `erc-echo-notice-in-target-buffer',
722 `erc-echo-notice-in-minibuffer',
723 `erc-echo-notice-in-server-buffer',
724 `erc-echo-notice-in-active-non-server-buffer',
725 `erc-echo-notice-in-active-buffer',
726 `erc-echo-notice-in-user-buffers',
727 `erc-echo-notice-in-user-and-target-buffers',
728 `erc-echo-notice-in-first-user-buffer'"
729 :group 'erc-hooks
730 :type 'hook
731 :options '(erc-echo-notice-in-default-buffer
732 erc-echo-notice-in-target-buffer
733 erc-echo-notice-in-minibuffer
734 erc-echo-notice-in-server-buffer
735 erc-echo-notice-in-active-non-server-buffer
736 erc-echo-notice-in-active-buffer
737 erc-echo-notice-in-user-buffers
738 erc-echo-notice-in-user-and-target-buffers
739 erc-echo-notice-in-first-user-buffer))
740
741 ;; other tunable parameters
742
743 (defcustom erc-whowas-on-nosuchnick nil
744 "If non-nil, do a whowas on a nick if no such nick."
745 :group 'erc
746 :type 'boolean)
747
748 (defcustom erc-verbose-server-ping nil
749 "If non-nil, show every time you get a PING or PONG from the server."
750 :group 'erc-paranoia
751 :type 'boolean)
752
753 (defcustom erc-public-away-p nil
754 "Let others know you are back when you are no longer marked away.
755 This happens in this form:
756 * <nick> is back (gone for <time>)
757
758 Many consider it impolite to do so automatically."
759 :group 'erc
760 :type 'boolean)
761
762 (defcustom erc-away-nickname nil
763 "The nickname to take when you are marked as being away."
764 :group 'erc
765 :type '(choice (const nil)
766 string))
767
768 (defcustom erc-paranoid nil
769 "If non-nil, then all incoming CTCP requests will be shown."
770 :group 'erc-paranoia
771 :type 'boolean)
772
773 (defcustom erc-disable-ctcp-replies nil
774 "Disable replies to CTCP requests that require a reply.
775 If non-nil, then all incoming CTCP requests that normally require
776 an automatic reply (like VERSION or PING) will be ignored. Good to
777 set if some hacker is trying to flood you away."
778 :group 'erc-paranoia
779 :type 'boolean)
780
781 (defcustom erc-anonymous-login t
782 "Be paranoid, don't give away your machine name."
783 :group 'erc-paranoia
784 :type 'boolean)
785
786 (defcustom erc-prompt-for-channel-key nil
787 "Prompt for channel key when using `erc-join-channel' interactively."
788 :group 'erc
789 :type 'boolean)
790
791 (defcustom erc-email-userid "user"
792 "Use this as your email user ID."
793 :group 'erc
794 :type 'string)
795
796 (defcustom erc-system-name nil
797 "Use this as the name of your system.
798 If nil, ERC will call `system-name' to get this information."
799 :group 'erc
800 :type '(choice (const :tag "Default system name" nil)
801 string))
802
803 (defcustom erc-ignore-list nil
804 "List of regexps matching user identifiers to ignore.
805
806 A user identifier has the form \"nick!login@host\". If an
807 identifier matches, the message from the person will not be
808 processed."
809 :group 'erc-ignore
810 :type '(repeat regexp))
811 (make-variable-buffer-local 'erc-ignore-list)
812
813 (defcustom erc-ignore-reply-list nil
814 "List of regexps matching user identifiers to ignore completely.
815
816 This differs from `erc-ignore-list' in that it also ignores any
817 messages directed at the user.
818
819 A user identifier has the form \"nick!login@host\".
820
821 If an identifier matches, or a message is addressed to a nick
822 whose identifier matches, the message will not be processed.
823
824 CAVEAT: ERC doesn't know about the user and host of anyone who
825 was already in the channel when you joined, but never said
826 anything, so it won't be able to match the user and host of those
827 people. You can update the ERC internal info using /WHO *."
828 :group 'erc-ignore
829 :type '(repeat regexp))
830
831 (defvar erc-flood-protect t
832 "If non-nil, flood protection is enabled.
833 Flooding is sending too much information to the server in too
834 short of an interval, which may cause the server to terminate the
835 connection.
836
837 See `erc-server-flood-margin' for other flood-related parameters.")
838
839 ;; Script parameters
840
841 (defcustom erc-startup-file-list
842 (list (concat erc-user-emacs-directory ".ercrc.el")
843 (concat erc-user-emacs-directory ".ercrc")
844 "~/.ercrc.el" "~/.ercrc" ".ercrc.el" ".ercrc")
845 "List of files to try for a startup script.
846 The first existent and readable one will get executed.
847
848 If the filename ends with `.el' it is presumed to be an Emacs Lisp
849 script and it gets (load)ed. Otherwise it is treated as a bunch of
850 regular IRC commands."
851 :group 'erc-scripts
852 :type '(repeat file))
853
854 (defcustom erc-script-path nil
855 "List of directories to look for a script in /load command.
856 The script is first searched in the current directory, then in each
857 directory in the list."
858 :group 'erc-scripts
859 :type '(repeat directory))
860
861 (defcustom erc-script-echo t
862 "If non-nil, echo the IRC script commands locally."
863 :group 'erc-scripts
864 :type 'boolean)
865
866 (defvar erc-last-saved-position nil
867 "A marker containing the position the current buffer was last saved at.")
868 (make-variable-buffer-local 'erc-last-saved-position)
869
870 (defcustom erc-kill-buffer-on-part nil
871 "Kill the channel buffer on PART.
872 This variable should probably stay nil, as ERC can reuse buffers if
873 you rejoin them later."
874 :group 'erc-quit-and-part
875 :type 'boolean)
876
877 (defcustom erc-kill-queries-on-quit nil
878 "Kill all query (also channel) buffers of this server on QUIT.
879 See the variable `erc-kill-buffer-on-part' for details."
880 :group 'erc-quit-and-part
881 :type 'boolean)
882
883 (defcustom erc-kill-server-buffer-on-quit nil
884 "Kill the server buffer of the process on QUIT."
885 :group 'erc-quit-and-part
886 :type 'boolean)
887
888 (defcustom erc-quit-reason-various-alist nil
889 "Alist of possible arguments to the /quit command.
890
891 Each element has the form:
892 (REGEXP RESULT)
893
894 If REGEXP matches the argument to /quit, then its relevant RESULT
895 will be used. RESULT may be either a string, or a function. If
896 a function, it should return the quit message as a string.
897
898 If no elements match, then the empty string is used.
899
900 As an example:
901 (setq erc-quit-reason-various-alist
902 '((\"zippy\" erc-quit-reason-zippy)
903 (\"xmms\" dme:now-playing)
904 (\"version\" erc-quit-reason-normal)
905 (\"home\" \"Gone home !\")
906 (\"^$\" \"Default Reason\")))
907 If the user types \"/quit zippy\", then a Zippy the Pinhead quotation
908 will be used as the quit message."
909 :group 'erc-quit-and-part
910 :type '(repeat (list regexp (choice (string) (function)))))
911
912 (defcustom erc-part-reason-various-alist nil
913 "Alist of possible arguments to the /part command.
914
915 Each element has the form:
916 (REGEXP RESULT)
917
918 If REGEXP matches the argument to /part, then its relevant RESULT
919 will be used. RESULT may be either a string, or a function. If
920 a function, it should return the part message as a string.
921
922 If no elements match, then the empty string is used.
923
924 As an example:
925 (setq erc-part-reason-various-alist
926 '((\"zippy\" erc-part-reason-zippy)
927 (\"xmms\" dme:now-playing)
928 (\"version\" erc-part-reason-normal)
929 (\"home\" \"Gone home !\")
930 (\"^$\" \"Default Reason\")))
931 If the user types \"/part zippy\", then a Zippy the Pinhead quotation
932 will be used as the part message."
933 :group 'erc-quit-and-part
934 :type '(repeat (list regexp (choice (string) (function)))))
935
936 (defcustom erc-quit-reason 'erc-quit-reason-normal
937 "A function which returns the reason for quitting.
938
939 The function is passed a single argument, the string typed by the
940 user after \"/quit\"."
941 :group 'erc-quit-and-part
942 :type '(choice (const erc-quit-reason-normal)
943 (const erc-quit-reason-zippy)
944 (const erc-quit-reason-various)
945 (symbol)))
946
947 (defcustom erc-part-reason 'erc-part-reason-normal
948 "A function which returns the reason for parting a channel.
949
950 The function is passed a single argument, the string typed by the
951 user after \"/PART\"."
952 :group 'erc-quit-and-part
953 :type '(choice (const erc-part-reason-normal)
954 (const erc-part-reason-zippy)
955 (const erc-part-reason-various)
956 (symbol)))
957
958 (defvar erc-grab-buffer-name "*erc-grab*"
959 "The name of the buffer created by `erc-grab-region'.")
960
961 ;; variables available for IRC scripts
962
963 (defvar erc-user-information "ERC User"
964 "USER_INFORMATION IRC variable.")
965
966 ;; Hooks
967
968 (defgroup erc-hooks nil
969 "Hook variables for fancy customizations of ERC."
970 :group 'erc)
971
972 (defcustom erc-mode-hook nil
973 "Hook run after `erc-mode' setup is finished."
974 :group 'erc-hooks
975 :type 'hook
976 :options '(erc-add-scroll-to-bottom))
977
978 (defcustom erc-timer-hook nil
979 "Put functions which should get called more or less periodically here.
980 The idea is that servers always play ping pong with the client, and so there
981 is no need for any idle-timer games with Emacs."
982 :group 'erc-hooks
983 :type 'hook)
984
985 (defcustom erc-insert-pre-hook nil
986 "Hook called first when some text is inserted through `erc-display-line'.
987 It gets called with one argument, STRING.
988 To be able to modify the inserted text, use `erc-insert-modify-hook' instead.
989 Filtering functions can set `erc-insert-this' to nil to avoid
990 display of that particular string at all."
991 :group 'erc-hooks
992 :type 'hook)
993
994 (defcustom erc-send-pre-hook nil
995 "Hook called first when some text is sent through `erc-send-current-line'.
996 It gets called with one argument, STRING.
997
998 To change the text that will be sent, set the variable STR which is
999 used in `erc-send-current-line'.
1000
1001 To change the text inserted into the buffer without changing the text
1002 that will be sent, use `erc-send-modify-hook' instead.
1003
1004 Filtering functions can set `erc-send-this' to nil to avoid sending of
1005 that particular string at all and `erc-insert-this' to prevent
1006 inserting that particular string into the buffer.
1007
1008 Note that it's useless to set `erc-send-this' to nil and
1009 `erc-insert-this' to t. ERC is sane enough to not insert the text
1010 anyway."
1011 :group 'erc-hooks
1012 :type 'hook)
1013
1014 (defvar erc-insert-this t
1015 "Insert the text into the target buffer or not.
1016 Functions on `erc-insert-pre-hook' can set this variable to nil
1017 if they wish to avoid insertion of a particular string.")
1018
1019 (defvar erc-send-this t
1020 "Send the text to the target or not.
1021 Functions on `erc-send-pre-hook' can set this variable to nil
1022 if they wish to avoid sending of a particular string.")
1023
1024 (defcustom erc-insert-modify-hook ()
1025 "Insertion hook for functions that will change the text's appearance.
1026 This hook is called just after `erc-insert-pre-hook' when the value
1027 of `erc-insert-this' is t.
1028 While this hook is run, narrowing is in effect and `current-buffer' is
1029 the buffer where the text got inserted. One possible value to add here
1030 is `erc-fill'."
1031 :group 'erc-hooks
1032 :type 'hook)
1033
1034 (defcustom erc-insert-post-hook nil
1035 "This hook is called just after `erc-insert-modify-hook'.
1036 At this point, all modifications from prior hook functions are done."
1037 :group 'erc-hooks
1038 :type 'hook
1039 :options '(erc-truncate-buffer
1040 erc-make-read-only
1041 erc-save-buffer-in-logs))
1042
1043 (defcustom erc-send-modify-hook nil
1044 "Sending hook for functions that will change the text's appearance.
1045 This hook is called just after `erc-send-pre-hook' when the values
1046 of `erc-send-this' and `erc-insert-this' are both t.
1047 While this hook is run, narrowing is in effect and `current-buffer' is
1048 the buffer where the text got inserted.
1049
1050 Note that no function in this hook can change the appearance of the
1051 text that is sent. Only changing the sent text's appearance on the
1052 sending user's screen is possible. One possible value to add here
1053 is `erc-fill'."
1054 :group 'erc-hooks
1055 :type 'hook)
1056
1057 (defcustom erc-send-post-hook nil
1058 "This hook is called just after `erc-send-modify-hook'.
1059 At this point, all modifications from prior hook functions are done.
1060 NOTE: The functions on this hook are called _before_ sending a command
1061 to the server.
1062
1063 This function is called with narrowing, ala `erc-send-modify-hook'."
1064 :group 'erc-hooks
1065 :type 'hook
1066 :options '(erc-make-read-only))
1067
1068 (defcustom erc-send-completed-hook
1069 (when (featurep 'emacspeak)
1070 (list (byte-compile
1071 (lambda (str)
1072 (emacspeak-auditory-icon 'select-object)))))
1073 "Hook called after a message has been parsed by ERC.
1074
1075 The single argument to the functions is the unmodified string
1076 which the local user typed."
1077 :group 'erc-hooks
1078 :type 'hook)
1079 ;; mode-specific tables
1080
1081 (defvar erc-mode-syntax-table
1082 (let ((syntax-table (make-syntax-table)))
1083 (modify-syntax-entry ?\" ". " syntax-table)
1084 (modify-syntax-entry ?\\ ". " syntax-table)
1085 (modify-syntax-entry ?' "w " syntax-table)
1086 ;; Make dabbrev-expand useful for nick names
1087 (modify-syntax-entry ?< "." syntax-table)
1088 (modify-syntax-entry ?> "." syntax-table)
1089 syntax-table)
1090 "Syntax table used while in ERC mode.")
1091
1092 (defvar erc-mode-abbrev-table nil
1093 "Abbrev table used while in ERC mode.")
1094 (define-abbrev-table 'erc-mode-abbrev-table ())
1095
1096 (defvar erc-mode-map
1097 (let ((map (make-sparse-keymap)))
1098 (define-key map "\C-m" 'erc-send-current-line)
1099 (define-key map "\C-a" 'erc-bol)
1100 (define-key map [home] 'erc-bol)
1101 (define-key map "\C-c\C-a" 'erc-bol)
1102 (define-key map "\C-c\C-b" 'erc-iswitchb)
1103 (define-key map "\C-c\C-c" 'erc-toggle-interpret-controls)
1104 (define-key map "\C-c\C-d" 'erc-input-action)
1105 (define-key map "\C-c\C-e" 'erc-toggle-ctcp-autoresponse)
1106 (define-key map "\C-c\C-f" 'erc-toggle-flood-control)
1107 (define-key map "\C-c\C-i" 'erc-invite-only-mode)
1108 (define-key map "\C-c\C-j" 'erc-join-channel)
1109 (define-key map "\C-c\C-n" 'erc-channel-names)
1110 (define-key map "\C-c\C-o" 'erc-get-channel-mode-from-keypress)
1111 (define-key map "\C-c\C-p" 'erc-part-from-channel)
1112 (define-key map "\C-c\C-q" 'erc-quit-server)
1113 (define-key map "\C-c\C-r" 'erc-remove-text-properties-region)
1114 (define-key map "\C-c\C-t" 'erc-set-topic)
1115 (define-key map "\C-c\C-u" 'erc-kill-input)
1116 (define-key map "\C-c\C-x" 'erc-quit-server)
1117 (define-key map "\M-\t" 'ispell-complete-word)
1118 (define-key map "\t" 'completion-at-point)
1119
1120 ;; Suppress `font-lock-fontify-block' key binding since it
1121 ;; destroys face properties.
1122 (if (fboundp 'command-remapping)
1123 (define-key map [remap font-lock-fontify-block] 'undefined)
1124 (substitute-key-definition
1125 'font-lock-fontify-block 'undefined map global-map))
1126
1127 map)
1128 "ERC keymap.")
1129
1130 ;; Faces
1131
1132 ; Honestly, I have a horrible sense of color and the "defaults" below
1133 ; are supposed to be really bad. But colors ARE required in IRC to
1134 ; convey different parts of conversation. If you think you know better
1135 ; defaults - send them to me.
1136
1137 ;; Now colors are a bit nicer, at least to my eyes.
1138 ;; You may still want to change them to better fit your background.-- S.B.
1139
1140 (defgroup erc-faces nil
1141 "Faces for ERC."
1142 :group 'erc)
1143
1144 (defface erc-default-face '((t))
1145 "ERC default face."
1146 :group 'erc-faces)
1147
1148 (defface erc-direct-msg-face '((t :foreground "IndianRed"))
1149 "ERC face used for messages you receive in the main erc buffer."
1150 :group 'erc-faces)
1151
1152 (defface erc-header-line
1153 '((t :foreground "grey20" :background "grey90"))
1154 "ERC face used for the header line.
1155
1156 This will only be used if `erc-header-line-face-method' is non-nil."
1157 :group 'erc-faces)
1158
1159 (defface erc-input-face '((t :foreground "brown"))
1160 "ERC face used for your input."
1161 :group 'erc-faces)
1162
1163 (defface erc-prompt-face
1164 '((t :weight bold :foreground "Black" :background "lightBlue2"))
1165 "ERC face for the prompt."
1166 :group 'erc-faces)
1167
1168 (defface erc-command-indicator-face
1169 '((t :weight bold))
1170 "ERC face for the command indicator.
1171 See the variable `erc-command-indicator'."
1172 :group 'erc-faces)
1173
1174 (defface erc-notice-face
1175 '((default :weight bold)
1176 (((class color) (min-colors 88)) :foreground "SlateBlue")
1177 (t :foreground "blue"))
1178 "ERC face for notices."
1179 :group 'erc-faces)
1180
1181 (defface erc-action-face '((t :weight bold))
1182 "ERC face for actions generated by /ME."
1183 :group 'erc-faces)
1184
1185 (defface erc-error-face '((t :foreground "red"))
1186 "ERC face for errors."
1187 :group 'erc-faces)
1188
1189 ;; same default color as `erc-input-face'
1190 (defface erc-my-nick-face '((t :weight bold :foreground "brown"))
1191 "ERC face for your current nickname in messages sent by you.
1192 See also `erc-show-my-nick'."
1193 :group 'erc-faces)
1194
1195 (defface erc-nick-default-face '((t :weight bold))
1196 "ERC nickname default face."
1197 :group 'erc-faces)
1198
1199 (defface erc-nick-msg-face '((t :weight bold :foreground "IndianRed"))
1200 "ERC nickname face for private messages."
1201 :group 'erc-faces)
1202
1203 ;; Debugging support
1204
1205 (defvar erc-log-p nil
1206 "When set to t, generate debug messages in a separate debug buffer.")
1207
1208 (defvar erc-debug-log-file (expand-file-name "ERC.debug")
1209 "Debug log file name.")
1210
1211 (defvar erc-dbuf nil)
1212 (make-variable-buffer-local 'erc-dbuf)
1213
1214 (defmacro define-erc-module (name alias doc enable-body disable-body
1215 &optional local-p)
1216 "Define a new minor mode using ERC conventions.
1217 Symbol NAME is the name of the module.
1218 Symbol ALIAS is the alias to use, or nil.
1219 DOC is the documentation string to use for the minor mode.
1220 ENABLE-BODY is a list of expressions used to enable the mode.
1221 DISABLE-BODY is a list of expressions used to disable the mode.
1222 If LOCAL-P is non-nil, the mode will be created as a buffer-local
1223 mode, rather than a global one.
1224
1225 This will define a minor mode called erc-NAME-mode, possibly
1226 an alias erc-ALIAS-mode, as well as the helper functions
1227 erc-NAME-enable, and erc-NAME-disable.
1228
1229 Example:
1230
1231 ;;;###autoload (autoload 'erc-replace-mode \"erc-replace\")
1232 (define-erc-module replace nil
1233 \"This mode replaces incoming text according to `erc-replace-alist'.\"
1234 ((add-hook 'erc-insert-modify-hook
1235 'erc-replace-insert))
1236 ((remove-hook 'erc-insert-modify-hook
1237 'erc-replace-insert)))"
1238 (declare (doc-string 3))
1239 (let* ((sn (symbol-name name))
1240 (mode (intern (format "erc-%s-mode" (downcase sn))))
1241 (group (intern (format "erc-%s" (downcase sn))))
1242 (enable (intern (format "erc-%s-enable" (downcase sn))))
1243 (disable (intern (format "erc-%s-disable" (downcase sn)))))
1244 `(progn
1245 (erc-define-minor-mode
1246 ,mode
1247 ,(format "Toggle ERC %S mode.
1248 With a prefix argument ARG, enable %s if ARG is positive,
1249 and disable it otherwise. If called from Lisp, enable the mode
1250 if ARG is omitted or nil.
1251 %s" name name doc)
1252 nil nil nil
1253 :global ,(not local-p) :group (quote ,group)
1254 (if ,mode
1255 (,enable)
1256 (,disable)))
1257 (defun ,enable ()
1258 ,(format "Enable ERC %S mode."
1259 name)
1260 (interactive)
1261 (add-to-list 'erc-modules (quote ,name))
1262 (setq ,mode t)
1263 ,@enable-body)
1264 (defun ,disable ()
1265 ,(format "Disable ERC %S mode."
1266 name)
1267 (interactive)
1268 (setq erc-modules (delq (quote ,name) erc-modules))
1269 (setq ,mode nil)
1270 ,@disable-body)
1271 ,(when (and alias (not (eq name alias)))
1272 `(defalias
1273 (quote
1274 ,(intern
1275 (format "erc-%s-mode"
1276 (downcase (symbol-name alias)))))
1277 (quote
1278 ,mode)))
1279 ;; For find-function and find-variable.
1280 (put ',mode 'definition-name ',name)
1281 (put ',enable 'definition-name ',name)
1282 (put ',disable 'definition-name ',name))))
1283
1284 (defun erc-once-with-server-event (event &rest forms)
1285 "Execute FORMS the next time EVENT occurs in the `current-buffer'.
1286
1287 You should make sure that `current-buffer' is a server buffer.
1288
1289 This function temporarily adds a function to EVENT's hook to
1290 execute FORMS. After FORMS are run, the function is removed from
1291 EVENT's hook. The last expression of FORMS should be either nil
1292 or t, where nil indicates that the other functions on EVENT's hook
1293 should be run too, and t indicates that other functions should
1294 not be run.
1295
1296 Please be sure to use this function in server-buffers. In
1297 channel-buffers it may not work at all, as it uses the LOCAL
1298 argument of `add-hook' and `remove-hook' to ensure multiserver
1299 capabilities."
1300 (unless (erc-server-buffer-p)
1301 (error
1302 "You should only run `erc-once-with-server-event' in a server buffer"))
1303 (let ((fun (make-symbol "fun"))
1304 (hook (erc-get-hook event)))
1305 (put fun 'erc-original-buffer (current-buffer))
1306 (fset fun `(lambda (proc parsed)
1307 (with-current-buffer (get ',fun 'erc-original-buffer)
1308 (remove-hook ',hook ',fun t))
1309 (fmakunbound ',fun)
1310 ,@forms))
1311 (add-hook hook fun nil t)
1312 fun))
1313
1314 (defun erc-once-with-server-event-global (event &rest forms)
1315 "Execute FORMS the next time EVENT occurs in any server buffer.
1316
1317 This function temporarily prepends a function to EVENT's hook to
1318 execute FORMS. After FORMS are run, the function is removed from
1319 EVENT's hook. The last expression of FORMS should be either nil
1320 or t, where nil indicates that the other functions on EVENT's hook
1321 should be run too, and t indicates that other functions should
1322 not be run.
1323
1324 When FORMS execute, the current buffer is the server buffer associated with the
1325 connection over which the data was received that triggered EVENT."
1326 (let ((fun (make-symbol "fun"))
1327 (hook (erc-get-hook event)))
1328 (fset fun `(lambda (proc parsed)
1329 (remove-hook ',hook ',fun)
1330 (fmakunbound ',fun)
1331 ,@forms))
1332 (add-hook hook fun nil nil)
1333 fun))
1334
1335 (defsubst erc-log (string)
1336 "Logs STRING if logging is on (see `erc-log-p')."
1337 (when erc-log-p
1338 (erc-log-aux string)))
1339
1340 (defun erc-server-buffer ()
1341 "Return the server buffer for the current buffer's process.
1342 The buffer-local variable `erc-server-process' is used to find
1343 the process buffer."
1344 (and (erc-server-buffer-live-p)
1345 (process-buffer erc-server-process)))
1346
1347 (defun erc-server-buffer-live-p ()
1348 "Return t if the server buffer has not been killed."
1349 (and (processp erc-server-process)
1350 (buffer-live-p (process-buffer erc-server-process))))
1351
1352 (defun erc-server-buffer-p (&optional buffer)
1353 "Return non-nil if argument BUFFER is an ERC server buffer.
1354
1355 If BUFFER is nil, the current buffer is used."
1356 (with-current-buffer (or buffer (current-buffer))
1357 (and (eq major-mode 'erc-mode)
1358 (null (erc-default-target)))))
1359
1360 (defun erc-open-server-buffer-p (&optional buffer)
1361 "Return non-nil if argument BUFFER is an ERC server buffer that
1362 has an open IRC process.
1363
1364 If BUFFER is nil, the current buffer is used."
1365 (and (erc-server-buffer-p)
1366 (erc-server-process-alive)))
1367
1368 (defun erc-query-buffer-p (&optional buffer)
1369 "Return non-nil if BUFFER is an ERC query buffer.
1370 If BUFFER is nil, the current buffer is used."
1371 (with-current-buffer (or buffer (current-buffer))
1372 (let ((target (erc-default-target)))
1373 (and (eq major-mode 'erc-mode)
1374 target
1375 (not (memq (aref target 0) '(?# ?& ?+ ?!)))))))
1376
1377 (defun erc-ison-p (nick)
1378 "Return non-nil if NICK is online."
1379 (interactive "sNick: ")
1380 (erc-with-server-buffer
1381 (let ((erc-online-p 'unknown))
1382 (erc-once-with-server-event
1383 303
1384 `(let ((ison (split-string (aref parsed 3))))
1385 (setq erc-online-p (car (erc-member-ignore-case ,nick ison)))
1386 t))
1387 (erc-server-send (format "ISON %s" nick))
1388 (while (eq erc-online-p 'unknown) (accept-process-output))
1389 (if (interactive-p)
1390 (message "%s is %sonline"
1391 (or erc-online-p nick)
1392 (if erc-online-p "" "not "))
1393 erc-online-p))))
1394
1395 (defun erc-log-aux (string)
1396 "Do the debug logging of STRING."
1397 (let ((cb (current-buffer))
1398 (point 1)
1399 (was-eob nil)
1400 (session-buffer (erc-server-buffer)))
1401 (if session-buffer
1402 (progn
1403 (set-buffer session-buffer)
1404 (if (not (and erc-dbuf (bufferp erc-dbuf) (buffer-live-p erc-dbuf)))
1405 (progn
1406 (setq erc-dbuf (get-buffer-create
1407 (concat "*ERC-DEBUG: "
1408 erc-session-server "*")))))
1409 (set-buffer erc-dbuf)
1410 (setq point (point))
1411 (setq was-eob (eobp))
1412 (goto-char (point-max))
1413 (insert (concat "** " string "\n"))
1414 (if was-eob (goto-char (point-max))
1415 (goto-char point))
1416 (set-buffer cb))
1417 (message "ERC: ** %s" string))))
1418
1419 ;; Last active buffer, to print server messages in the right place
1420
1421 (defvar erc-active-buffer nil
1422 "The current active buffer, the one where the user typed the last command.
1423 Defaults to the server buffer, and should only be set in the
1424 server buffer.")
1425 (make-variable-buffer-local 'erc-active-buffer)
1426
1427 (defun erc-active-buffer ()
1428 "Return the value of `erc-active-buffer' for the current server.
1429 Defaults to the server buffer."
1430 (erc-with-server-buffer
1431 (if (buffer-live-p erc-active-buffer)
1432 erc-active-buffer
1433 (setq erc-active-buffer (current-buffer)))))
1434
1435 (defun erc-set-active-buffer (buffer)
1436 "Set the value of `erc-active-buffer' to BUFFER."
1437 (cond ((erc-server-buffer)
1438 (with-current-buffer (erc-server-buffer)
1439 (setq erc-active-buffer buffer)))
1440 (t (setq erc-active-buffer buffer))))
1441
1442 ;; Mode activation routines
1443
1444 (define-derived-mode erc-mode fundamental-mode "ERC"
1445 "Major mode for Emacs IRC."
1446 (setq local-abbrev-table erc-mode-abbrev-table)
1447 (when (boundp 'next-line-add-newlines)
1448 (set (make-local-variable 'next-line-add-newlines) nil))
1449 (setq line-move-ignore-invisible t)
1450 (set (make-local-variable 'paragraph-separate)
1451 (concat "\C-l\\|\\(^" (regexp-quote (erc-prompt)) "\\)"))
1452 (set (make-local-variable 'paragraph-start)
1453 (concat "\\(" (regexp-quote (erc-prompt)) "\\)"))
1454 (add-hook 'completion-at-point-functions 'erc-complete-word-at-point nil t))
1455
1456 ;; activation
1457
1458 (defconst erc-default-server "irc.freenode.net"
1459 "IRC server to use if it cannot be detected otherwise.")
1460
1461 (defconst erc-default-port 6667
1462 "IRC port to use if it cannot be detected otherwise.")
1463
1464 (defcustom erc-join-buffer 'buffer
1465 "Determines how to display a newly created IRC buffer.
1466
1467 The available choices are:
1468
1469 'window - in another window,
1470 'window-noselect - in another window, but don't select that one,
1471 'frame - in another frame,
1472 'bury - bury it in a new buffer,
1473 'buffer - in place of the current buffer,
1474 any other value - in place of the current buffer."
1475 :group 'erc-buffers
1476 :type '(choice (const :tag "Split window and select" window)
1477 (const :tag "Split window, don't select" window-noselect)
1478 (const :tag "New frame" frame)
1479 (const :tag "Bury in new buffer" bury)
1480 (const :tag "Use current buffer" buffer)
1481 (const :tag "Use current buffer" t)))
1482
1483 (defcustom erc-frame-alist nil
1484 "Alist of frame parameters for creating erc frames.
1485 A value of nil means to use `default-frame-alist'."
1486 :group 'erc-buffers
1487 :type '(repeat (cons :format "%v"
1488 (symbol :tag "Parameter")
1489 (sexp :tag "Value"))))
1490
1491 (defcustom erc-frame-dedicated-flag nil
1492 "Non-nil means the erc frames are dedicated to that buffer.
1493 This only has effect when `erc-join-buffer' is set to `frame'."
1494 :group 'erc-buffers
1495 :type 'boolean)
1496
1497 (defcustom erc-reuse-frames t
1498 "Determines whether new frames are always created.
1499 Non-nil means that a new frame is not created to display an ERC
1500 buffer if there is already a window displaying it. This only has
1501 effect when `erc-join-buffer' is set to `frame'."
1502 :group 'erc-buffers
1503 :type 'boolean)
1504
1505 (defun erc-channel-p (channel)
1506 "Return non-nil if CHANNEL seems to be an IRC channel name."
1507 (cond ((stringp channel)
1508 (memq (aref channel 0) '(?# ?& ?+ ?!)))
1509 ((and (bufferp channel) (buffer-live-p channel))
1510 (with-current-buffer channel
1511 (erc-channel-p (erc-default-target))))
1512 (t nil)))
1513
1514 (defcustom erc-reuse-buffers t
1515 "If nil, create new buffers on joining a channel/query.
1516 If non-nil, a new buffer will only be created when you join
1517 channels with same names on different servers, or have query buffers
1518 open with nicks of the same name on different servers. Otherwise,
1519 the existing buffers will be reused."
1520 :group 'erc-buffers
1521 :type 'boolean)
1522
1523 (defun erc-normalize-port (port)
1524 "Normalize the port specification PORT to integer form.
1525 PORT may be an integer, a string or a symbol. If it is a string or a
1526 symbol, it may have these values:
1527 * irc -> 194
1528 * ircs -> 994
1529 * ircd -> 6667
1530 * ircd-dalnet -> 7000"
1531 (cond
1532 ((symbolp port)
1533 (erc-normalize-port (symbol-name port)))
1534 ((stringp port)
1535 (let ((port-nr (string-to-number port)))
1536 (cond
1537 ((> port-nr 0)
1538 port-nr)
1539 ((string-equal port "irc")
1540 194)
1541 ((string-equal port "ircs")
1542 994)
1543 ((string-equal port "ircd")
1544 6667)
1545 ((string-equal port "ircd-dalnet")
1546 7000)
1547 (t
1548 nil))))
1549 ((numberp port)
1550 port)
1551 (t
1552 nil)))
1553
1554 (defun erc-port-equal (a b)
1555 "Check whether ports A and B are equal."
1556 (= (erc-normalize-port a) (erc-normalize-port b)))
1557
1558 (defun erc-generate-new-buffer-name (server port target &optional proc)
1559 "Create a new buffer name based on the arguments."
1560 (when (numberp port) (setq port (number-to-string port)))
1561 (let ((buf-name (or target
1562 (or (let ((name (concat server ":" port)))
1563 (when (> (length name) 1)
1564 name))
1565 ;; This fallback should in fact never happen
1566 "*erc-server-buffer*")))
1567 buffer-name)
1568 ;; Reuse existing buffers, but not if the buffer is a connected server
1569 ;; buffer and not if its associated with a different server than the
1570 ;; current ERC buffer.
1571 ;; if buf-name is taken by a different connection (or by something !erc)
1572 ;; then see if "buf-name/server" meets the same criteria
1573 (dolist (candidate (list buf-name (concat buf-name "/" server)))
1574 (if (and (not buffer-name)
1575 erc-reuse-buffers
1576 (get-buffer candidate)
1577 (or target
1578 (with-current-buffer (get-buffer candidate)
1579 (and (erc-server-buffer-p)
1580 (not (erc-server-process-alive)))))
1581 (with-current-buffer (get-buffer candidate)
1582 (and (string= erc-session-server server)
1583 (erc-port-equal erc-session-port port))))
1584 (setq buffer-name candidate)))
1585 ;; if buffer-name is unset, neither candidate worked out for us,
1586 ;; fallback to the old <N> uniquification method:
1587 (or buffer-name (generate-new-buffer-name buf-name)) ))
1588
1589 (defun erc-get-buffer-create (server port target &optional proc)
1590 "Create a new buffer based on the arguments."
1591 (get-buffer-create (erc-generate-new-buffer-name server port target proc)))
1592
1593
1594 (defun erc-member-ignore-case (string list)
1595 "Return non-nil if STRING is a member of LIST.
1596
1597 All strings are compared according to IRC protocol case rules, see
1598 `erc-downcase'."
1599 (setq string (erc-downcase string))
1600 (catch 'result
1601 (while list
1602 (if (string= string (erc-downcase (car list)))
1603 (throw 'result list)
1604 (setq list (cdr list))))))
1605
1606 (defmacro erc-with-buffer (spec &rest body)
1607 "Execute BODY in the buffer associated with SPEC.
1608
1609 SPEC should have the form
1610
1611 (TARGET [PROCESS])
1612
1613 If TARGET is a buffer, use it. Otherwise, use the buffer
1614 matching TARGET in the process specified by PROCESS.
1615
1616 If PROCESS is nil, use the current `erc-server-process'.
1617 See `erc-get-buffer' for details.
1618
1619 See also `with-current-buffer'.
1620
1621 \(fn (TARGET [PROCESS]) BODY...)"
1622 (declare (indent 1) (debug ((form &optional form) body)))
1623 (let ((buf (make-symbol "buf"))
1624 (proc (make-symbol "proc"))
1625 (target (make-symbol "target"))
1626 (process (make-symbol "process")))
1627 `(let* ((,target ,(car spec))
1628 (,process ,(cadr spec))
1629 (,buf (if (bufferp ,target)
1630 ,target
1631 (let ((,proc (or ,process
1632 (and (processp erc-server-process)
1633 erc-server-process))))
1634 (if (and ,target ,proc)
1635 (erc-get-buffer ,target ,proc))))))
1636 (when (buffer-live-p ,buf)
1637 (with-current-buffer ,buf
1638 ,@body)))))
1639
1640 (defun erc-get-buffer (target &optional proc)
1641 "Return the buffer matching TARGET in the process PROC.
1642 If PROC is not supplied, all processes are searched."
1643 (let ((downcased-target (erc-downcase target)))
1644 (catch 'buffer
1645 (erc-buffer-filter
1646 (lambda ()
1647 (let ((current (erc-default-target)))
1648 (and (stringp current)
1649 (string-equal downcased-target (erc-downcase current))
1650 (throw 'buffer (current-buffer)))))
1651 proc))))
1652
1653 (defun erc-buffer-filter (predicate &optional proc)
1654 "Return a list of `erc-mode' buffers matching certain criteria.
1655 PREDICATE is a function executed with each buffer, if it returns t, that buffer
1656 is considered a valid match.
1657
1658 PROC is either an `erc-server-process', identifying a certain
1659 server connection, or nil which means all open connections."
1660 (save-excursion
1661 (delq
1662 nil
1663 (mapcar (lambda (buf)
1664 (when (buffer-live-p buf)
1665 (with-current-buffer buf
1666 (and (eq major-mode 'erc-mode)
1667 (or (not proc)
1668 (eq proc erc-server-process))
1669 (funcall predicate)
1670 buf))))
1671 (buffer-list)))))
1672
1673 (defun erc-buffer-list (&optional predicate proc)
1674 "Return a list of ERC buffers.
1675 PREDICATE is a function which executes with every buffer satisfying
1676 the predicate. If PREDICATE is passed as nil, return a list of all ERC
1677 buffers. If PROC is given, the buffers local variable `erc-server-process'
1678 needs to match PROC."
1679 (unless predicate
1680 (setq predicate (lambda () t)))
1681 (erc-buffer-filter predicate proc))
1682
1683 (defmacro erc-with-all-buffers-of-server (process pred &rest forms)
1684 "Execute FORMS in all buffers which have same process as this server.
1685 FORMS will be evaluated in all buffers having the process PROCESS and
1686 where PRED matches or in all buffers of the server process if PRED is
1687 nil."
1688 (declare (indent 1) (debug (form form body)))
1689 ;; Make the evaluation have the correct order
1690 (let ((pre (make-symbol "pre"))
1691 (pro (make-symbol "pro")))
1692 `(let* ((,pro ,process)
1693 (,pre ,pred)
1694 (res (mapcar (lambda (buffer)
1695 (with-current-buffer buffer
1696 ,@forms))
1697 (erc-buffer-list ,pre
1698 ,pro))))
1699 ;; Silence the byte-compiler by binding the result of mapcar to
1700 ;; a variable.
1701 res)))
1702
1703 ;; (iswitchb-mode) will autoload iswitchb.el
1704 (defvar iswitchb-temp-buflist)
1705 (declare-function iswitchb-read-buffer "iswitchb"
1706 (prompt &optional default require-match start matches-set))
1707
1708 (defun erc-iswitchb (&optional arg)
1709 "Use `iswitchb-read-buffer' to prompt for a ERC buffer to switch to.
1710 When invoked with prefix argument, use all erc buffers. Without prefix
1711 ARG, allow only buffers related to same session server.
1712 If `erc-track-mode' is in enabled, put the last element of
1713 `erc-modified-channels-alist' in front of the buffer list.
1714
1715 Due to some yet unresolved reason, global function `iswitchb-mode'
1716 needs to be active for this function to work."
1717 (interactive "P")
1718 (let ((enabled (bound-and-true-p iswitchb-mode)))
1719 (or enabled (iswitchb-mode 1))
1720 (unwind-protect
1721 (let ((iswitchb-make-buflist-hook
1722 (lambda ()
1723 (setq iswitchb-temp-buflist
1724 (mapcar 'buffer-name
1725 (erc-buffer-list
1726 nil
1727 (when arg erc-server-process)))))))
1728 (switch-to-buffer
1729 (iswitchb-read-buffer
1730 "Switch-to: "
1731 (if (boundp 'erc-modified-channels-alist)
1732 (buffer-name (caar (last erc-modified-channels-alist)))
1733 nil)
1734 t)))
1735 (or enabled (iswitchb-mode -1)))))
1736
1737 (defun erc-channel-list (proc)
1738 "Return a list of channel buffers.
1739 PROC is the process for the server connection. If PROC is nil, return
1740 all channel buffers on all servers."
1741 (erc-buffer-filter
1742 (lambda ()
1743 (and (erc-default-target)
1744 (erc-channel-p (erc-default-target))))
1745 proc))
1746
1747 (defun erc-buffer-list-with-nick (nick proc)
1748 "Return buffers containing NICK in the `erc-channel-users' list."
1749 (with-current-buffer (process-buffer proc)
1750 (let ((user (gethash (erc-downcase nick) erc-server-users)))
1751 (if user
1752 (erc-server-user-buffers user)
1753 nil))))
1754
1755 ;; Some local variables
1756
1757 (defvar erc-default-recipients nil
1758 "List of default recipients of the current buffer.")
1759 (make-variable-buffer-local 'erc-default-recipients)
1760
1761 (defvar erc-session-user-full-name nil
1762 "Full name of the user on the current server.")
1763 (make-variable-buffer-local 'erc-session-user-full-name)
1764
1765 (defvar erc-channel-user-limit nil
1766 "Limit of users per channel.")
1767 (make-variable-buffer-local 'erc-channel-user-limit)
1768
1769 (defvar erc-channel-key nil
1770 "Key needed to join channel.")
1771 (make-variable-buffer-local 'erc-channel-key)
1772
1773 (defvar erc-invitation nil
1774 "Last invitation channel.")
1775 (make-variable-buffer-local 'erc-invitation)
1776
1777 (defvar erc-away nil
1778 "Non-nil indicates that we are away.
1779
1780 Use `erc-away-time' to access this if you might be in a channel
1781 buffer rather than a server buffer.")
1782 (make-variable-buffer-local 'erc-away)
1783
1784 (defvar erc-channel-list nil
1785 "Server channel list.")
1786 (make-variable-buffer-local 'erc-channel-list)
1787
1788 (defvar erc-bad-nick nil
1789 "Non-nil indicates that we got a `nick in use' error while connecting.")
1790 (make-variable-buffer-local 'erc-bad-nick)
1791
1792 (defvar erc-logged-in nil
1793 "Non-nil indicates that we are logged in.")
1794 (make-variable-buffer-local 'erc-logged-in)
1795
1796 (defvar erc-default-nicks nil
1797 "The local copy of `erc-nick' - the list of nicks to choose from.")
1798 (make-variable-buffer-local 'erc-default-nicks)
1799
1800 (defvar erc-nick-change-attempt-count 0
1801 "Used to keep track of how many times an attempt at changing nick is made.")
1802 (make-variable-buffer-local 'erc-nick-change-attempt-count)
1803
1804 (defun erc-migrate-modules (mods)
1805 "Migrate old names of ERC modules to new ones."
1806 ;; modify `transforms' to specify what needs to be changed
1807 ;; each item is in the format '(old . new)
1808 (let ((transforms '((pcomplete . completion))))
1809 (erc-delete-dups
1810 (mapcar (lambda (m) (or (cdr (assoc m transforms)) m))
1811 mods))))
1812
1813 (defcustom erc-modules '(netsplit fill button match track completion readonly
1814 networks ring autojoin noncommands irccontrols
1815 move-to-prompt stamp menu list)
1816 "A list of modules which ERC should enable.
1817 If you set the value of this without using `customize' remember to call
1818 \(erc-update-modules) after you change it. When using `customize', modules
1819 removed from the list will be disabled."
1820 :get (lambda (sym)
1821 ;; replace outdated names with their newer equivalents
1822 (erc-migrate-modules (symbol-value sym)))
1823 :set (lambda (sym val)
1824 ;; disable modules which have just been removed
1825 (when (and (boundp 'erc-modules) erc-modules val)
1826 (dolist (module erc-modules)
1827 (unless (member module val)
1828 (let ((f (intern-soft (format "erc-%s-mode" module))))
1829 (when (and (fboundp f) (boundp f) (symbol-value f))
1830 (message "Disabling `erc-%s'" module)
1831 (funcall f 0))))))
1832 (set sym val)
1833 ;; this test is for the case where erc hasn't been loaded yet
1834 (when (fboundp 'erc-update-modules)
1835 (erc-update-modules)))
1836 :type
1837 '(set
1838 :greedy t
1839 (const :tag "autoaway: Set away status automatically" autoaway)
1840 (const :tag "autojoin: Join channels automatically" autojoin)
1841 (const :tag "button: Buttonize URLs, nicknames, and other text" button)
1842 (const :tag "capab: Mark unidentified users on servers supporting CAPAB"
1843 capab-identify)
1844 (const :tag "completion: Complete nicknames and commands (programmable)"
1845 completion)
1846 (const :tag "hecomplete: Complete nicknames and commands (obsolete, use \"completion\")" hecomplete)
1847 (const :tag "dcc: Provide Direct Client-to-Client support" dcc)
1848 (const :tag "fill: Wrap long lines" fill)
1849 (const :tag "identd: Launch an identd server on port 8113" identd)
1850 (const :tag "irccontrols: Highlight or remove IRC control characters"
1851 irccontrols)
1852 (const :tag "keep-place: Leave point above un-viewed text" keep-place)
1853 (const :tag "list: List channels in a separate buffer" list)
1854 (const :tag "log: Save buffers in logs" log)
1855 (const :tag "match: Highlight pals, fools, and other keywords" match)
1856 (const :tag "menu: Display a menu in ERC buffers" menu)
1857 (const :tag "move-to-prompt: Move to the prompt when typing text"
1858 move-to-prompt)
1859 (const :tag "netsplit: Detect netsplits" netsplit)
1860 (const :tag "networks: Provide data about IRC networks" networks)
1861 (const :tag "noncommands: Don't display non-IRC commands after evaluation"
1862 noncommands)
1863 (const :tag
1864 "notify: Notify when the online status of certain users changes"
1865 notify)
1866 (const :tag "notifications: Send notifications on PRIVMSG or nickname mentions"
1867 notifications)
1868 (const :tag "page: Process CTCP PAGE requests from IRC" page)
1869 (const :tag "readonly: Make displayed lines read-only" readonly)
1870 (const :tag "replace: Replace text in messages" replace)
1871 (const :tag "ring: Enable an input history" ring)
1872 (const :tag "scrolltobottom: Scroll to the bottom of the buffer"
1873 scrolltobottom)
1874 (const :tag "services: Identify to Nickserv (IRC Services) automatically"
1875 services)
1876 (const :tag "smiley: Convert smileys to pretty icons" smiley)
1877 (const :tag "sound: Play sounds when you receive CTCP SOUND requests"
1878 sound)
1879 (const :tag "stamp: Add timestamps to messages" stamp)
1880 (const :tag "spelling: Check spelling" spelling)
1881 (const :tag "track: Track channel activity in the mode-line" track)
1882 (const :tag "truncate: Truncate buffers to a certain size" truncate)
1883 (const :tag "unmorse: Translate morse code in messages" unmorse)
1884 (const :tag "xdcc: Act as an XDCC file-server" xdcc)
1885 (repeat :tag "Others" :inline t symbol))
1886 :group 'erc)
1887
1888 (defun erc-update-modules ()
1889 "Run this to enable erc-foo-mode for all modules in `erc-modules'."
1890 (let (req)
1891 (dolist (mod erc-modules)
1892 (setq req (concat "erc-" (symbol-name mod)))
1893 (cond
1894 ;; yuck. perhaps we should bring the filenames into sync?
1895 ((string= req "erc-capab-identify")
1896 (setq req "erc-capab"))
1897 ((string= req "erc-completion")
1898 (setq req "erc-pcomplete"))
1899 ((string= req "erc-pcomplete")
1900 (setq mod 'completion))
1901 ((string= req "erc-autojoin")
1902 (setq req "erc-join")))
1903 (condition-case nil
1904 (require (intern req))
1905 (error nil))
1906 (let ((sym (intern-soft (concat "erc-" (symbol-name mod) "-mode"))))
1907 (if (fboundp sym)
1908 (funcall sym 1)
1909 (error "`%s' is not a known ERC module" mod))))))
1910
1911 (defun erc-setup-buffer (buffer)
1912 "Consults `erc-join-buffer' to find out how to display `BUFFER'."
1913 (cond ((eq erc-join-buffer 'window)
1914 (if (active-minibuffer-window)
1915 (display-buffer buffer)
1916 (switch-to-buffer-other-window buffer)))
1917 ((eq erc-join-buffer 'window-noselect)
1918 (display-buffer buffer))
1919 ((eq erc-join-buffer 'bury)
1920 nil)
1921 ((eq erc-join-buffer 'frame)
1922 (when (or (not erc-reuse-frames)
1923 (not (get-buffer-window buffer t)))
1924 ((lambda (frame)
1925 (raise-frame frame)
1926 (select-frame frame))
1927 (make-frame (or erc-frame-alist
1928 default-frame-alist)))
1929 (switch-to-buffer buffer)
1930 (when erc-frame-dedicated-flag
1931 (set-window-dedicated-p (selected-window) t))))
1932 (t
1933 (if (active-minibuffer-window)
1934 (display-buffer buffer)
1935 (switch-to-buffer buffer)))))
1936
1937 (defun erc-open (&optional server port nick full-name
1938 connect passwd tgt-list channel process)
1939 "Connect to SERVER on PORT as NICK with FULL-NAME.
1940
1941 If CONNECT is non-nil, connect to the server. Otherwise assume
1942 already connected and just create a separate buffer for the new
1943 target CHANNEL.
1944
1945 Use PASSWD as user password on the server. If TGT-LIST is
1946 non-nil, use it to initialize `erc-default-recipients'.
1947
1948 Returns the buffer for the given server or channel."
1949 (let ((server-announced-name (when (and (boundp 'erc-session-server)
1950 (string= server erc-session-server))
1951 erc-server-announced-name))
1952 (connected-p (unless connect erc-server-connected))
1953 (buffer (erc-get-buffer-create server port channel))
1954 (old-buffer (current-buffer))
1955 old-point
1956 continued-session)
1957 (when connect (run-hook-with-args 'erc-before-connect server port nick))
1958 (erc-update-modules)
1959 (set-buffer buffer)
1960 (setq old-point (point))
1961 (erc-mode)
1962 (setq erc-server-announced-name server-announced-name)
1963 (setq erc-server-connected connected-p)
1964 ;; connection parameters
1965 (setq erc-server-process process)
1966 (setq erc-insert-marker (make-marker))
1967 (setq erc-input-marker (make-marker))
1968 ;; go to the end of the buffer and open a new line
1969 ;; (the buffer may have existed)
1970 (goto-char (point-max))
1971 (forward-line 0)
1972 (when (get-text-property (point) 'erc-prompt)
1973 (setq continued-session t)
1974 (set-marker erc-input-marker
1975 (or (next-single-property-change (point) 'erc-prompt)
1976 (point-max))))
1977 (unless continued-session
1978 (goto-char (point-max))
1979 (insert "\n"))
1980 (set-marker erc-insert-marker (point))
1981 ;; stack of default recipients
1982 (setq erc-default-recipients tgt-list)
1983 (setq erc-server-current-nick nil)
1984 ;; Initialize erc-server-users and erc-channel-users
1985 (if connect
1986 (progn ;; server buffer
1987 (setq erc-server-users
1988 (make-hash-table :test 'equal))
1989 (setq erc-channel-users nil))
1990 (progn ;; target buffer
1991 (setq erc-server-users nil)
1992 (setq erc-channel-users
1993 (make-hash-table :test 'equal))))
1994 ;; clear last incomplete line read
1995 (setq erc-server-filter-data nil)
1996 (setq erc-channel-topic "")
1997 ;; limit on the number of users on the channel (mode +l)
1998 (setq erc-channel-user-limit nil)
1999 (setq erc-channel-key nil)
2000 ;; last active buffer, defaults to this one
2001 (erc-set-active-buffer buffer)
2002 ;; last invitation channel
2003 (setq erc-invitation nil)
2004 ;; Server channel list
2005 (setq erc-channel-list ())
2006 ;; login-time 'nick in use' error
2007 (setq erc-bad-nick nil)
2008 ;; whether we have logged in
2009 (setq erc-logged-in nil)
2010 ;; The local copy of `erc-nick' - the list of nicks to choose
2011 (setq erc-default-nicks (if (consp erc-nick) erc-nick (list erc-nick)))
2012 ;; password stuff
2013 (setq erc-session-password (or passwd
2014 (let ((secret
2015 (plist-get
2016 (nth 0
2017 (auth-source-search :host server
2018 :max 1
2019 :user nick
2020 :port port
2021 :require '(:secret)))
2022 :secret)))
2023 (if (functionp secret)
2024 (funcall secret)
2025 secret))))
2026 ;; debug output buffer
2027 (setq erc-dbuf
2028 (when erc-log-p
2029 (get-buffer-create (concat "*ERC-DEBUG: " server "*"))))
2030 ;; set up prompt
2031 (unless continued-session
2032 (goto-char (point-max))
2033 (insert "\n"))
2034 (if continued-session
2035 (goto-char old-point)
2036 (set-marker erc-insert-marker (point))
2037 (erc-display-prompt)
2038 (goto-char (point-max)))
2039
2040 (erc-determine-parameters server port nick full-name)
2041
2042 ;; Saving log file on exit
2043 (run-hook-with-args 'erc-connect-pre-hook buffer)
2044
2045 (when connect
2046 (erc-server-connect erc-session-server erc-session-port buffer))
2047 (erc-update-mode-line)
2048
2049 ;; Now display the buffer in a window as per user wishes.
2050 (unless (eq buffer old-buffer)
2051 (when erc-log-p
2052 ;; we can't log to debug buffer, it may not exist yet
2053 (message "erc: old buffer %s, switching to %s"
2054 old-buffer buffer))
2055 (erc-setup-buffer buffer))
2056
2057 buffer))
2058
2059 (defun erc-initialize-log-marker (buffer)
2060 "Initialize the `erc-last-saved-position' marker to a sensible position.
2061 BUFFER is the current buffer."
2062 (with-current-buffer buffer
2063 (setq erc-last-saved-position (make-marker))
2064 (move-marker erc-last-saved-position
2065 (1- (marker-position erc-insert-marker)))))
2066
2067 ;; interactive startup
2068
2069 (defvar erc-server-history-list nil
2070 "IRC server interactive selection history list.")
2071
2072 (defvar erc-nick-history-list nil
2073 "Nickname interactive selection history list.")
2074
2075 (defun erc-already-logged-in (server port nick)
2076 "Return the buffers corresponding to a NICK on PORT of a session SERVER.
2077 This is determined by looking for the appropriate buffer and checking
2078 whether the connection is still alive.
2079 If no buffer matches, return nil."
2080 (erc-buffer-list
2081 (lambda ()
2082 (and (erc-server-process-alive)
2083 (string= erc-session-server server)
2084 (erc-port-equal erc-session-port port)
2085 (erc-current-nick-p nick)))))
2086
2087 (if (not (fboundp 'read-passwd))
2088 (defun read-passwd (prompt)
2089 "Substitute for `read-passwd' in early emacsen."
2090 (read-from-minibuffer prompt)))
2091
2092 (defcustom erc-before-connect nil
2093 "Hook called before connecting to a server.
2094 This hook gets executed before `erc' actually invokes `erc-mode'
2095 with your input data. The functions in here get called with three
2096 parameters, SERVER, PORT and NICK."
2097 :group 'erc-hooks
2098 :type 'hook)
2099
2100 (defcustom erc-after-connect nil
2101 "Hook called after connecting to a server.
2102 This hook gets executed when an end of MOTD has been received. All
2103 functions in here get called with the parameters SERVER and NICK."
2104 :group 'erc-hooks
2105 :type 'hook)
2106
2107 ;;;###autoload
2108 (defun erc-select-read-args ()
2109 "Prompt the user for values of nick, server, port, and password."
2110 (let (user-input server port nick passwd)
2111 (setq user-input (read-from-minibuffer
2112 "IRC server: "
2113 (erc-compute-server) nil nil 'erc-server-history-list))
2114
2115 (if (string-match "\\(.*\\):\\(.*\\)\\'" user-input)
2116 (setq port (erc-string-to-port (match-string 2 user-input))
2117 user-input (match-string 1 user-input))
2118 (setq port
2119 (erc-string-to-port (read-from-minibuffer
2120 "IRC port: " (erc-port-to-string
2121 (erc-compute-port))))))
2122
2123 (if (string-match "\\`\\(.*\\)@\\(.*\\)" user-input)
2124 (setq nick (match-string 1 user-input)
2125 user-input (match-string 2 user-input))
2126 (setq nick
2127 (if (erc-already-logged-in server port nick)
2128 (read-from-minibuffer
2129 (erc-format-message 'nick-in-use ?n nick)
2130 nick
2131 nil nil 'erc-nick-history-list)
2132 (read-from-minibuffer
2133 "Nickname: " (erc-compute-nick nick)
2134 nil nil 'erc-nick-history-list))))
2135
2136 (setq server user-input)
2137
2138 (setq passwd (if erc-prompt-for-password
2139 (if (and erc-password
2140 (y-or-n-p "Use the default password? "))
2141 erc-password
2142 (read-passwd "Password: "))
2143 erc-password))
2144 (when (and passwd (string= "" passwd))
2145 (setq passwd nil))
2146
2147 (while (erc-already-logged-in server port nick)
2148 ;; hmm, this is a problem when using multiple connections to a bnc
2149 ;; with the same nick. Currently this code prevents using more than one
2150 ;; bnc with the same nick. actually it would be nice to have
2151 ;; bncs transparent, so that erc-compute-buffer-name displays
2152 ;; the server one is connected to.
2153 (setq nick (read-from-minibuffer
2154 (erc-format-message 'nick-in-use ?n nick)
2155 nick
2156 nil nil 'erc-nick-history-list)))
2157 (list :server server :port port :nick nick :password passwd)))
2158
2159 ;;;###autoload
2160 (defun* erc (&key (server (erc-compute-server))
2161 (port (erc-compute-port))
2162 (nick (erc-compute-nick))
2163 password
2164 (full-name (erc-compute-full-name)))
2165 "ERC is a powerful, modular, and extensible IRC client.
2166 This function is the main entry point for ERC.
2167
2168 It permits you to select connection parameters, and then starts ERC.
2169
2170 Non-interactively, it takes the keyword arguments
2171 (server (erc-compute-server))
2172 (port (erc-compute-port))
2173 (nick (erc-compute-nick))
2174 password
2175 (full-name (erc-compute-full-name)))
2176
2177 That is, if called with
2178
2179 (erc :server \"irc.freenode.net\" :full-name \"Harry S Truman\")
2180
2181 then the server and full-name will be set to those values, whereas
2182 `erc-compute-port', `erc-compute-nick' and `erc-compute-full-name' will
2183 be invoked for the values of the other parameters."
2184 (interactive (erc-select-read-args))
2185 (erc-open server port nick full-name t password))
2186
2187 ;;;###autoload
2188 (defalias 'erc-select 'erc)
2189 (defalias 'erc-ssl 'erc-tls)
2190
2191 ;;;###autoload
2192 (defun erc-tls (&rest r)
2193 "Interactively select TLS connection parameters and run ERC.
2194 Arguments are the same as for `erc'."
2195 (interactive (erc-select-read-args))
2196 (let ((erc-server-connect-function 'erc-open-tls-stream))
2197 (apply 'erc r)))
2198
2199 (defun erc-open-tls-stream (name buffer host port)
2200 "Open an TLS stream to an IRC server.
2201 The process will be given the name NAME, its target buffer will be
2202 BUFFER. HOST and PORT specify the connection target."
2203 (open-network-stream name buffer host port
2204 :type 'tls))
2205
2206 ;;; Displaying error messages
2207
2208 (defun erc-error (&rest args)
2209 "Pass ARGS to `format', and display the result as an error message.
2210 If `debug-on-error' is set to non-nil, then throw a real error with this
2211 message instead, to make debugging easier."
2212 (if debug-on-error
2213 (apply #'error args)
2214 (apply #'message args)
2215 (beep)))
2216
2217 ;;; Debugging the protocol
2218
2219 (defvar erc-debug-irc-protocol nil
2220 "If non-nil, log all IRC protocol traffic to the buffer \"*erc-protocol*\".
2221
2222 The buffer is created if it doesn't exist.
2223
2224 NOTE: If this variable is non-nil, and you kill the only
2225 visible \"*erc-protocol*\" buffer, it will be recreated shortly,
2226 but you won't see it.
2227
2228 WARNING: Do not set this variable directly! Instead, use the
2229 function `erc-toggle-debug-irc-protocol' to toggle its value.")
2230
2231 (declare-function erc-network-name "erc-networks" ())
2232
2233 (defun erc-log-irc-protocol (string &optional outbound)
2234 "Append STRING to the buffer *erc-protocol*.
2235
2236 This only has any effect if `erc-debug-irc-protocol' is non-nil.
2237
2238 The buffer is created if it doesn't exist.
2239
2240 If OUTBOUND is non-nil, STRING is being sent to the IRC server
2241 and appears in face `erc-input-face' in the buffer."
2242 (when erc-debug-irc-protocol
2243 (let ((network-name (or (ignore-errors (erc-network-name))
2244 "???")))
2245 (with-current-buffer (get-buffer-create "*erc-protocol*")
2246 (save-excursion
2247 (goto-char (point-max))
2248 (let ((inhibit-read-only t))
2249 (insert (if (not outbound)
2250 ;; Cope with the fact that string might
2251 ;; contain multiple lines of text.
2252 (let ((lines (delete "" (split-string string
2253 "\n\\|\r\n")))
2254 (result ""))
2255 (dolist (line lines)
2256 (setq result (concat result network-name
2257 " << " line "\n")))
2258 result)
2259 (erc-propertize
2260 (concat network-name " >> " string
2261 (if (/= ?\n
2262 (aref string
2263 (1- (length string))))
2264 "\n"))
2265 'face 'erc-input-face)))))
2266 (let ((orig-win (selected-window))
2267 (debug-buffer-window (get-buffer-window (current-buffer) t)))
2268 (when debug-buffer-window
2269 (select-window debug-buffer-window)
2270 (when (= 1 (count-lines (point) (point-max)))
2271 (goto-char (point-max))
2272 (recenter -1))
2273 (select-window orig-win)))))))
2274
2275 (defun erc-toggle-debug-irc-protocol (&optional arg)
2276 "Toggle the value of `erc-debug-irc-protocol'.
2277
2278 If ARG is non-nil, show the *erc-protocol* buffer."
2279 (interactive "P")
2280 (let* ((buf (get-buffer-create "*erc-protocol*")))
2281 (with-current-buffer buf
2282 (erc-view-mode-enter)
2283 (when (null (current-local-map))
2284 (let ((inhibit-read-only t))
2285 (insert (erc-make-notice "This buffer displays all IRC protocol traffic exchanged with each server.\n"))
2286 (insert (erc-make-notice "Kill this buffer to terminate protocol logging.\n\n")))
2287 (use-local-map (make-sparse-keymap))
2288 (local-set-key (kbd "t") 'erc-toggle-debug-irc-protocol))
2289 (add-hook 'kill-buffer-hook
2290 #'(lambda () (setq erc-debug-irc-protocol nil))
2291 nil 'local)
2292 (goto-char (point-max))
2293 (let ((inhibit-read-only t))
2294 (insert (erc-make-notice
2295 (format "IRC protocol logging %s at %s -- Press `t' to toggle logging.\n"
2296 (if erc-debug-irc-protocol "disabled" "enabled")
2297 (current-time-string))))))
2298 (setq erc-debug-irc-protocol (not erc-debug-irc-protocol))
2299 (if (and arg
2300 (not (get-buffer-window "*erc-protocol*" t)))
2301 (display-buffer buf t))
2302 (message "IRC protocol traffic logging %s (see buffer *erc-protocol*)."
2303 (if erc-debug-irc-protocol "enabled" "disabled"))))
2304
2305 ;;; I/O interface
2306
2307 ;; send interface
2308
2309 (defun erc-send-action (tgt str &optional force)
2310 "Send CTCP ACTION information described by STR to TGT."
2311 (erc-send-ctcp-message tgt (format "ACTION %s" str) force)
2312 (erc-display-message
2313 nil 'input (current-buffer)
2314 'ACTION ?n (erc-current-nick) ?a str ?u "" ?h ""))
2315
2316 ;; Display interface
2317
2318 (defun erc-string-invisible-p (string)
2319 "Check whether STRING is invisible or not.
2320 I.e. any char in it has the `invisible' property set."
2321 (text-property-any 0 (length string) 'invisible t string))
2322
2323 (defcustom erc-remove-parsed-property t
2324 "Whether to remove the erc-parsed text property after displaying a message.
2325
2326 The default is to remove it, since it causes ERC to take up extra
2327 memory. If you have code that relies on this property, then set
2328 this option to nil."
2329 :type 'boolean
2330 :group 'erc)
2331
2332 (defun erc-display-line-1 (string buffer)
2333 "Display STRING in `erc-mode' BUFFER.
2334 Auxiliary function used in `erc-display-line'. The line gets filtered to
2335 interpret the control characters. Then, `erc-insert-pre-hook' gets called.
2336 If `erc-insert-this' is still t, STRING gets inserted into the buffer.
2337 Afterwards, `erc-insert-modify' and `erc-insert-post-hook' get called.
2338 If STRING is nil, the function does nothing."
2339 (when string
2340 (with-current-buffer (or buffer (process-buffer erc-server-process))
2341 (let ((insert-position (or (marker-position erc-insert-marker)
2342 (point-max))))
2343 (let ((string string) ;; FIXME! Can this be removed?
2344 (buffer-undo-list t)
2345 (inhibit-read-only t))
2346 (unless (string-match "\n$" string)
2347 (setq string (concat string "\n"))
2348 (when (erc-string-invisible-p string)
2349 (erc-put-text-properties 0 (length string)
2350 '(invisible intangible) string)))
2351 (erc-log (concat "erc-display-line: " string
2352 (format "(%S)" string) " in buffer "
2353 (format "%s" buffer)))
2354 (setq erc-insert-this t)
2355 (run-hook-with-args 'erc-insert-pre-hook string)
2356 (if (null erc-insert-this)
2357 ;; Leave erc-insert-this set to t as much as possible. Fran
2358 ;; Litterio <franl> has seen erc-insert-this set to nil while
2359 ;; erc-send-pre-hook is running, which should never happen. This
2360 ;; may cure it.
2361 (setq erc-insert-this t)
2362 (save-excursion ;; to restore point in the new buffer
2363 (save-restriction
2364 (widen)
2365 (goto-char insert-position)
2366 (insert-before-markers string)
2367 ;; run insertion hook, with point at restored location
2368 (save-restriction
2369 (narrow-to-region insert-position (point))
2370 (run-hooks 'erc-insert-modify-hook)
2371 (run-hooks 'erc-insert-post-hook)
2372 (when erc-remove-parsed-property
2373 (remove-text-properties (point-min) (point-max)
2374 '(erc-parsed nil))))))))
2375 (erc-update-undo-list (- (or (marker-position erc-insert-marker)
2376 (point-max))
2377 insert-position))))))
2378
2379 (defun erc-update-undo-list (shift)
2380 ;; Translate buffer positions in buffer-undo-list by SHIFT.
2381 (unless (or (zerop shift) (atom buffer-undo-list))
2382 (let ((list buffer-undo-list) elt)
2383 (while list
2384 (setq elt (car list))
2385 (cond ((integerp elt) ; POSITION
2386 (incf (car list) shift))
2387 ((or (atom elt) ; nil, EXTENT
2388 ;; (eq t (car elt)) ; (t . TIME)
2389 (markerp (car elt))) ; (MARKER . DISTANCE)
2390 nil)
2391 ((integerp (car elt)) ; (BEGIN . END)
2392 (incf (car elt) shift)
2393 (incf (cdr elt) shift))
2394 ((stringp (car elt)) ; (TEXT . POSITION)
2395 (incf (cdr elt) (* (if (natnump (cdr elt)) 1 -1) shift)))
2396 ((null (car elt)) ; (nil PROPERTY VALUE BEG . END)
2397 (let ((cons (nthcdr 3 elt)))
2398 (incf (car cons) shift)
2399 (incf (cdr cons) shift)))
2400 ((and (featurep 'xemacs)
2401 (extentp (car elt))) ; (EXTENT START END)
2402 (incf (nth 1 elt) shift)
2403 (incf (nth 2 elt) shift)))
2404 (setq list (cdr list))))))
2405
2406 (defvar erc-valid-nick-regexp "[]a-zA-Z^[;\\`_{}|][]^[;\\`_{}|a-zA-Z0-9-]*"
2407 "Regexp which matches all valid characters in a IRC nickname.")
2408
2409 (defun erc-is-valid-nick-p (nick)
2410 "Check if NICK is a valid IRC nickname."
2411 (string-match (concat "^" erc-valid-nick-regexp "$") nick))
2412
2413 (defun erc-display-line (string &optional buffer)
2414 "Display STRING in the ERC BUFFER.
2415 All screen output must be done through this function. If BUFFER is nil
2416 or omitted, the default ERC buffer for the `erc-session-server' is used.
2417 The BUFFER can be an actual buffer, a list of buffers, 'all or 'active.
2418 If BUFFER = 'all, the string is displayed in all the ERC buffers for the
2419 current session. 'active means the current active buffer
2420 \(`erc-active-buffer'). If the buffer can't be resolved, the current
2421 buffer is used. `erc-display-line-1' is used to display STRING.
2422
2423 If STRING is nil, the function does nothing."
2424 (let ((inhibit-point-motion-hooks t)
2425 new-bufs)
2426 (dolist (buf (cond
2427 ((bufferp buffer) (list buffer))
2428 ((listp buffer) buffer)
2429 ((processp buffer) (list (process-buffer buffer)))
2430 ((eq 'all buffer)
2431 ;; Hmm, or all of the same session server?
2432 (erc-buffer-list nil erc-server-process))
2433 ((and (eq 'active buffer) (erc-active-buffer))
2434 (list (erc-active-buffer)))
2435 ((erc-server-buffer-live-p)
2436 (list (process-buffer erc-server-process)))
2437 (t (list (current-buffer)))))
2438 (when (buffer-live-p buf)
2439 (erc-display-line-1 string buf)
2440 (add-to-list 'new-bufs buf)))
2441 (when (null new-bufs)
2442 (if (erc-server-buffer-live-p)
2443 (erc-display-line-1 string (process-buffer erc-server-process))
2444 (erc-display-line-1 string (current-buffer))))))
2445
2446 (defun erc-display-message-highlight (type string)
2447 "Highlight STRING according to TYPE, where erc-TYPE-face is an ERC face.
2448
2449 See also `erc-make-notice'."
2450 (cond ((eq type 'notice)
2451 (erc-make-notice string))
2452 (t
2453 (erc-put-text-property
2454 0 (length string)
2455 'face (or (intern-soft
2456 (concat "erc-" (symbol-name type) "-face"))
2457 "erc-default-face")
2458 string)
2459 string)))
2460
2461 (defvar erc-lurker-state nil
2462 "Track the time of the last PRIVMSG for each (server,nick) pair.
2463
2464 This is implemented as a hash of hashes, where the outer key is
2465 the canonicalized server name (as returned by
2466 `erc-canonicalize-server-name') and the outer value is a hash
2467 table mapping nicks (as returned by `erc-lurker-maybe-trim') to
2468 the times of their most recently received PRIVMSG on any channel
2469 on the given server.")
2470
2471 (defcustom erc-lurker-trim-nicks t
2472 "If t, trim trailing `erc-lurker-ignore-chars' from nicks.
2473
2474 This causes e.g. nick and nick` to be considered as the same
2475 individual for activity tracking and lurkiness detection
2476 purposes."
2477 :group 'erc-lurker
2478 :type 'boolean)
2479
2480 (defun erc-lurker-maybe-trim (nick)
2481 "Maybe trim trailing `erc-lurker-ignore-chars' from NICK.
2482
2483 Returns NICK unmodified unless `erc-lurker-trim-nicks' is
2484 non-nil."
2485 (if erc-lurker-trim-nicks
2486 (replace-regexp-in-string
2487 (format "[%s]"
2488 (mapconcat (lambda (char)
2489 (regexp-quote (char-to-string char)))
2490 erc-lurker-ignore-chars ""))
2491 "" nick)
2492 nick))
2493
2494 (defcustom erc-lurker-ignore-chars "`_"
2495 "Characters at the end of a nick to strip for activity tracking purposes.
2496
2497 See also `erc-lurker-trim-nicks'."
2498 :group 'erc-lurker
2499 :type 'string)
2500
2501 (defcustom erc-lurker-hide-list nil
2502 "List of IRC type messages to hide when sent by lurkers.
2503
2504 A typical value would be '(\"JOIN\" \"PART\" \"QUIT\").
2505 See also `erc-lurker-p' and `erc-hide-list'."
2506 :group 'erc-lurker
2507 :type 'erc-message-type)
2508
2509 (defcustom erc-lurker-threshold-time (* 60 60 24) ; 24h by default
2510 "Nicks from which no PRIVMSGs have been received within this
2511 interval (in units of seconds) are considered lurkers by
2512 `erc-lurker-p' and as a result their messages of types in
2513 `erc-lurker-hide-list' will be hidden."
2514 :group 'erc-lurker
2515 :type 'integer)
2516
2517 (defun erc-lurker-initialize ()
2518 "Initialize ERC lurker tracking functionality.
2519
2520 This function adds `erc-lurker-update-status' to
2521 `erc-insert-pre-hook' in order to record the time of each nick's
2522 most recent PRIVMSG as well as initializing the state variable
2523 storing this information."
2524 (setq erc-lurker-state (make-hash-table :test 'equal))
2525 (add-hook 'erc-insert-pre-hook 'erc-lurker-update-status))
2526
2527 (defun erc-lurker-cleanup ()
2528 "Remove all last PRIVMSG state older than `erc-lurker-threshold-time'.
2529
2530 This should be called regularly to avoid excessive resource
2531 consumption for long-lived IRC or Emacs sessions."
2532 (maphash
2533 (lambda (server hash)
2534 (maphash
2535 (lambda (nick last-PRIVMSG-time)
2536 (when
2537 (> (time-to-seconds (time-subtract
2538 (current-time)
2539 last-PRIVMSG-time))
2540 erc-lurker-threshold-time)
2541 (remhash nick hash)))
2542 hash)
2543 (if (zerop (hash-table-count hash))
2544 (remhash server erc-lurker-state)))
2545 erc-lurker-state))
2546
2547 (defvar erc-lurker-cleanup-count 0
2548 "Internal counter variable for use with `erc-lurker-cleanup-interval'.")
2549
2550 (defvar erc-lurker-cleanup-interval 100
2551 "Specifies frequency of cleaning up stale erc-lurker state.
2552
2553 `erc-lurker-update-status' calls `erc-lurker-cleanup' once for
2554 every `erc-lurker-cleanup-interval' updates to
2555 `erc-lurker-state'. This is designed to limit the memory
2556 consumption of lurker state during long Emacs sessions and/or ERC
2557 sessions with large numbers of incoming PRIVMSGs.")
2558
2559 (defun erc-lurker-update-status (message)
2560 "Update `erc-lurker-state' if necessary.
2561
2562 This function is called from `erc-insert-pre-hook'. If the
2563 current message is a PRIVMSG, update `erc-lurker-state' to
2564 reflect the fact that its sender has issued a PRIVMSG at the
2565 current time. Otherwise, take no action.
2566
2567 This function depends on the fact that `erc-display-message'
2568 dynamically binds `parsed', which is used to check if the current
2569 message is a PRIVMSG and to determine its sender. See also
2570 `erc-lurker-trim-nicks' and `erc-lurker-ignore-chars'.
2571
2572 In order to limit memory consumption, this function also calls
2573 `erc-lurker-cleanup' once every `erc-lurker-cleanup-interval'
2574 updates of `erc-lurker-state'."
2575 (when (and (boundp 'parsed) (erc-response-p parsed))
2576 (let* ((command (erc-response.command parsed))
2577 (sender
2578 (erc-lurker-maybe-trim
2579 (car (erc-parse-user (erc-response.sender parsed)))))
2580 (server
2581 (erc-canonicalize-server-name erc-server-announced-name)))
2582 (when (equal command "PRIVMSG")
2583 (when (>= (incf erc-lurker-cleanup-count) erc-lurker-cleanup-interval)
2584 (setq erc-lurker-cleanup-count 0)
2585 (erc-lurker-cleanup))
2586 (unless (gethash server erc-lurker-state)
2587 (puthash server (make-hash-table :test 'equal) erc-lurker-state))
2588 (puthash sender (current-time)
2589 (gethash server erc-lurker-state))))))
2590
2591 (defun erc-lurker-p (nick)
2592 "Predicate indicating NICK's lurking status on the current server.
2593
2594 Lurking is the condition where NICK has issued no PRIVMSG on this
2595 server within `erc-lurker-threshold-time'. See also
2596 `erc-lurker-trim-nicks' and `erc-lurker-ignore-chars'."
2597 (unless erc-lurker-state (erc-lurker-initialize))
2598 (let* ((server
2599 (erc-canonicalize-server-name erc-server-announced-name))
2600 (last-PRIVMSG-time
2601 (gethash (erc-lurker-maybe-trim nick)
2602 (gethash server erc-lurker-state (make-hash-table)))))
2603 (or (null last-PRIVMSG-time)
2604 (> (time-to-seconds
2605 (time-subtract (current-time) last-PRIVMSG-time))
2606 erc-lurker-threshold-time))))
2607
2608 (defun erc-canonicalize-server-name (server)
2609 "Returns the canonical network name for SERVER if any,
2610 otherwise `erc-server-announced-name'. SERVER is matched against
2611 `erc-common-server-suffixes'."
2612 (when server
2613 (or (cdar (erc-remove-if-not
2614 (lambda (net) (string-match (car net) server))
2615 erc-common-server-suffixes))
2616 erc-server-announced-name)))
2617
2618 (defun erc-hide-current-message-p (parsed)
2619 "Predicate indicating whether the parsed ERC response PARSED should be hidden.
2620
2621 Messages are always hidden if the message type of PARSED appears in
2622 `erc-hide-list'. In addition, messages whose type is a member of
2623 `erc-lurker-hide-list' are hidden if `erc-lurker-p' returns true."
2624 (let* ((command (erc-response.command parsed))
2625 (sender (car (erc-parse-user (erc-response.sender parsed)))))
2626 (or (member command erc-hide-list)
2627 (and (member command erc-lurker-hide-list) (erc-lurker-p sender)))))
2628
2629 (defun erc-display-message (parsed type buffer msg &rest args)
2630 "Display MSG in BUFFER.
2631
2632 ARGS, PARSED, and TYPE are used to format MSG sensibly.
2633
2634 See also `erc-format-message' and `erc-display-line'."
2635 (let ((string (if (symbolp msg)
2636 (apply 'erc-format-message msg args)
2637 msg)))
2638 (setq string
2639 (cond
2640 ((null type)
2641 string)
2642 ((listp type)
2643 (mapc (lambda (type)
2644 (setq string
2645 (erc-display-message-highlight type string)))
2646 type)
2647 string)
2648 ((symbolp type)
2649 (erc-display-message-highlight type string))))
2650
2651 (if (not (erc-response-p parsed))
2652 (erc-display-line string buffer)
2653 (unless (erc-hide-current-message-p parsed)
2654 (erc-put-text-property 0 (length string) 'erc-parsed parsed string)
2655 (erc-put-text-property 0 (length string) 'rear-sticky t string)
2656 (erc-display-line string buffer)))))
2657
2658 (defun erc-message-type-member (position list)
2659 "Return non-nil if the erc-parsed text-property at POSITION is in LIST.
2660
2661 This function relies on the erc-parsed text-property being
2662 present."
2663 (let ((prop-val (erc-get-parsed-vector position)))
2664 (and prop-val (member (erc-response.command prop-val) list))))
2665
2666 (defvar erc-send-input-line-function 'erc-send-input-line)
2667 (make-variable-buffer-local 'erc-send-input-line-function)
2668
2669 (defun erc-send-input-line (target line &optional force)
2670 "Send LINE to TARGET.
2671
2672 See also `erc-server-send'."
2673 (setq line (format "PRIVMSG %s :%s"
2674 target
2675 ;; If the line is empty, we still want to
2676 ;; send it - i.e. an empty pasted line.
2677 (if (string= line "\n")
2678 " \n"
2679 line)))
2680 (erc-server-send line force target))
2681
2682 (defun erc-get-arglist (fun)
2683 "Return the argument list of a function without the parens."
2684 (let ((arglist (format "%S" (erc-function-arglist fun))))
2685 (if (string-match "^(\\(.*\\))$" arglist)
2686 (match-string 1 arglist)
2687 arglist)))
2688
2689 (defun erc-command-no-process-p (str)
2690 "Return non-nil if STR is an ERC command that can be run when the process
2691 is not alive, nil otherwise."
2692 (let ((fun (erc-extract-command-from-line str)))
2693 (and fun
2694 (symbolp (car fun))
2695 (get (car fun) 'process-not-needed))))
2696
2697 (defun erc-command-name (cmd)
2698 "For CMD being the function name of a ERC command, something like
2699 erc-cmd-FOO, this returns a string /FOO."
2700 (let ((command-name (symbol-name cmd)))
2701 (if (string-match "^erc-cmd-\\(.*\\)$" command-name)
2702 (concat "/" (match-string 1 command-name))
2703 command-name)))
2704
2705 (defun erc-process-input-line (line &optional force no-command)
2706 "Translate LINE to an RFC1459 command and send it based.
2707 Returns non-nil if the command is actually sent to the server, and nil
2708 otherwise.
2709
2710 If the command in the LINE is not bound as a function `erc-cmd-<COMMAND>',
2711 it is passed to `erc-cmd-default'. If LINE is not a command (i.e. doesn't
2712 start with /<COMMAND>) then it is sent as a message.
2713
2714 An optional FORCE argument forces sending the line when flood
2715 protection is in effect. The optional NO-COMMAND argument prohibits
2716 this function from interpreting the line as a command."
2717 (let ((command-list (erc-extract-command-from-line line)))
2718 (if (and command-list
2719 (not no-command))
2720 (let* ((cmd (nth 0 command-list))
2721 (args (nth 1 command-list)))
2722 (condition-case nil
2723 (if (listp args)
2724 (apply cmd args)
2725 (funcall cmd args))
2726 (wrong-number-of-arguments
2727 (erc-display-message nil 'error (current-buffer) 'incorrect-args
2728 ?c (erc-command-name cmd)
2729 ?u (or (erc-get-arglist cmd)
2730 "")
2731 ?d (format "%s\n"
2732 (or (documentation cmd) "")))
2733 nil)))
2734 (let ((r (erc-default-target)))
2735 (if r
2736 (funcall erc-send-input-line-function r line force)
2737 (erc-display-message nil 'error (current-buffer) 'no-target)
2738 nil)))))
2739
2740 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2741 ;; Input commands handlers
2742 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2743
2744 (defun erc-cmd-AMSG (line)
2745 "Send LINE to all channels of the current server that you are on."
2746 (interactive "sSend to all channels you're on: ")
2747 (setq line (erc-trim-string line))
2748 (erc-with-all-buffers-of-server nil
2749 (lambda ()
2750 (erc-channel-p (erc-default-target)))
2751 (erc-send-message line)))
2752 (put 'erc-cmd-AMSG 'do-not-parse-args t)
2753
2754 (defun erc-cmd-SAY (line)
2755 "Send LINE to the current query or channel as a message, not a command.
2756
2757 Use this when you want to send a message with a leading '/'. Note
2758 that since multi-line messages are never a command, you don't
2759 need this when pasting multiple lines of text."
2760 (if (string-match "^\\s-*$" line)
2761 nil
2762 (string-match "^ ?\\(.*\\)" line)
2763 (erc-process-input-line (match-string 1 line) nil t)))
2764 (put 'erc-cmd-SAY 'do-not-parse-args t)
2765
2766 (defun erc-cmd-SET (line)
2767 "Set the variable named by the first word in LINE to some VALUE.
2768 VALUE is computed by evaluating the rest of LINE in Lisp."
2769 (cond
2770 ((string-match "^\\s-*\\(\\S-+\\)\\s-+\\(.*\\)$" line)
2771 (let ((var (read (concat "erc-" (match-string 1 line))))
2772 (val (read (match-string 2 line))))
2773 (if (boundp var)
2774 (progn
2775 (set var (eval val))
2776 (erc-display-message
2777 nil nil 'active (format "Set %S to %S" var val))
2778 t)
2779 (setq var (read (match-string 1 line)))
2780 (if (boundp var)
2781 (progn
2782 (set var (eval val))
2783 (erc-display-message
2784 nil nil 'active (format "Set %S to %S" var val))
2785 t)
2786 (erc-display-message nil 'error 'active 'variable-not-bound)
2787 nil))))
2788 ((string-match "^\\s-*$" line)
2789 (erc-display-line
2790 (concat "Available user variables:\n"
2791 (apply
2792 'concat
2793 (mapcar
2794 (lambda (var)
2795 (let ((val (symbol-value var)))
2796 (concat (format "%S:" var)
2797 (if (consp val)
2798 (concat "\n" (pp-to-string val))
2799 (format " %S\n" val)))))
2800 (apropos-internal "^erc-" 'custom-variable-p))))
2801 (current-buffer)) t)
2802 (t nil)))
2803 (defalias 'erc-cmd-VAR 'erc-cmd-SET)
2804 (defalias 'erc-cmd-VARIABLE 'erc-cmd-SET)
2805 (put 'erc-cmd-SET 'do-not-parse-args t)
2806 (put 'erc-cmd-SET 'process-not-needed t)
2807
2808 (defun erc-cmd-default (line)
2809 "Fallback command.
2810
2811 Commands for which no erc-cmd-xxx exists, are tunneled through
2812 this function. LINE is sent to the server verbatim, and
2813 therefore has to contain the command itself as well."
2814 (erc-log (format "cmd: DEFAULT: %s" line))
2815 (erc-server-send (substring line 1))
2816 t)
2817
2818 (defun erc-cmd-IGNORE (&optional user)
2819 "Ignore USER. This should be a regexp matching nick!user@host.
2820 If no USER argument is specified, list the contents of `erc-ignore-list'."
2821 (if user
2822 (let ((quoted (regexp-quote user)))
2823 (when (and (not (string= user quoted))
2824 (y-or-n-p (format "Use regexp-quoted form (%s) instead? "
2825 quoted)))
2826 (setq user quoted))
2827 (erc-display-line
2828 (erc-make-notice (format "Now ignoring %s" user))
2829 'active)
2830 (erc-with-server-buffer (add-to-list 'erc-ignore-list user)))
2831 (if (null (erc-with-server-buffer erc-ignore-list))
2832 (erc-display-line (erc-make-notice "Ignore list is empty") 'active)
2833 (erc-display-line (erc-make-notice "Ignore list:") 'active)
2834 (mapc #'(lambda (item)
2835 (erc-display-line (erc-make-notice item)
2836 'active))
2837 (erc-with-server-buffer erc-ignore-list))))
2838 t)
2839
2840 (defun erc-cmd-UNIGNORE (user)
2841 "Remove the user specified in USER from the ignore list."
2842 (let ((ignored-nick (car (erc-with-server-buffer
2843 (erc-member-ignore-case (regexp-quote user)
2844 erc-ignore-list)))))
2845 (unless ignored-nick
2846 (if (setq ignored-nick (erc-ignored-user-p user))
2847 (unless (y-or-n-p (format "Remove this regexp (%s)? "
2848 ignored-nick))
2849 (setq ignored-nick nil))
2850 (erc-display-line
2851 (erc-make-notice (format "%s is not currently ignored!" user))
2852 'active)))
2853 (when ignored-nick
2854 (erc-display-line
2855 (erc-make-notice (format "No longer ignoring %s" user))
2856 'active)
2857 (erc-with-server-buffer
2858 (setq erc-ignore-list (delete ignored-nick erc-ignore-list)))))
2859 t)
2860
2861 (defun erc-cmd-CLEAR ()
2862 "Clear the window content."
2863 (recenter 0)
2864 t)
2865 (put 'erc-cmd-CLEAR 'process-not-needed t)
2866
2867 (defun erc-cmd-OPS ()
2868 "Show the ops in the current channel."
2869 (interactive)
2870 (let ((ops nil))
2871 (if erc-channel-users
2872 (maphash (lambda (nick user-data)
2873 (let ((cuser (cdr user-data)))
2874 (if (and cuser
2875 (erc-channel-user-op cuser))
2876 (setq ops (cons (erc-server-user-nickname
2877 (car user-data))
2878 ops)))))
2879 erc-channel-users))
2880 (setq ops (sort ops 'string-lessp))
2881 (if ops
2882 (erc-display-message
2883 nil 'notice (current-buffer) 'ops
2884 ?i (length ops) ?s (if (> (length ops) 1) "s" "")
2885 ?o (mapconcat 'identity ops " "))
2886 (erc-display-message nil 'notice (current-buffer) 'ops-none)))
2887 t)
2888
2889 (defun erc-cmd-COUNTRY (tld)
2890 "Display the country associated with the top level domain TLD."
2891 (require 'mail-extr)
2892 (let ((co (ignore-errors (what-domain tld))))
2893 (if co
2894 (erc-display-message
2895 nil 'notice 'active 'country ?c co ?d tld)
2896 (erc-display-message
2897 nil 'notice 'active 'country-unknown ?d tld))
2898 t))
2899 (put 'erc-cmd-COUNTRY 'process-not-needed t)
2900
2901 (defun erc-cmd-AWAY (line)
2902 "Mark the user as being away, the reason being indicated by LINE.
2903 If no reason is given, unset away status."
2904 (when (string-match "^\\s-*\\(.*\\)$" line)
2905 (let ((reason (match-string 1 line)))
2906 (erc-log (format "cmd: AWAY: %s" reason))
2907 (erc-server-send
2908 (if (string= reason "")
2909 "AWAY"
2910 (concat "AWAY :" reason))))
2911 t))
2912 (put 'erc-cmd-AWAY 'do-not-parse-args t)
2913
2914 (defun erc-cmd-GAWAY (line)
2915 "Mark the user as being away everywhere, the reason being indicated by LINE."
2916 ;; on all server buffers.
2917 (erc-with-all-buffers-of-server nil
2918 #'erc-open-server-buffer-p
2919 (erc-cmd-AWAY line)))
2920 (put 'erc-cmd-GAWAY 'do-not-parse-args t)
2921
2922 (defun erc-cmd-CTCP (nick cmd &rest args)
2923 "Send a Client To Client Protocol message to NICK.
2924
2925 CMD is the CTCP command, possible values being ECHO, FINGER, CLIENTINFO, TIME,
2926 VERSION and so on. It is called with ARGS."
2927 (let ((str (concat cmd
2928 (when args
2929 (concat " " (mapconcat #'identity args " "))))))
2930 (erc-log (format "cmd: CTCP [%s]: [%s]" nick str))
2931 (erc-send-ctcp-message nick str)
2932 t))
2933
2934 (defun erc-cmd-HELP (&optional func)
2935 "Popup help information.
2936
2937 If FUNC contains a valid function or variable, help about that
2938 will be displayed. If FUNC is empty, display an apropos about
2939 ERC commands. Otherwise, do `apropos' in the ERC namespace
2940 \(\"erc-.*LINE\"\).
2941
2942 Examples:
2943 To find out about erc and bbdb, do
2944 /help bbdb.*
2945
2946 For help about the WHOIS command, do:
2947 /help whois
2948
2949 For a list of user commands (/join /part, ...):
2950 /help."
2951 (if func
2952 (let* ((sym (or (let ((sym (intern-soft
2953 (concat "erc-cmd-" (upcase func)))))
2954 (if (and sym (or (boundp sym) (fboundp sym)))
2955 sym
2956 nil))
2957 (let ((sym (intern-soft func)))
2958 (if (and sym (or (boundp sym) (fboundp sym)))
2959 sym
2960 nil))
2961 (let ((sym (intern-soft (concat "erc-" func))))
2962 (if (and sym (or (boundp sym) (fboundp sym)))
2963 sym
2964 nil)))))
2965 (if sym
2966 (cond
2967 ((boundp sym) (describe-variable sym))
2968 ((fboundp sym) (describe-function sym))
2969 (t nil))
2970 (apropos-command (concat "erc-.*" func) nil
2971 (lambda (x)
2972 (or (commandp x)
2973 (get x 'custom-type))))
2974 t))
2975 (apropos "erc-cmd-")
2976 (message "Type C-h m to get additional information about keybindings.")
2977 t))
2978
2979 (defalias 'erc-cmd-H 'erc-cmd-HELP)
2980 (put 'erc-cmd-HELP 'process-not-needed t)
2981
2982 (defun erc-cmd-JOIN (channel &optional key)
2983 "Join the channel given in CHANNEL, optionally with KEY.
2984 If CHANNEL is specified as \"-invite\", join the channel to which you
2985 were most recently invited. See also `invitation'."
2986 (let (chnl)
2987 (if (string= (upcase channel) "-INVITE")
2988 (if erc-invitation
2989 (setq chnl erc-invitation)
2990 (erc-display-message nil 'error (current-buffer) 'no-invitation))
2991 (setq chnl (erc-ensure-channel-name channel)))
2992 (when chnl
2993 ;; Prevent double joining of same channel on same server.
2994 (let ((joined-channels
2995 (mapcar #'(lambda (chanbuf)
2996 (with-current-buffer chanbuf (erc-default-target)))
2997 (erc-channel-list erc-server-process))))
2998 (if (erc-member-ignore-case chnl joined-channels)
2999 (switch-to-buffer (car (erc-member-ignore-case chnl
3000 joined-channels)))
3001 (erc-log (format "cmd: JOIN: %s" chnl))
3002 (if (and chnl key)
3003 (erc-server-send (format "JOIN %s %s" chnl key))
3004 (erc-server-send (format "JOIN %s" chnl)))))))
3005 t)
3006
3007 (defalias 'erc-cmd-CHANNEL 'erc-cmd-JOIN)
3008 (defalias 'erc-cmd-J 'erc-cmd-JOIN)
3009
3010 (defvar erc-channel-new-member-names nil
3011 "If non-nil, a names list is currently being received.
3012
3013 If non-nil, this variable is a hash-table that associates
3014 received nicks with t.")
3015 (make-variable-buffer-local 'erc-channel-new-member-names)
3016
3017 (defun erc-cmd-NAMES (&optional channel)
3018 "Display the users in CHANNEL.
3019 If CHANNEL is not specified, display the users in the current channel.
3020 This function clears the channel name list first, then sends the
3021 command."
3022 (let ((tgt (or (and (erc-channel-p channel) channel)
3023 (erc-default-target))))
3024 (if (and tgt (erc-channel-p tgt))
3025 (progn
3026 (erc-log (format "cmd: DEFAULT: NAMES %s" tgt))
3027 (erc-with-buffer
3028 (tgt)
3029 (erc-channel-begin-receiving-names))
3030 (erc-server-send (concat "NAMES " tgt)))
3031 (erc-display-message nil 'error (current-buffer) 'no-default-channel)))
3032 t)
3033 (defalias 'erc-cmd-N 'erc-cmd-NAMES)
3034
3035 (defun erc-cmd-KICK (target &optional reason-or-nick &rest reasonwords)
3036 "Kick the user indicated in LINE from the current channel.
3037 LINE has the format: \"#CHANNEL NICK REASON\" or \"NICK REASON\"."
3038 (let ((reasonstring (mapconcat 'identity reasonwords " ")))
3039 (if (string= "" reasonstring)
3040 (setq reasonstring (format "Kicked by %s" (erc-current-nick))))
3041 (if (erc-channel-p target)
3042 (let ((nick reason-or-nick))
3043 (erc-log (format "cmd: KICK: %s/%s: %s" nick target reasonstring))
3044 (erc-server-send (format "KICK %s %s :%s" target nick reasonstring)
3045 nil target)
3046 t)
3047 (when target
3048 (let ((ch (erc-default-target)))
3049 (setq reasonstring (concat
3050 (if reason-or-nick (concat reason-or-nick " "))
3051 reasonstring))
3052 (if ch
3053 (progn
3054 (erc-log
3055 (format "cmd: KICK: %s/%s: %s" target ch reasonstring))
3056 (erc-server-send
3057 (format "KICK %s %s :%s" ch target reasonstring) nil ch))
3058 (erc-display-message nil 'error (current-buffer)
3059 'no-default-channel))
3060 t)))))
3061
3062 (defvar erc-script-args nil)
3063
3064 (defun erc-cmd-LOAD (line)
3065 "Load the script provided in the LINE.
3066 If LINE continues beyond the file name, the rest of
3067 it is put in a (local) variable `erc-script-args',
3068 which can be used in Emacs Lisp scripts.
3069
3070 The optional FORCE argument is ignored here - you can't force loading
3071 a script after exceeding the flood threshold."
3072 (cond
3073 ((string-match "^\\s-*\\(\\S-+\\)\\(.*\\)$" line)
3074 (let* ((file-to-find (match-string 1 line))
3075 (erc-script-args (match-string 2 line))
3076 (file (erc-find-file file-to-find erc-script-path)))
3077 (erc-log (format "cmd: LOAD: %s" file-to-find))
3078 (cond
3079 ((not file)
3080 (erc-display-message nil 'error (current-buffer)
3081 'cannot-find-file ?f file-to-find))
3082 ((not (file-readable-p file))
3083 (erc-display-message nil 'error (current-buffer)
3084 'cannot-read-file ?f file))
3085 (t
3086 (message "Loading \'%s\'..." file)
3087 (erc-load-script file)
3088 (message "Loading \'%s\'...done" file))))
3089 t)
3090 (t nil)))
3091
3092 (defun erc-cmd-WHOIS (user &optional server)
3093 "Display whois information for USER.
3094
3095 If SERVER is non-nil, use that, rather than the current server."
3096 ;; FIXME: is the above docstring correct? -- Lawrence 2004-01-08
3097 (let ((send (if server
3098 (format "WHOIS %s %s" user server)
3099 (format "WHOIS %s" user))))
3100 (erc-log (format "cmd: %s" send))
3101 (erc-server-send send)
3102 t))
3103 (defalias 'erc-cmd-WI 'erc-cmd-WHOIS)
3104
3105 (defun erc-cmd-WHOAMI ()
3106 "Display whois information about yourself."
3107 (erc-cmd-WHOIS (erc-current-nick))
3108 t)
3109
3110 (defun erc-cmd-IDLE (nick)
3111 "Show the length of time NICK has been idle."
3112 (let ((origbuf (current-buffer))
3113 symlist)
3114 (erc-with-server-buffer
3115 (add-to-list 'symlist
3116 (cons (erc-once-with-server-event
3117 311 `(string= ,nick
3118 (second
3119 (erc-response.command-args parsed))))
3120 'erc-server-311-functions))
3121 (add-to-list 'symlist
3122 (cons (erc-once-with-server-event
3123 312 `(string= ,nick
3124 (second
3125 (erc-response.command-args parsed))))
3126 'erc-server-312-functions))
3127 (add-to-list 'symlist
3128 (cons (erc-once-with-server-event
3129 318 `(string= ,nick
3130 (second
3131 (erc-response.command-args parsed))))
3132 'erc-server-318-functions))
3133 (add-to-list 'symlist
3134 (cons (erc-once-with-server-event
3135 319 `(string= ,nick
3136 (second
3137 (erc-response.command-args parsed))))
3138 'erc-server-319-functions))
3139 (add-to-list 'symlist
3140 (cons (erc-once-with-server-event
3141 320 `(string= ,nick
3142 (second
3143 (erc-response.command-args parsed))))
3144 'erc-server-320-functions))
3145 (add-to-list 'symlist
3146 (cons (erc-once-with-server-event
3147 330 `(string= ,nick
3148 (second
3149 (erc-response.command-args parsed))))
3150 'erc-server-330-functions))
3151 (add-to-list 'symlist
3152 (cons (erc-once-with-server-event
3153 317
3154 `(let ((idleseconds
3155 (string-to-number
3156 (third
3157 (erc-response.command-args parsed)))))
3158 (erc-display-line
3159 (erc-make-notice
3160 (format "%s has been idle for %s."
3161 (erc-string-no-properties ,nick)
3162 (erc-seconds-to-string idleseconds)))
3163 ,origbuf))
3164 t)
3165 'erc-server-317-functions))
3166
3167 ;; Send the WHOIS command.
3168 (erc-cmd-WHOIS nick)
3169
3170 ;; Remove the uninterned symbols from the server hooks that did not run.
3171 (run-at-time 20 nil `(lambda ()
3172 (with-current-buffer ,(current-buffer)
3173 (dolist (sym ',symlist)
3174 (let ((hooksym (cdr sym))
3175 (funcsym (car sym)))
3176 (remove-hook hooksym funcsym t))))))))
3177 t)
3178
3179 (defun erc-cmd-DESCRIBE (line)
3180 "Pose some action to a certain user.
3181 LINE has the format \"USER ACTION\"."
3182 (cond
3183 ((string-match
3184 "^\\s-*\\(\\S-+\\)\\s-\\(.*\\)$" line)
3185 (let ((dst (match-string 1 line))
3186 (s (match-string 2 line)))
3187 (erc-log (format "cmd: DESCRIBE: [%s] %s" dst s))
3188 (erc-send-action dst s))
3189 t)
3190 (t nil)))
3191 (put 'erc-cmd-DESCRIBE 'do-not-parse-args t)
3192
3193 (defun erc-cmd-ME (line)
3194 "Send LINE as an action."
3195 (cond
3196 ((string-match "^\\s-\\(.*\\)$" line)
3197 (let ((s (match-string 1 line)))
3198 (erc-log (format "cmd: ME: %s" s))
3199 (erc-send-action (erc-default-target) s))
3200 t)
3201 (t nil)))
3202 (put 'erc-cmd-ME 'do-not-parse-args t)
3203
3204 (defun erc-cmd-ME\'S (line)
3205 "Do a /ME command, but add the string \" 's\" to the beginning."
3206 (erc-cmd-ME (concat " 's" line)))
3207 (put 'erc-cmd-ME\'S 'do-not-parse-args t)
3208
3209 (defun erc-cmd-LASTLOG (line)
3210 "Show all lines in the current buffer matching the regexp LINE.
3211
3212 If a match spreads across multiple lines, all those lines are shown.
3213
3214 The lines are shown in a buffer named `*Occur*'.
3215 It serves as a menu to find any of the occurrences in this buffer.
3216 \\[describe-mode] in that buffer will explain how.
3217
3218 If LINE contains upper case characters (excluding those preceded by `\'),
3219 the matching is case-sensitive."
3220 (occur line)
3221 t)
3222 (put 'erc-cmd-LASTLOG 'do-not-parse-args t)
3223 (put 'erc-cmd-LASTLOG 'process-not-needed t)
3224
3225 (defun erc-send-message (line &optional force)
3226 "Send LINE to the current channel or user and display it.
3227
3228 See also `erc-message' and `erc-display-line'."
3229 (erc-message "PRIVMSG" (concat (erc-default-target) " " line) force)
3230 (erc-display-line
3231 (concat (erc-format-my-nick) line)
3232 (current-buffer))
3233 ;; FIXME - treat multiline, run hooks, or remove me?
3234 t)
3235
3236 (defun erc-cmd-MODE (line)
3237 "Change or display the mode value of a channel or user.
3238 The first word specifies the target. The rest is the mode string
3239 to send.
3240
3241 If only one word is given, display the mode of that target.
3242
3243 A list of valid mode strings for Freenode may be found at
3244 URL `http://freenode.net/using_the_network.shtml'."
3245 (cond
3246 ((string-match "^\\s-\\(.*\\)$" line)
3247 (let ((s (match-string 1 line)))
3248 (erc-log (format "cmd: MODE: %s" s))
3249 (erc-server-send (concat "MODE " line)))
3250 t)
3251 (t nil)))
3252 (put 'erc-cmd-MODE 'do-not-parse-args t)
3253
3254 (defun erc-cmd-NOTICE (channel-or-user &rest message)
3255 "Send a notice to the channel or user given as the first word.
3256 The rest is the message to send."
3257 (erc-message "NOTICE" (concat channel-or-user " "
3258 (mapconcat #'identity message " "))))
3259
3260 (defun erc-cmd-MSG (line)
3261 "Send a message to the channel or user given as the first word in LINE.
3262
3263 The rest of LINE is the message to send."
3264 (erc-message "PRIVMSG" line))
3265
3266 (defalias 'erc-cmd-M 'erc-cmd-MSG)
3267 (put 'erc-cmd-MSG 'do-not-parse-args t)
3268
3269 (defun erc-cmd-SQUERY (line)
3270 "Send a Service Query to the service given as the first word in LINE.
3271
3272 The rest of LINE is the message to send."
3273 (erc-message "SQUERY" line))
3274
3275 (defun erc-cmd-NICK (nick)
3276 "Change current nickname to NICK."
3277 (erc-log (format "cmd: NICK: %s (erc-bad-nick: %S)" nick erc-bad-nick))
3278 (let ((nicklen (cdr (assoc "NICKLEN" (erc-with-server-buffer
3279 erc-server-parameters)))))
3280 (and nicklen (> (length nick) (string-to-number nicklen))
3281 (erc-display-message
3282 nil 'notice 'active 'nick-too-long
3283 ?i (length nick) ?l nicklen)))
3284 (erc-server-send (format "NICK %s" nick))
3285 (cond (erc-bad-nick
3286 (erc-set-current-nick nick)
3287 (erc-update-mode-line)
3288 (setq erc-bad-nick nil)))
3289 t)
3290
3291 (defun erc-cmd-PART (line)
3292 "When LINE is an empty string, leave the current channel.
3293 Otherwise leave the channel indicated by LINE."
3294 (cond
3295 ((string-match "^\\s-*\\([&#+!]\\S-+\\)\\s-?\\(.*\\)$" line)
3296 (let* ((ch (match-string 1 line))
3297 (msg (match-string 2 line))
3298 (reason (funcall erc-part-reason (if (equal msg "") nil msg))))
3299 (erc-log (format "cmd: PART: %s: %s" ch reason))
3300 (erc-server-send (if (string= reason "")
3301 (format "PART %s" ch)
3302 (format "PART %s :%s" ch reason))
3303 nil ch))
3304 t)
3305 ((string-match "^\\s-*\\(.*\\)$" line)
3306 (let* ((ch (erc-default-target))
3307 (msg (match-string 1 line))
3308 (reason (funcall erc-part-reason (if (equal msg "") nil msg))))
3309 (if (and ch (erc-channel-p ch))
3310 (progn
3311 (erc-log (format "cmd: PART: %s: %s" ch reason))
3312 (erc-server-send (if (string= reason "")
3313 (format "PART %s" ch)
3314 (format "PART %s :%s" ch reason))
3315 nil ch))
3316 (erc-display-message nil 'error (current-buffer) 'no-target)))
3317 t)
3318 (t nil)))
3319 (put 'erc-cmd-PART 'do-not-parse-args t)
3320
3321 (defalias 'erc-cmd-LEAVE 'erc-cmd-PART)
3322
3323 (defun erc-cmd-PING (recipient)
3324 "Ping RECIPIENT."
3325 (let ((time (format "%f" (erc-current-time))))
3326 (erc-log (format "cmd: PING: %s" time))
3327 (erc-cmd-CTCP recipient "PING" time)))
3328
3329 (defun erc-cmd-QUOTE (line)
3330 "Send LINE directly to the server.
3331 All the text given as argument is sent to the sever as unmodified,
3332 just as you provided it. Use this command with care!"
3333 (cond
3334 ((string-match "^ ?\\(.+\\)$" line)
3335 (erc-server-send (match-string 1 line)))
3336 (t nil)))
3337 (put 'erc-cmd-QUOTE 'do-not-parse-args t)
3338
3339 (defcustom erc-query-display 'window
3340 "Indicates how to display query buffers when using the /QUERY
3341 command to talk to someone.
3342
3343 The default behavior is to display the message in a new window
3344 and bring it to the front. See the documentation for
3345 `erc-join-buffer' for a description of the available choices.
3346
3347 See also `erc-auto-query' to decide how private messages from
3348 other people should be displayed."
3349 :group 'erc-query
3350 :type '(choice (const :tag "Split window and select" window)
3351 (const :tag "Split window, don't select" window-noselect)
3352 (const :tag "New frame" frame)
3353 (const :tag "Bury in new buffer" bury)
3354 (const :tag "Use current buffer" buffer)
3355 (const :tag "Use current buffer" t)))
3356
3357 (defun erc-cmd-QUERY (&optional user)
3358 "Open a query with USER.
3359 The type of query window/frame/etc will depend on the value of
3360 `erc-query-display'.
3361
3362 If USER is omitted, close the current query buffer if one exists
3363 - except this is broken now ;-)"
3364 (interactive
3365 (list (read-from-minibuffer "Start a query with: " nil)))
3366 (let ((session-buffer (erc-server-buffer))
3367 (erc-join-buffer erc-query-display))
3368 (if user
3369 (erc-query user session-buffer)
3370 ;; currently broken, evil hack to display help anyway
3371 ;(erc-delete-query))))
3372 (signal 'wrong-number-of-arguments ""))))
3373 (defalias 'erc-cmd-Q 'erc-cmd-QUERY)
3374
3375 (defun erc-quit-reason-normal (&optional s)
3376 "Normal quit message.
3377
3378 If S is non-nil, it will be used as the quit reason."
3379 (or s
3380 (format "\C-bERC\C-b %s (IRC client for Emacs)"; - \C-b%s\C-b"
3381 erc-version-string) ; erc-official-location)
3382 ))
3383
3384 (defun erc-quit-reason-zippy (&optional s)
3385 "Zippy quit message.
3386
3387 If S is non-nil, it will be used as the quit reason."
3388 (or s
3389 (erc-replace-regexp-in-string "\n" "" (yow))))
3390
3391 (defun erc-quit-reason-various (s)
3392 "Choose a quit reason based on S (a string)."
3393 (when (featurep 'xemacs) (require 'poe))
3394 (let ((res (car (assoc-default (or s "")
3395 erc-quit-reason-various-alist 'string-match))))
3396 (cond
3397 ((functionp res) (funcall res))
3398 ((stringp res) res)
3399 (s s)
3400 (t (erc-quit-reason-normal)))))
3401
3402 (defun erc-part-reason-normal (&optional s)
3403 "Normal part message.
3404
3405 If S is non-nil, it will be used as the quit reason."
3406 (or s
3407 (format "\C-bERC\C-b %s (IRC client for Emacs)"; - \C-b%s\C-b"
3408 erc-version-string) ; erc-official-location)
3409 ))
3410
3411 (defun erc-part-reason-zippy (&optional s)
3412 "Zippy part message.
3413
3414 If S is non-nil, it will be used as the quit reason."
3415 (or s
3416 (erc-replace-regexp-in-string "\n" "" (yow))))
3417
3418 (defun erc-part-reason-various (s)
3419 "Choose a part reason based on S (a string)."
3420 (when (featurep 'xemacs) (require 'poe))
3421 (let ((res (car (assoc-default (or s "")
3422 erc-part-reason-various-alist 'string-match))))
3423 (cond
3424 ((functionp res) (funcall res))
3425 ((stringp res) res)
3426 (s s)
3427 (t (erc-part-reason-normal)))))
3428
3429 (defun erc-cmd-QUIT (reason)
3430 "Disconnect from the current server.
3431 If REASON is omitted, display a default quit message, otherwise display
3432 the message given by REASON."
3433 (unless reason
3434 (setq reason ""))
3435 (cond
3436 ((string-match "^\\s-*\\(.*\\)$" reason)
3437 (let* ((s (match-string 1 reason))
3438 (buffer (erc-server-buffer))
3439 (reason (funcall erc-quit-reason (if (equal s "") nil s)))
3440 server-proc)
3441 (with-current-buffer (if (and buffer
3442 (bufferp buffer))
3443 buffer
3444 (current-buffer))
3445 (erc-log (format "cmd: QUIT: %s" reason))
3446 (setq erc-server-quitting t)
3447 (erc-set-active-buffer (erc-server-buffer))
3448 (setq server-proc erc-server-process)
3449 (erc-server-send (format "QUIT :%s" reason)))
3450 (run-hook-with-args 'erc-quit-hook server-proc)
3451 (when erc-kill-queries-on-quit
3452 (erc-kill-query-buffers server-proc))
3453 ;; if the process has not been killed within 4 seconds, kill it
3454 (run-at-time 4 nil
3455 (lambda (proc)
3456 (when (and (processp proc)
3457 (memq (process-status proc) '(run open)))
3458 (delete-process proc)))
3459 server-proc))
3460 t)
3461 (t nil)))
3462
3463 (defalias 'erc-cmd-BYE 'erc-cmd-QUIT)
3464 (defalias 'erc-cmd-EXIT 'erc-cmd-QUIT)
3465 (defalias 'erc-cmd-SIGNOFF 'erc-cmd-QUIT)
3466 (put 'erc-cmd-QUIT 'do-not-parse-args t)
3467 (put 'erc-cmd-QUIT 'process-not-needed t)
3468
3469 (defun erc-cmd-GQUIT (reason)
3470 "Disconnect from all servers at once with the same quit REASON."
3471 (erc-with-all-buffers-of-server nil #'erc-open-server-buffer-p
3472 (erc-cmd-QUIT reason))
3473 (when erc-kill-queries-on-quit
3474 ;; if the query buffers have not been killed within 4 seconds,
3475 ;; kill them
3476 (run-at-time
3477 4 nil
3478 (lambda ()
3479 (dolist (buffer (erc-buffer-list (lambda (buf)
3480 (not (erc-server-buffer-p buf)))))
3481 (kill-buffer buffer)))))
3482 t)
3483
3484 (defalias 'erc-cmd-GQ 'erc-cmd-GQUIT)
3485 (put 'erc-cmd-GQUIT 'do-not-parse-args t)
3486 (put 'erc-cmd-GQUIT 'process-not-needed t)
3487
3488 (defun erc-cmd-RECONNECT ()
3489 "Try to reconnect to the current IRC server."
3490 (let ((buffer (erc-server-buffer))
3491 (process nil))
3492 (unless (buffer-live-p buffer)
3493 (setq buffer (current-buffer)))
3494 (with-current-buffer buffer
3495 (setq erc-server-quitting nil)
3496 (setq erc-server-reconnecting t)
3497 (setq erc-server-reconnect-count 0)
3498 (setq process (get-buffer-process (erc-server-buffer)))
3499 (if process
3500 (delete-process process)
3501 (erc-server-reconnect))
3502 (setq erc-server-reconnecting nil)))
3503 t)
3504 (put 'erc-cmd-RECONNECT 'process-not-needed t)
3505
3506 (defun erc-cmd-SERVER (server)
3507 "Connect to SERVER, leaving existing connection intact."
3508 (erc-log (format "cmd: SERVER: %s" server))
3509 (condition-case nil
3510 (erc :server server :nick (erc-current-nick))
3511 (error
3512 (erc-error "Cannot find host %s." server)))
3513 t)
3514 (put 'erc-cmd-SERVER 'process-not-needed t)
3515
3516 (defvar motif-version-string)
3517 (defvar gtk-version-string)
3518
3519 (defun erc-cmd-SV ()
3520 "Say the current ERC and Emacs version into channel."
3521 (erc-send-message (format "I'm using ERC %s with %s %s (%s%s) of %s."
3522 erc-version-string
3523 (if (featurep 'xemacs) "XEmacs" "GNU Emacs")
3524 emacs-version
3525 system-configuration
3526 (concat
3527 (cond ((featurep 'motif)
3528 (concat ", " (substring
3529 motif-version-string 4)))
3530 ((featurep 'gtk)
3531 (concat ", GTK+ Version "
3532 gtk-version-string))
3533 ((featurep 'x-toolkit) ", X toolkit")
3534 (t ""))
3535 (if (and (boundp 'x-toolkit-scroll-bars)
3536 (memq x-toolkit-scroll-bars
3537 '(xaw xaw3d)))
3538 (format ", %s scroll bars"
3539 (capitalize (symbol-name
3540 x-toolkit-scroll-bars)))
3541 "")
3542 (if (featurep 'multi-tty) ", multi-tty" ""))
3543 erc-emacs-build-time))
3544 t)
3545
3546 (defun erc-cmd-SM ()
3547 "Say the current ERC modes into channel."
3548 (erc-send-message (format "I'm using the following modules: %s!"
3549 (erc-modes)))
3550 t)
3551
3552 (defun erc-cmd-DEOP (&rest people)
3553 "Remove the operator setting from user(s) given in PEOPLE."
3554 (when (> (length people) 0)
3555 (erc-server-send (concat "MODE " (erc-default-target)
3556 " -"
3557 (make-string (length people) ?o)
3558 " "
3559 (mapconcat 'identity people " ")))
3560 t))
3561
3562 (defun erc-cmd-OP (&rest people)
3563 "Add the operator setting to users(s) given in PEOPLE."
3564 (when (> (length people) 0)
3565 (erc-server-send (concat "MODE " (erc-default-target)
3566 " +"
3567 (make-string (length people) ?o)
3568 " "
3569 (mapconcat 'identity people " ")))
3570 t))
3571
3572 (defun erc-cmd-TIME (&optional line)
3573 "Request the current time and date from the current server."
3574 (cond
3575 ((and line (string-match "^\\s-*\\(.*\\)$" line))
3576 (let ((args (match-string 1 line)))
3577 (erc-log (format "cmd: TIME: %s" args))
3578 (erc-server-send (concat "TIME " args)))
3579 t)
3580 (t (erc-server-send "TIME"))))
3581 (defalias 'erc-cmd-DATE 'erc-cmd-TIME)
3582
3583 (defun erc-cmd-TOPIC (topic)
3584 "Set or request the topic for a channel.
3585 LINE has the format: \"#CHANNEL TOPIC\", \"#CHANNEL\", \"TOPIC\"
3586 or the empty string.
3587
3588 If no #CHANNEL is given, the default channel is used. If TOPIC is
3589 given, the channel topic is modified, otherwise the current topic will
3590 be displayed."
3591 (cond
3592 ;; /topic #channel TOPIC
3593 ((string-match "^\\s-*\\([&#+!]\\S-+\\)\\s-\\(.*\\)$" topic)
3594 (let ((ch (match-string 1 topic))
3595 (topic (match-string 2 topic)))
3596 (erc-log (format "cmd: TOPIC [%s]: %s" ch topic))
3597 (erc-server-send (format "TOPIC %s :%s" ch topic) nil ch))
3598 t)
3599 ;; /topic #channel
3600 ((string-match "^\\s-*\\([&#+!]\\S-+\\)" topic)
3601 (let ((ch (match-string 1 topic)))
3602 (erc-server-send (format "TOPIC %s" ch) nil ch)
3603 t))
3604 ;; /topic
3605 ((string-match "^\\s-*$" topic)
3606 (let ((ch (erc-default-target)))
3607 (erc-server-send (format "TOPIC %s" ch) nil ch)
3608 t))
3609 ;; /topic TOPIC
3610 ((string-match "^\\s-*\\(.*\\)$" topic)
3611 (let ((ch (erc-default-target))
3612 (topic (match-string 1 topic)))
3613 (if (and ch (erc-channel-p ch))
3614 (progn
3615 (erc-log (format "cmd: TOPIC [%s]: %s" ch topic))
3616 (erc-server-send (format "TOPIC %s :%s" ch topic) nil ch))
3617 (erc-display-message nil 'error (current-buffer) 'no-target)))
3618 t)
3619 (t nil)))
3620 (defalias 'erc-cmd-T 'erc-cmd-TOPIC)
3621 (put 'erc-cmd-TOPIC 'do-not-parse-args t)
3622
3623 (defun erc-cmd-APPENDTOPIC (topic)
3624 "Append TOPIC to the current channel topic, separated by a space."
3625 (let ((oldtopic erc-channel-topic))
3626 ;; display help when given no arguments
3627 (when (string-match "^\\s-*$" topic)
3628 (signal 'wrong-number-of-arguments nil))
3629 ;; strip trailing ^O
3630 (when (string-match "\\(.*\\)\C-o" oldtopic)
3631 (erc-cmd-TOPIC (concat (match-string 1 oldtopic) topic)))))
3632 (defalias 'erc-cmd-AT 'erc-cmd-APPENDTOPIC)
3633 (put 'erc-cmd-APPENDTOPIC 'do-not-parse-args t)
3634
3635 (defun erc-cmd-CLEARTOPIC (&optional channel)
3636 "Clear the topic for a CHANNEL.
3637 If CHANNEL is not specified, clear the topic for the default channel."
3638 (interactive "sClear topic of channel (RET is current channel): ")
3639 (let ((chnl (or (and (erc-channel-p channel) channel) (erc-default-target))))
3640 (when chnl
3641 (erc-server-send (format "TOPIC %s :" chnl))
3642 t)))
3643
3644 ;;; Banlists
3645
3646 (defvar erc-channel-banlist nil
3647 "A list of bans seen for the current channel.
3648
3649 Each ban is an alist of the form:
3650 (WHOSET . MASK)
3651
3652 The property `received-from-server' indicates whether
3653 or not the ban list has been requested from the server.")
3654 (make-variable-buffer-local 'erc-channel-banlist)
3655 (put 'erc-channel-banlist 'received-from-server nil)
3656
3657 (defun erc-cmd-BANLIST ()
3658 "Pretty-print the contents of `erc-channel-banlist'.
3659
3660 The ban list is fetched from the server if necessary."
3661 (let ((chnl (erc-default-target))
3662 (chnl-name (buffer-name)))
3663
3664 (cond
3665 ((not (erc-channel-p chnl))
3666 (erc-display-line (erc-make-notice "You're not on a channel\n")
3667 'active))
3668
3669 ((not (get 'erc-channel-banlist 'received-from-server))
3670 (let ((old-367-hook erc-server-367-functions))
3671 (setq erc-server-367-functions 'erc-banlist-store
3672 erc-channel-banlist nil)
3673 ;; fetch the ban list then callback
3674 (erc-with-server-buffer
3675 (erc-once-with-server-event
3676 368
3677 `(with-current-buffer ,chnl-name
3678 (put 'erc-channel-banlist 'received-from-server t)
3679 (setq erc-server-367-functions ',old-367-hook)
3680 (erc-cmd-BANLIST)
3681 t))
3682 (erc-server-send (format "MODE %s b" chnl)))))
3683
3684 ((null erc-channel-banlist)
3685 (erc-display-line (erc-make-notice
3686 (format "No bans for channel: %s\n" chnl))
3687 'active)
3688 (put 'erc-channel-banlist 'received-from-server nil))
3689
3690 (t
3691 (let* ((erc-fill-column (or (and (boundp 'erc-fill-column)
3692 erc-fill-column)
3693 (and (boundp 'fill-column)
3694 fill-column)
3695 (1- (window-width))))
3696 (separator (make-string erc-fill-column ?=))
3697 (fmt (concat
3698 "%-" (number-to-string (/ erc-fill-column 2)) "s"
3699 "%" (number-to-string (/ erc-fill-column 2)) "s")))
3700
3701 (erc-display-line
3702 (erc-make-notice (format "Ban list for channel: %s\n"
3703 (erc-default-target)))
3704 'active)
3705
3706 (erc-display-line separator 'active)
3707 (erc-display-line (format fmt "Ban Mask" "Banned By") 'active)
3708 (erc-display-line separator 'active)
3709
3710 (mapc
3711 (lambda (x)
3712 (erc-display-line
3713 (format fmt
3714 (truncate-string-to-width (cdr x) (/ erc-fill-column 2))
3715 (if (car x)
3716 (truncate-string-to-width (car x) (/ erc-fill-column 2))
3717 ""))
3718 'active))
3719 erc-channel-banlist)
3720
3721 (erc-display-line (erc-make-notice "End of Ban list")
3722 'active)
3723 (put 'erc-channel-banlist 'received-from-server nil)))))
3724 t)
3725
3726 (defalias 'erc-cmd-BL 'erc-cmd-BANLIST)
3727
3728 (defun erc-cmd-MASSUNBAN ()
3729 "Mass Unban.
3730
3731 Unban all currently banned users in the current channel."
3732 (let ((chnl (erc-default-target)))
3733 (cond
3734
3735 ((not (erc-channel-p chnl))
3736 (erc-display-line
3737 (erc-make-notice "You're not on a channel\n")
3738 'active))
3739
3740 ((not (get 'erc-channel-banlist 'received-from-server))
3741 (let ((old-367-hook erc-server-367-functions))
3742 (setq erc-server-367-functions 'erc-banlist-store)
3743 ;; fetch the ban list then callback
3744 (erc-with-server-buffer
3745 (erc-once-with-server-event
3746 368
3747 `(with-current-buffer ,chnl
3748 (put 'erc-channel-banlist 'received-from-server t)
3749 (setq erc-server-367-functions ,old-367-hook)
3750 (erc-cmd-MASSUNBAN)
3751 t))
3752 (erc-server-send (format "MODE %s b" chnl)))))
3753
3754 (t (let ((bans (mapcar 'cdr erc-channel-banlist)))
3755 (when bans
3756 ;; Glob the bans into groups of three, and carry out the unban.
3757 ;; eg. /mode #foo -bbb a*!*@* b*!*@* c*!*@*
3758 (mapc
3759 (lambda (x)
3760 (erc-server-send
3761 (format "MODE %s -%s %s" (erc-default-target)
3762 (make-string (length x) ?b)
3763 (mapconcat 'identity x " "))))
3764 (erc-group-list bans 3))))
3765 t))))
3766
3767 (defalias 'erc-cmd-MUB 'erc-cmd-MASSUNBAN)
3768
3769 ;;;; End of IRC commands
3770
3771 (defun erc-ensure-channel-name (channel)
3772 "Return CHANNEL if it is a valid channel name.
3773 Eventually add a # in front of it, if that turns it into a valid channel name."
3774 (if (erc-channel-p channel)
3775 channel
3776 (concat "#" channel)))
3777
3778 (defun erc-grab-region (start end)
3779 "Copy the region between START and END in a recreatable format.
3780
3781 Converts all the IRC text properties in each line of the region
3782 into control codes and writes them to a separate buffer. The
3783 resulting text may be used directly as a script to generate this
3784 text again."
3785 (interactive "r")
3786 (erc-set-active-buffer (current-buffer))
3787 (save-excursion
3788 (let* ((cb (current-buffer))
3789 (buf (generate-new-buffer erc-grab-buffer-name))
3790 (region (buffer-substring start end))
3791 (lines (erc-split-multiline-safe region)))
3792 (set-buffer buf)
3793 (dolist (line lines)
3794 (insert (concat line "\n")))
3795 (set-buffer cb)
3796 (switch-to-buffer-other-window buf)))
3797 (message "erc-grab-region doesn't grab colors etc. anymore. If you use this, please tell the maintainers.")
3798 (ding))
3799
3800 (defun erc-display-prompt (&optional buffer pos prompt face)
3801 "Display PROMPT in BUFFER at position POS.
3802 Display an ERC prompt in BUFFER.
3803
3804 If PROMPT is nil, one is constructed with the function `erc-prompt'.
3805 If BUFFER is nil, the `current-buffer' is used.
3806 If POS is nil, PROMPT will be displayed at `point'.
3807 If FACE is non-nil, it will be used to propertize the prompt. If it is nil,
3808 `erc-prompt-face' will be used."
3809 (let* ((prompt (or prompt (erc-prompt)))
3810 (l (length prompt))
3811 (ob (current-buffer)))
3812 ;; We cannot use save-excursion because we move point, therefore
3813 ;; we resort to the ol' ob trick to restore this.
3814 (when (and buffer (bufferp buffer))
3815 (set-buffer buffer))
3816
3817 ;; now save excursion again to store where point and mark are
3818 ;; in the current buffer
3819 (save-excursion
3820 (setq pos (or pos (point)))
3821 (goto-char pos)
3822 (when (> l 0)
3823 ;; Do not extend the text properties when typing at the end
3824 ;; of the prompt, but stuff typed in front of the prompt
3825 ;; shall remain part of the prompt.
3826 (setq prompt (erc-propertize prompt
3827 'start-open t ; XEmacs
3828 'rear-nonsticky t ; Emacs
3829 'erc-prompt t
3830 'field t
3831 'front-sticky t
3832 'read-only t))
3833 (erc-put-text-property 0 (1- (length prompt))
3834 'face (or face 'erc-prompt-face)
3835 prompt)
3836 (insert prompt))
3837 ;; Set the input marker
3838 (set-marker erc-input-marker (point)))
3839
3840 ;; Now we are back at the old position. If the prompt was
3841 ;; inserted here or before us, advance point by the length of
3842 ;; the prompt.
3843 (when (or (not pos) (<= (point) pos))
3844 (forward-char l))
3845 ;; Clear the undo buffer now, so the user can undo his stuff,
3846 ;; but not the stuff we did. Sneaky!
3847 (setq buffer-undo-list nil)
3848 (set-buffer ob)))
3849
3850 ;; interactive operations
3851
3852 (defun erc-input-message ()
3853 "Read input from the minibuffer."
3854 (interactive)
3855 (let ((minibuffer-allow-text-properties t)
3856 (read-map minibuffer-local-map))
3857 (insert (read-from-minibuffer "Message: "
3858 (string (if (featurep 'xemacs)
3859 last-command-char
3860 last-command-event)) read-map))
3861 (erc-send-current-line)))
3862
3863 (defvar erc-action-history-list ()
3864 "History list for interactive action input.")
3865
3866 (defun erc-input-action ()
3867 "Interactively input a user action and send it to IRC."
3868 (interactive "")
3869 (erc-set-active-buffer (current-buffer))
3870 (let ((action (read-from-minibuffer
3871 "Action: " nil nil nil 'erc-action-history-list)))
3872 (if (not (string-match "^\\s-*$" action))
3873 (erc-send-action (erc-default-target) action))))
3874
3875 (defun erc-join-channel (channel &optional key)
3876 "Join CHANNEL.
3877
3878 If `point' is at the beginning of a channel name, use that as default."
3879 (interactive
3880 (list
3881 (let ((chnl (if (looking-at "\\([&#+!][^ \n]+\\)") (match-string 1) ""))
3882 (table (when (erc-server-buffer-live-p)
3883 (set-buffer (process-buffer erc-server-process))
3884 erc-channel-list)))
3885 (completing-read "Join channel: " table nil nil nil nil chnl))
3886 (when (or current-prefix-arg erc-prompt-for-channel-key)
3887 (read-from-minibuffer "Channel key (RET for none): " nil))))
3888 (erc-cmd-JOIN channel (when (>= (length key) 1) key)))
3889
3890 (defun erc-part-from-channel (reason)
3891 "Part from the current channel and prompt for a REASON."
3892 (interactive
3893 (list
3894 (if (and (boundp 'reason) (stringp reason) (not (string= reason "")))
3895 reason
3896 (read-from-minibuffer (concat "Reason for leaving " (erc-default-target)
3897 ": ")))))
3898 (erc-cmd-PART (concat (erc-default-target)" " reason)))
3899
3900 (defun erc-set-topic (topic)
3901 "Prompt for a TOPIC for the current channel."
3902 (interactive
3903 (list
3904 (read-from-minibuffer
3905 (concat "Set topic of " (erc-default-target) ": ")
3906 (when erc-channel-topic
3907 (let ((ss (split-string erc-channel-topic "\C-o")))
3908 (cons (apply 'concat (if (cdr ss) (butlast ss) ss))
3909 0))))))
3910 (let ((topic-list (split-string topic "\C-o"))) ; strip off the topic setter
3911 (erc-cmd-TOPIC (concat (erc-default-target) " " (car topic-list)))))
3912
3913 (defun erc-set-channel-limit (&optional limit)
3914 "Set a LIMIT for the current channel. Remove limit if nil.
3915 Prompt for one if called interactively."
3916 (interactive (list (read-from-minibuffer
3917 (format "Limit for %s (RET to remove limit): "
3918 (erc-default-target)))))
3919 (let ((tgt (erc-default-target)))
3920 (if (and limit (>= (length limit) 1))
3921 (erc-server-send (format "MODE %s +l %s" tgt limit))
3922 (erc-server-send (format "MODE %s -l" tgt)))))
3923
3924 (defun erc-set-channel-key (&optional key)
3925 "Set a KEY for the current channel. Remove key if nil.
3926 Prompt for one if called interactively."
3927 (interactive (list (read-from-minibuffer
3928 (format "Key for %s (RET to remove key): "
3929 (erc-default-target)))))
3930 (let ((tgt (erc-default-target)))
3931 (if (and key (>= (length key) 1))
3932 (erc-server-send (format "MODE %s +k %s" tgt key))
3933 (erc-server-send (format "MODE %s -k" tgt)))))
3934
3935 (defun erc-quit-server (reason)
3936 "Disconnect from current server after prompting for REASON.
3937 `erc-quit-reason' works with this just like with `erc-cmd-QUIT'."
3938 (interactive (list (read-from-minibuffer
3939 (format "Reason for quitting %s: "
3940 (or erc-server-announced-name
3941 erc-session-server)))))
3942 (erc-cmd-QUIT reason))
3943
3944 ;; Movement of point
3945
3946 (defun erc-bol ()
3947 "Move `point' to the beginning of the current line.
3948
3949 This places `point' just after the prompt, or at the beginning of the line."
3950 (interactive)
3951 (forward-line 0)
3952 (when (get-text-property (point) 'erc-prompt)
3953 (goto-char erc-input-marker))
3954 (point))
3955
3956 (defun erc-kill-input ()
3957 "Kill current input line using `erc-bol' followed by `kill-line'."
3958 (interactive)
3959 (when (and (erc-bol)
3960 (/= (point) (point-max))) ;; Prevent a (ding) and an error when
3961 ;; there's nothing to kill
3962 (if (boundp 'erc-input-ring-index)
3963 (setq erc-input-ring-index nil))
3964 (kill-line)))
3965
3966 (defun erc-complete-word-at-point ()
3967 (run-hook-with-args-until-success 'erc-complete-functions))
3968
3969 (define-obsolete-function-alias 'erc-complete-word 'completion-at-point "24.1")
3970
3971 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3972 ;;
3973 ;; IRC SERVER INPUT HANDLING
3974 ;;
3975 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3976
3977 ;;;; New Input parsing
3978
3979 ; Stolen from ZenIRC. I just wanna test this code, so here is
3980 ; experiment area.
3981
3982 (defcustom erc-default-server-hook '(erc-debug-missing-hooks
3983 erc-default-server-handler)
3984 "Default for server messages which aren't covered by `erc-server-hooks'."
3985 :group 'erc-server-hooks
3986 :type 'hook)
3987
3988 (defun erc-default-server-handler (proc parsed)
3989 "Default server handler.
3990
3991 Displays PROC and PARSED appropriately using `erc-display-message'."
3992 (erc-display-message
3993 parsed 'notice proc
3994 (mapconcat
3995 'identity
3996 (let (res)
3997 (mapc #'(lambda (x)
3998 (if (stringp x)
3999 (setq res (append res (list x)))))
4000 parsed)
4001 res)
4002 " ")))
4003
4004 (defvar erc-server-vectors
4005 '(["msgtype" "sender" "to" "arg1" "arg2" "arg3" "..."])
4006 "List of received server messages which ERC does not specifically handle.
4007 See `erc-debug-missing-hooks'.")
4008 ;(make-variable-buffer-local 'erc-server-vectors)
4009
4010 (defun erc-debug-missing-hooks (proc parsed)
4011 "Add PARSED server message ERC does not yet handle to `erc-server-vectors'.
4012 These vectors can be helpful when adding new server message handlers to ERC.
4013 See `erc-default-server-hook'."
4014 (nconc erc-server-vectors (list parsed))
4015 nil)
4016
4017 (defun erc-query (target server)
4018 "Open a query buffer on TARGET, using SERVER.
4019 To change how this query window is displayed, use `let' to bind
4020 `erc-join-buffer' before calling this."
4021 (unless (and server
4022 (buffer-live-p server)
4023 (set-buffer server))
4024 (error "Couldn't switch to server buffer"))
4025 (let ((buf (erc-open erc-session-server
4026 erc-session-port
4027 (erc-current-nick)
4028 erc-session-user-full-name
4029 nil
4030 nil
4031 (list target)
4032 target
4033 erc-server-process)))
4034 (unless buf
4035 (error "Couldn't open query window"))
4036 (erc-update-mode-line)
4037 buf))
4038
4039 (defcustom erc-auto-query 'window-noselect
4040 "If non-nil, create a query buffer each time you receive a private message.
4041 If the buffer doesn't already exist, it is created.
4042
4043 This can be set to a symbol, to control how the new query window
4044 should appear. The default behavior is to display the buffer in
4045 a new window, but not to select it. See the documentation for
4046 `erc-join-buffer' for a description of the available choices."
4047 :group 'erc-query
4048 :type '(choice (const :tag "Don't create query window" nil)
4049 (const :tag "Split window and select" window)
4050 (const :tag "Split window, don't select" window-noselect)
4051 (const :tag "New frame" frame)
4052 (const :tag "Bury in new buffer" bury)
4053 (const :tag "Use current buffer" buffer)
4054 (const :tag "Use current buffer" t)))
4055
4056 (defcustom erc-query-on-unjoined-chan-privmsg t
4057 "If non-nil create query buffer on receiving any PRIVMSG at all.
4058 This includes PRIVMSGs directed to channels. If you are using an IRC
4059 bouncer, such as dircproxy, to keep a log of channels when you are
4060 disconnected, you should set this option to t."
4061 :group 'erc-query
4062 :type 'boolean)
4063
4064 (defcustom erc-format-query-as-channel-p t
4065 "If non-nil, format text from others in a query buffer like in a channel,
4066 otherwise format like a private message."
4067 :group 'erc-query
4068 :type 'boolean)
4069
4070 (defcustom erc-minibuffer-notice nil
4071 "If non-nil, print ERC notices for the user in the minibuffer.
4072 Only happens when the session buffer isn't visible."
4073 :group 'erc-display
4074 :type 'boolean)
4075
4076 (defcustom erc-minibuffer-ignored nil
4077 "If non-nil, print a message in the minibuffer if we ignored something."
4078 :group 'erc-ignore
4079 :type 'boolean)
4080
4081 (defun erc-wash-quit-reason (reason nick login host)
4082 "Remove duplicate text from quit REASON.
4083 Specifically in relation to NICK (user@host) information. Returns REASON
4084 unmodified if nothing can be removed.
4085 E.g. \"Read error to Nick [user@some.host]: 110\" would be shortened to
4086 \"Read error: 110\". The same applies for \"Ping Timeout\"."
4087 (setq nick (regexp-quote nick)
4088 login (regexp-quote login)
4089 host (regexp-quote host))
4090 (or (when (string-match (concat "^\\(Read error\\) to "
4091 nick "\\[" host "\\]: "
4092 "\\(.+\\)$") reason)
4093 (concat (match-string 1 reason) ": " (match-string 2 reason)))
4094 (when (string-match (concat "^\\(Ping timeout\\) for "
4095 nick "\\[" host "\\]$") reason)
4096 (match-string 1 reason))
4097 reason))
4098
4099 (defun erc-nickname-in-use (nick reason)
4100 "If NICK is unavailable, tell the user the REASON.
4101
4102 See also `erc-display-error-notice'."
4103 (if (or (not erc-try-new-nick-p)
4104 ;; how many default-nicks are left + one more try...
4105 (eq erc-nick-change-attempt-count
4106 (if (consp erc-nick)
4107 (+ (length erc-nick) 1)
4108 1)))
4109 (erc-display-error-notice
4110 nil
4111 (format "Nickname %s is %s, try another." nick reason))
4112 (setq erc-nick-change-attempt-count (+ erc-nick-change-attempt-count 1))
4113 (let ((newnick (nth 1 erc-default-nicks))
4114 (nicklen (cdr (assoc "NICKLEN"
4115 (erc-with-server-buffer
4116 erc-server-parameters)))))
4117 (setq erc-bad-nick t)
4118 ;; try to use a different nick
4119 (if erc-default-nicks
4120 (setq erc-default-nicks (cdr erc-default-nicks)))
4121 (if (not newnick)
4122 (setq newnick (concat (truncate-string-to-width
4123 nick
4124 (if (and erc-server-connected nicklen)
4125 (- (string-to-number nicklen)
4126 (length erc-nick-uniquifier))
4127 ;; rfc2812 max nick length = 9
4128 ;; we must assume this is the
4129 ;; server's setting if we haven't
4130 ;; established a connection yet
4131 (- 9 (length erc-nick-uniquifier))))
4132 erc-nick-uniquifier)))
4133 (erc-cmd-NICK newnick)
4134 (erc-display-error-notice
4135 nil
4136 (format "Nickname %s is %s, trying %s"
4137 nick reason newnick)))))
4138
4139 ;;; Server messages
4140
4141 (defgroup erc-server-hooks nil
4142 "Server event callbacks.
4143 Every server event - like numeric replies - has its own hook.
4144 Those hooks are all called using `run-hook-with-args-until-success'.
4145 They receive as first argument the process object from where the event
4146 originated from,
4147 and as second argument the event parsed as a vector."
4148 :group 'erc-hooks)
4149
4150 (defun erc-display-server-message (proc parsed)
4151 "Display the message sent by the server as a notice."
4152 (erc-display-message
4153 parsed 'notice 'active (erc-response.contents parsed)))
4154
4155 (defun erc-auto-query (proc parsed)
4156 ;; FIXME: This needs more documentation, unless it's not a user function --
4157 ;; Lawrence 2004-01-08
4158 "Put this on `erc-server-PRIVMSG-functions'."
4159 (when erc-auto-query
4160 (let* ((nick (car (erc-parse-user (erc-response.sender parsed))))
4161 (target (car (erc-response.command-args parsed)))
4162 (msg (erc-response.contents parsed))
4163 (query (if (not erc-query-on-unjoined-chan-privmsg)
4164 nick
4165 (if (erc-current-nick-p target)
4166 nick
4167 target))))
4168 (and (not (erc-ignored-user-p (erc-response.sender parsed)))
4169 (or erc-query-on-unjoined-chan-privmsg
4170 (string= target (erc-current-nick)))
4171 (not (erc-get-buffer query proc))
4172 (not (erc-is-message-ctcp-and-not-action-p msg))
4173 (let ((erc-query-display erc-auto-query))
4174 (erc-cmd-QUERY query))
4175 nil))))
4176
4177 (defun erc-is-message-ctcp-p (message)
4178 "Check if MESSAGE is a CTCP message or not."
4179 (string-match "^\C-a\\([^\C-a]*\\)\C-a?$" message))
4180
4181 (defun erc-is-message-ctcp-and-not-action-p (message)
4182 "Check if MESSAGE is a CTCP message or not."
4183 (and (erc-is-message-ctcp-p message)
4184 (not (string-match "^\C-a\\ACTION.*\C-a$" message))))
4185
4186 (defun erc-format-privmessage (nick msg privp msgp)
4187 "Format a PRIVMSG in an insertable fashion."
4188 (let* ((mark-s (if msgp (if privp "*" "<") "-"))
4189 (mark-e (if msgp (if privp "*" ">") "-"))
4190 (str (format "%s%s%s %s" mark-s nick mark-e msg))
4191 (nick-face (if privp 'erc-nick-msg-face 'erc-nick-default-face))
4192 (msg-face (if privp 'erc-direct-msg-face 'erc-default-face)))
4193 ;; add text properties to text before the nick, the nick and after the nick
4194 (erc-put-text-property 0 (length mark-s) 'face msg-face str)
4195 (erc-put-text-property (length mark-s) (+ (length mark-s) (length nick))
4196 'face nick-face str)
4197 (erc-put-text-property (+ (length mark-s) (length nick)) (length str)
4198 'face msg-face str)
4199 str))
4200
4201 (defcustom erc-format-nick-function 'erc-format-nick
4202 "Function to format a nickname for message display."
4203 :group 'erc-display
4204 :type 'function)
4205
4206 (defun erc-format-nick (&optional user channel-data)
4207 "Return the nickname of USER.
4208 See also `erc-format-nick-function'."
4209 (when user (erc-server-user-nickname user)))
4210
4211 (defun erc-format-@nick (&optional user channel-data)
4212 "Format the nickname of USER showing if USER is an operator or has voice.
4213 Operators have \"@\" and users with voice have \"+\" as a prefix.
4214 Use CHANNEL-DATA to determine op and voice status.
4215 See also `erc-format-nick-function'."
4216 (when user
4217 (let ((op (and channel-data (erc-channel-user-op channel-data) "@"))
4218 (voice (and channel-data (erc-channel-user-voice channel-data) "+")))
4219 (concat voice op (erc-server-user-nickname user)))))
4220
4221 (defun erc-format-my-nick ()
4222 "Return the beginning of this user's message, correctly propertized."
4223 (if erc-show-my-nick
4224 (let ((open "<")
4225 (close "> ")
4226 (nick (erc-current-nick)))
4227 (concat
4228 (erc-propertize open 'face 'erc-default-face)
4229 (erc-propertize nick 'face 'erc-my-nick-face)
4230 (erc-propertize close 'face 'erc-default-face)))
4231 (let ((prefix "> "))
4232 (erc-propertize prefix 'face 'erc-default-face))))
4233
4234 (defun erc-echo-notice-in-default-buffer (s parsed buffer sender)
4235 "Echos a private notice in the default buffer, namely the
4236 target buffer specified by BUFFER, or there is no target buffer,
4237 the server buffer. This function is designed to be added to
4238 either `erc-echo-notice-hook' or `erc-echo-notice-always-hook',
4239 and always returns t."
4240 (erc-display-message parsed nil buffer s)
4241 t)
4242
4243 (defun erc-echo-notice-in-target-buffer (s parsed buffer sender)
4244 "Echos a private notice in BUFFER, if BUFFER is non-nil. This
4245 function is designed to be added to either `erc-echo-notice-hook'
4246 or `erc-echo-notice-always-hook', and returns non-nil if BUFFER
4247 is non-nil."
4248 (if buffer
4249 (progn (erc-display-message parsed nil buffer s) t)
4250 nil))
4251
4252 (defun erc-echo-notice-in-minibuffer (s parsed buffer sender)
4253 "Echos a private notice in the minibuffer. This function is
4254 designed to be added to either `erc-echo-notice-hook' or
4255 `erc-echo-notice-always-hook', and always returns t."
4256 (message "%s" (concat "NOTICE: " s))
4257 t)
4258
4259 (defun erc-echo-notice-in-server-buffer (s parsed buffer sender)
4260 "Echos a private notice in the server buffer. This function is
4261 designed to be added to either `erc-echo-notice-hook' or
4262 `erc-echo-notice-always-hook', and always returns t."
4263 (erc-display-message parsed nil nil s)
4264 t)
4265
4266 (defun erc-echo-notice-in-active-non-server-buffer (s parsed buffer sender)
4267 "Echos a private notice in the active buffer if the active
4268 buffer is not the server buffer. This function is designed to be
4269 added to either `erc-echo-notice-hook' or
4270 `erc-echo-notice-always-hook', and returns non-nil if the active
4271 buffer is not the server buffer."
4272 (if (not (eq (erc-server-buffer) (erc-active-buffer)))
4273 (progn (erc-display-message parsed nil 'active s) t)
4274 nil))
4275
4276 (defun erc-echo-notice-in-active-buffer (s parsed buffer sender)
4277 "Echos a private notice in the active buffer. This function is
4278 designed to be added to either `erc-echo-notice-hook' or
4279 `erc-echo-notice-always-hook', and always returns t."
4280 (erc-display-message parsed nil 'active s)
4281 t)
4282
4283 (defun erc-echo-notice-in-user-buffers (s parsed buffer sender)
4284 "Echos a private notice in all of the buffers for which SENDER
4285 is a member. This function is designed to be added to either
4286 `erc-echo-notice-hook' or `erc-echo-notice-always-hook', and
4287 returns non-nil if there is at least one buffer for which the
4288 sender is a member.
4289
4290 See also: `erc-echo-notice-in-first-user-buffer',
4291 `erc-buffer-list-with-nick'."
4292 (let ((buffers (erc-buffer-list-with-nick sender erc-server-process)))
4293 (if buffers
4294 (progn (erc-display-message parsed nil buffers s) t)
4295 nil)))
4296
4297 (defun erc-echo-notice-in-user-and-target-buffers (s parsed buffer sender)
4298 "Echos a private notice in BUFFER and in all of the buffers for
4299 which SENDER is a member. This function is designed to be added
4300 to either `erc-echo-notice-hook' or
4301 `erc-echo-notice-always-hook', and returns non-nil if there is
4302 at least one buffer for which the sender is a member or the
4303 default target.
4304
4305 See also: `erc-echo-notice-in-user-buffers',
4306 `erc-buffer-list-with-nick'."
4307 (let ((buffers (erc-buffer-list-with-nick sender erc-server-process)))
4308 (add-to-list 'buffers buffer)
4309 (if buffers
4310 (progn (erc-display-message parsed nil buffers s) t)
4311 nil)))
4312
4313 (defun erc-echo-notice-in-first-user-buffer (s parsed buffer sender)
4314 "Echos a private notice in one of the buffers for which SENDER
4315 is a member. This function is designed to be added to either
4316 `erc-echo-notice-hook' or `erc-echo-notice-always-hook', and
4317 returns non-nil if there is at least one buffer for which the
4318 sender is a member.
4319
4320 See also: `erc-echo-notice-in-user-buffers',
4321 `erc-buffer-list-with-nick'."
4322 (let ((buffers (erc-buffer-list-with-nick sender erc-server-process)))
4323 (if buffers
4324 (progn (erc-display-message parsed nil (car buffers) s) t)
4325 nil)))
4326
4327 ;;; Ban manipulation
4328
4329 (defun erc-banlist-store (proc parsed)
4330 "Record ban entries for a channel."
4331 (multiple-value-bind (channel mask whoset)
4332 (values-list (cdr (erc-response.command-args parsed)))
4333 ;; Determine to which buffer the message corresponds
4334 (let ((buffer (erc-get-buffer channel proc)))
4335 (with-current-buffer buffer
4336 (unless (member (cons whoset mask) erc-channel-banlist)
4337 (setq erc-channel-banlist (cons (cons whoset mask)
4338 erc-channel-banlist))))))
4339 nil)
4340
4341 (defun erc-banlist-finished (proc parsed)
4342 "Record that we have received the banlist."
4343 (let* ((channel (second (erc-response.command-args parsed)))
4344 (buffer (erc-get-buffer channel proc)))
4345 (with-current-buffer buffer
4346 (put 'erc-channel-banlist 'received-from-server t)))
4347 t) ; suppress the 'end of banlist' message
4348
4349 (defun erc-banlist-update (proc parsed)
4350 "Check MODE commands for bans and update the banlist appropriately."
4351 ;; FIXME: Possibly incorrect. -- Lawrence 2004-05-11
4352 (let* ((tgt (first (erc-response.command-args parsed)))
4353 (mode (erc-response.contents parsed))
4354 (whoset (erc-response.sender parsed))
4355 (buffer (erc-get-buffer tgt proc)))
4356 (when buffer
4357 (with-current-buffer buffer
4358 (cond ((not (get 'erc-channel-banlist 'received-from-server)) nil)
4359 ((string-match "^\\([+-]\\)b" mode)
4360 ;; This is a ban
4361 (cond
4362 ((string-match "^-" mode)
4363 ;; Remove the unbanned masks from the ban list
4364 (setq erc-channel-banlist
4365 (erc-delete-if
4366 #'(lambda (y)
4367 (member (upcase (cdr y))
4368 (mapcar #'upcase
4369 (cdr (split-string mode)))))
4370 erc-channel-banlist)))
4371 ((string-match "^+" mode)
4372 ;; Add the banned mask(s) to the ban list
4373 (mapc
4374 (lambda (mask)
4375 (unless (member (cons whoset mask) erc-channel-banlist)
4376 (setq erc-channel-banlist
4377 (cons (cons whoset mask) erc-channel-banlist))))
4378 (cdr (split-string mode))))))))))
4379 nil)
4380
4381 ;; used for the banlist cmds
4382 (defun erc-group-list (list n)
4383 "Group LIST into sublists of length N."
4384 (cond ((null list) nil)
4385 ((null (nthcdr n list)) (list list))
4386 (t (cons (erc-subseq list 0 n) (erc-group-list (nthcdr n list) n)))))
4387
4388
4389 ;;; MOTD numreplies
4390
4391 (defun erc-handle-login ()
4392 "Handle the logging in process of connection."
4393 (unless erc-logged-in
4394 (setq erc-logged-in t)
4395 (message "Logging in as \'%s\'... done" (erc-current-nick))
4396 ;; execute a startup script
4397 (let ((f (erc-select-startup-file)))
4398 (when f
4399 (erc-load-script f)))))
4400
4401 (defun erc-connection-established (proc parsed)
4402 "Run just after connection.
4403
4404 Set user modes and run `erc-after-connect' hook."
4405 (with-current-buffer (process-buffer proc)
4406 (unless erc-server-connected ; only once per session
4407 (let ((server (or erc-server-announced-name
4408 (erc-response.sender parsed)))
4409 (nick (car (erc-response.command-args parsed)))
4410 (buffer (process-buffer proc)))
4411 (setq erc-server-connected t)
4412 (erc-update-mode-line)
4413 (erc-set-initial-user-mode nick buffer)
4414 (erc-server-setup-periodical-ping buffer)
4415 (run-hook-with-args 'erc-after-connect server nick)))))
4416
4417 (defun erc-set-initial-user-mode (nick buffer)
4418 "If `erc-user-mode' is non-nil for NICK, set the user modes.
4419 The server buffer is given by BUFFER."
4420 (with-current-buffer buffer
4421 (when erc-user-mode
4422 (let ((mode (if (functionp erc-user-mode)
4423 (funcall erc-user-mode)
4424 erc-user-mode)))
4425 (when (stringp mode)
4426 (erc-log (format "changing mode for %s to %s" nick mode))
4427 (erc-server-send (format "MODE %s %s" nick mode)))))))
4428
4429 (defun erc-display-error-notice (parsed string)
4430 "Display STRING as an error notice.
4431
4432 See also `erc-display-message'."
4433 (erc-display-message
4434 parsed '(notice error) 'active string))
4435
4436 (defun erc-process-ctcp-query (proc parsed nick login host)
4437 ;; FIXME: This needs a proper docstring -- Lawrence 2004-01-08
4438 "Process a CTCP query."
4439 (let ((queries (delete "" (split-string (erc-response.contents parsed)
4440 "\C-a"))))
4441 (if (> (length queries) 4)
4442 (erc-display-message
4443 parsed (list 'notice 'error) proc 'ctcp-too-many)
4444 (if (= 0 (length queries))
4445 (erc-display-message
4446 parsed (list 'notice 'error) proc
4447 'ctcp-empty ?n nick)
4448 (while queries
4449 (let* ((type (upcase (car (split-string (car queries)))))
4450 (hook (intern-soft (concat "erc-ctcp-query-" type "-hook"))))
4451 (if (and hook (boundp hook))
4452 (if (string-equal type "ACTION")
4453 (run-hook-with-args-until-success
4454 hook proc parsed nick login host
4455 (car (erc-response.command-args parsed))
4456 (car queries))
4457 (when erc-paranoid
4458 (if (erc-current-nick-p
4459 (car (erc-response.command-args parsed)))
4460 (erc-display-message
4461 parsed 'error 'active 'ctcp-request
4462 ?n nick ?u login ?h host ?r (car queries))
4463 (erc-display-message
4464 parsed 'error 'active 'ctcp-request-to
4465 ?n nick ?u login ?h host ?r (car queries)
4466 ?t (car (erc-response.command-args parsed)))))
4467 (run-hook-with-args-until-success
4468 hook proc nick login host
4469 (car (erc-response.command-args parsed))
4470 (car queries)))
4471 (erc-display-message
4472 parsed (list 'notice 'error) proc
4473 'undefined-ctcp)))
4474 (setq queries (cdr queries)))))))
4475
4476 (defvar erc-ctcp-query-ACTION-hook '(erc-ctcp-query-ACTION))
4477
4478 (defun erc-ctcp-query-ACTION (proc parsed nick login host to msg)
4479 "Respond to a CTCP ACTION query."
4480 (when (string-match "^ACTION\\s-\\(.*\\)\\s-*$" msg)
4481 (let ((s (match-string 1 msg))
4482 (buf (or (erc-get-buffer to proc)
4483 (erc-get-buffer nick proc)
4484 (process-buffer proc))))
4485 (erc-display-message
4486 parsed 'action buf
4487 'ACTION ?n nick ?u login ?h host ?a s))))
4488
4489 (defvar erc-ctcp-query-CLIENTINFO-hook '(erc-ctcp-query-CLIENTINFO))
4490
4491 (defun erc-ctcp-query-CLIENTINFO (proc nick login host to msg)
4492 "Respond to a CTCP CLIENTINFO query."
4493 (when (string-match "^CLIENTINFO\\(\\s-*\\|\\s-+.*\\)$" msg)
4494 (let ((s (erc-client-info (erc-trim-string (match-string 1 msg)))))
4495 (unless erc-disable-ctcp-replies
4496 (erc-send-ctcp-notice nick (format "CLIENTINFO %s" s)))))
4497 nil)
4498
4499 (defvar erc-ctcp-query-ECHO-hook '(erc-ctcp-query-ECHO))
4500 (defun erc-ctcp-query-ECHO (proc nick login host to msg)
4501 "Respond to a CTCP ECHO query."
4502 (when (string-match "^ECHO\\s-+\\(.*\\)\\s-*$" msg)
4503 (let ((s (match-string 1 msg)))
4504 (unless erc-disable-ctcp-replies
4505 (erc-send-ctcp-notice nick (format "ECHO %s" s)))))
4506 nil)
4507
4508 (defvar erc-ctcp-query-FINGER-hook '(erc-ctcp-query-FINGER))
4509 (defun erc-ctcp-query-FINGER (proc nick login host to msg)
4510 "Respond to a CTCP FINGER query."
4511 (unless erc-disable-ctcp-replies
4512 (let ((s (if erc-anonymous-login
4513 (format "FINGER I'm %s." (erc-current-nick))
4514 (format "FINGER %s (%s@%s)."
4515 (user-full-name)
4516 (user-login-name)
4517 (system-name))))
4518 (ns (erc-time-diff erc-server-last-sent-time (erc-current-time))))
4519 (when (> ns 0)
4520 (setq s (concat s " Idle for " (erc-sec-to-time ns))))
4521 (erc-send-ctcp-notice nick s)))
4522 nil)
4523
4524 (defvar erc-ctcp-query-PING-hook '(erc-ctcp-query-PING))
4525 (defun erc-ctcp-query-PING (proc nick login host to msg)
4526 "Respond to a CTCP PING query."
4527 (when (string-match "^PING\\s-+\\(.*\\)" msg)
4528 (unless erc-disable-ctcp-replies
4529 (let ((arg (match-string 1 msg)))
4530 (erc-send-ctcp-notice nick (format "PING %s" arg)))))
4531 nil)
4532
4533 (defvar erc-ctcp-query-TIME-hook '(erc-ctcp-query-TIME))
4534 (defun erc-ctcp-query-TIME (proc nick login host to msg)
4535 "Respond to a CTCP TIME query."
4536 (unless erc-disable-ctcp-replies
4537 (erc-send-ctcp-notice nick (format "TIME %s" (current-time-string))))
4538 nil)
4539
4540 (defvar erc-ctcp-query-USERINFO-hook '(erc-ctcp-query-USERINFO))
4541 (defun erc-ctcp-query-USERINFO (proc nick login host to msg)
4542 "Respond to a CTCP USERINFO query."
4543 (unless erc-disable-ctcp-replies
4544 (erc-send-ctcp-notice nick (format "USERINFO %s" erc-user-information)))
4545 nil)
4546
4547 (defvar erc-ctcp-query-VERSION-hook '(erc-ctcp-query-VERSION))
4548 (defun erc-ctcp-query-VERSION (proc nick login host to msg)
4549 "Respond to a CTCP VERSION query."
4550 (unless erc-disable-ctcp-replies
4551 (erc-send-ctcp-notice
4552 nick (format
4553 "VERSION \C-bERC\C-b %s - an IRC client for emacs (\C-b%s\C-b)"
4554 erc-version-string
4555 erc-official-location)))
4556 nil)
4557
4558 (defun erc-process-ctcp-reply (proc parsed nick login host msg)
4559 "Process MSG as a CTCP reply."
4560 (let* ((type (car (split-string msg)))
4561 (hook (intern (concat "erc-ctcp-reply-" type "-hook"))))
4562 (if (boundp hook)
4563 (run-hook-with-args-until-success
4564 hook proc nick login host
4565 (car (erc-response.command-args parsed)) msg)
4566 (erc-display-message
4567 parsed 'notice 'active
4568 'CTCP-UNKNOWN ?n nick ?u login ?h host ?m msg))))
4569
4570 (defvar erc-ctcp-reply-ECHO-hook '(erc-ctcp-reply-ECHO))
4571 (defun erc-ctcp-reply-ECHO (proc nick login host to msg)
4572 "Handle a CTCP ECHO reply."
4573 (when (string-match "^ECHO\\s-+\\(.*\\)\\s-*$" msg)
4574 (let ((message (match-string 1 msg)))
4575 (erc-display-message
4576 nil '(notice action) 'active
4577 'CTCP-ECHO ?n nick ?m message)))
4578 nil)
4579
4580 (defvar erc-ctcp-reply-CLIENTINFO-hook '(erc-ctcp-reply-CLIENTINFO))
4581 (defun erc-ctcp-reply-CLIENTINFO (proc nick login host to msg)
4582 "Handle a CTCP CLIENTINFO reply."
4583 (when (string-match "^CLIENTINFO\\s-+\\(.*\\)\\s-*$" msg)
4584 (let ((message (match-string 1 msg)))
4585 (erc-display-message
4586 nil 'notice 'active
4587 'CTCP-CLIENTINFO ?n nick ?m message)))
4588 nil)
4589
4590 (defvar erc-ctcp-reply-FINGER-hook '(erc-ctcp-reply-FINGER))
4591 (defun erc-ctcp-reply-FINGER (proc nick login host to msg)
4592 "Handle a CTCP FINGER reply."
4593 (when (string-match "^FINGER\\s-+\\(.*\\)\\s-*$" msg)
4594 (let ((message (match-string 1 msg)))
4595 (erc-display-message
4596 nil 'notice 'active
4597 'CTCP-FINGER ?n nick ?m message)))
4598 nil)
4599
4600 (defvar erc-ctcp-reply-PING-hook '(erc-ctcp-reply-PING))
4601 (defun erc-ctcp-reply-PING (proc nick login host to msg)
4602 "Handle a CTCP PING reply."
4603 (if (not (string-match "^PING\\s-+\\([0-9.]+\\)" msg))
4604 nil
4605 (let ((time (match-string 1 msg)))
4606 (condition-case nil
4607 (let ((delta (erc-time-diff (string-to-number time)
4608 (erc-current-time))))
4609 (erc-display-message
4610 nil 'notice 'active
4611 'CTCP-PING ?n nick
4612 ?t (erc-sec-to-time delta)))
4613 (range-error
4614 (erc-display-message
4615 nil 'error 'active
4616 'bad-ping-response ?n nick ?t time))))))
4617
4618 (defvar erc-ctcp-reply-TIME-hook '(erc-ctcp-reply-TIME))
4619 (defun erc-ctcp-reply-TIME (proc nick login host to msg)
4620 "Handle a CTCP TIME reply."
4621 (when (string-match "^TIME\\s-+\\(.*\\)\\s-*$" msg)
4622 (let ((message (match-string 1 msg)))
4623 (erc-display-message
4624 nil 'notice 'active
4625 'CTCP-TIME ?n nick ?m message)))
4626 nil)
4627
4628 (defvar erc-ctcp-reply-VERSION-hook '(erc-ctcp-reply-VERSION))
4629 (defun erc-ctcp-reply-VERSION (proc nick login host to msg)
4630 "Handle a CTCP VERSION reply."
4631 (when (string-match "^VERSION\\s-+\\(.*\\)\\s-*$" msg)
4632 (let ((message (match-string 1 msg)))
4633 (erc-display-message
4634 nil 'notice 'active
4635 'CTCP-VERSION ?n nick ?m message)))
4636 nil)
4637
4638 (defun erc-process-away (proc away-p)
4639 "Toggle the away status of the user depending on the value of AWAY-P.
4640
4641 If nil, set the user as away.
4642 If non-nil, return from being away."
4643 (let ((sessionbuf (process-buffer proc)))
4644 (when sessionbuf
4645 (with-current-buffer sessionbuf
4646 (when erc-away-nickname
4647 (erc-log (format "erc-process-away: away-nick: %s, away-p: %s"
4648 erc-away-nickname away-p))
4649 (erc-cmd-NICK (if away-p
4650 erc-away-nickname
4651 erc-nick)))
4652 (cond
4653 (away-p
4654 (setq erc-away (current-time)))
4655 (t
4656 (let ((away-time erc-away))
4657 ;; away must be set to NIL BEFORE sending anything to prevent
4658 ;; an infinite recursion
4659 (setq erc-away nil)
4660 (with-current-buffer (erc-active-buffer)
4661 (when erc-public-away-p
4662 (erc-send-action
4663 (erc-default-target)
4664 (if away-time
4665 (format "is back (gone for %s)"
4666 (erc-sec-to-time
4667 (erc-time-diff
4668 (erc-emacs-time-to-erc-time away-time)
4669 (erc-current-time))))
4670 "is back")))))))))
4671 (erc-update-mode-line)))
4672
4673 ;;;; List of channel members handling
4674
4675 (defun erc-channel-begin-receiving-names ()
4676 "Internal function.
4677
4678 Used when a channel names list is about to be received. Should
4679 be called with the current buffer set to the channel buffer.
4680
4681 See also `erc-channel-end-receiving-names'."
4682 (setq erc-channel-new-member-names (make-hash-table :test 'equal)))
4683
4684 (defun erc-channel-end-receiving-names ()
4685 "Internal function.
4686
4687 Used to fix `erc-channel-users' after a channel names list has been
4688 received. Should be called with the current buffer set to the
4689 channel buffer.
4690
4691 See also `erc-channel-begin-receiving-names'."
4692 (maphash (lambda (nick user)
4693 (if (null (gethash nick erc-channel-new-member-names))
4694 (erc-remove-channel-user nick)))
4695 erc-channel-users)
4696 (setq erc-channel-new-member-names nil))
4697
4698 (defun erc-parse-prefix ()
4699 "Return an alist of valid prefix character types and their representations.
4700 Example: (operator) o => @, (voiced) v => +."
4701 (let ((str (or (cdr (assoc "PREFIX" (erc-with-server-buffer
4702 erc-server-parameters)))
4703 ;; provide a sane default
4704 "(ov)@+"))
4705 types chars)
4706 (when (string-match "^(\\([^)]+\\))\\(.+\\)$" str)
4707 (setq types (match-string 1 str)
4708 chars (match-string 2 str))
4709 (let ((len (min (length types) (length chars)))
4710 (i 0)
4711 (alist nil))
4712 (while (< i len)
4713 (setq alist (cons (cons (elt types i) (elt chars i))
4714 alist))
4715 (setq i (1+ i)))
4716 alist))))
4717
4718 (defun erc-channel-receive-names (names-string)
4719 "This function is for internal use only.
4720
4721 Update `erc-channel-users' according to NAMES-STRING.
4722 NAMES-STRING is a string listing some of the names on the
4723 channel."
4724 (let (prefix op-ch voice-ch names name op voice)
4725 (setq prefix (erc-parse-prefix))
4726 (setq op-ch (cdr (assq ?o prefix))
4727 voice-ch (cdr (assq ?v prefix)))
4728 ;; We need to delete "" because in XEmacs, (split-string "a ")
4729 ;; returns ("a" "").
4730 (setq names (delete "" (split-string names-string)))
4731 (let ((erc-channel-members-changed-hook nil))
4732 (dolist (item names)
4733 (let ((updatep t)
4734 ch)
4735 (if (rassq (elt item 0) prefix)
4736 (cond ((= (length item) 1)
4737 (setq updatep nil))
4738 ((eq (elt item 0) op-ch)
4739 (setq name (substring item 1)
4740 op 'on
4741 voice 'off))
4742 ((eq (elt item 0) voice-ch)
4743 (setq name (substring item 1)
4744 op 'off
4745 voice 'on))
4746 (t (setq name (substring item 1)
4747 op 'off
4748 voice 'off)))
4749 (setq name item
4750 op 'off
4751 voice 'off))
4752 (when updatep
4753 (puthash (erc-downcase name) t
4754 erc-channel-new-member-names)
4755 (erc-update-current-channel-member
4756 name name t op voice)))))
4757 (run-hooks 'erc-channel-members-changed-hook)))
4758
4759 (defcustom erc-channel-members-changed-hook nil
4760 "This hook is called every time the variable `channel-members' changes.
4761 The buffer where the change happened is current while this hook is called."
4762 :group 'erc-hooks
4763 :type 'hook)
4764
4765 (defun erc-update-user-nick (nick &optional new-nick
4766 host login full-name info)
4767 "Updates the stored user information for the user with nickname
4768 NICK.
4769
4770 See also: `erc-update-user'."
4771 (erc-update-user (erc-get-server-user nick) new-nick
4772 host login full-name info))
4773
4774 (defun erc-update-user (user &optional new-nick
4775 host login full-name info)
4776 "Update user info for USER. USER must be an erc-server-user
4777 struct. Any of NEW-NICK, HOST, LOGIN, FULL-NAME, INFO which are
4778 non-nil and not equal to the existing values for USER are used to
4779 replace the stored values in USER.
4780
4781 If, and only if, a change is made,
4782 `erc-channel-members-changed-hook' is run for each channel for
4783 which USER is a member, and t is returned."
4784 (let (changed)
4785 (when user
4786 (when (and new-nick
4787 (not (equal (erc-server-user-nickname user)
4788 new-nick)))
4789 (setq changed t)
4790 (erc-change-user-nickname user new-nick))
4791 (when (and host
4792 (not (equal (erc-server-user-host user) host)))
4793 (setq changed t)
4794 (setf (erc-server-user-host user) host))
4795 (when (and login
4796 (not (equal (erc-server-user-login user) login)))
4797 (setq changed t)
4798 (setf (erc-server-user-login user) login))
4799 (when (and full-name
4800 (not (equal (erc-server-user-full-name user)
4801 full-name)))
4802 (setq changed t)
4803 (setf (erc-server-user-full-name user) full-name))
4804 (when (and info
4805 (not (equal (erc-server-user-info user) info)))
4806 (setq changed t)
4807 (setf (erc-server-user-info user) info))
4808 (if changed
4809 (dolist (buf (erc-server-user-buffers user))
4810 (if (buffer-live-p buf)
4811 (with-current-buffer buf
4812 (run-hooks 'erc-channel-members-changed-hook))))))
4813 changed))
4814
4815 (defun erc-update-current-channel-member
4816 (nick new-nick &optional add op voice host login full-name info
4817 update-message-time)
4818 "Updates the stored user information for the user with nickname
4819 NICK. `erc-update-user' is called to handle changes to nickname,
4820 HOST, LOGIN, FULL-NAME, and INFO. If OP or VOICE are non-nil,
4821 they must be equal to either `on' or `off', in which case the
4822 operator or voice status of the user in the current channel is
4823 changed accordingly. If UPDATE-MESSAGE-TIME is non-nil, the
4824 last-message-time of the user in the current channel is set
4825 to (current-time).
4826
4827 If ADD is non-nil, the user will be added with the specified
4828 information if it is not already present in the user or channel
4829 lists.
4830
4831 If, and only if, changes are made, or the user is added,
4832 `erc-channel-members-updated-hook' is run, and t is returned.
4833
4834 See also: `erc-update-user' and `erc-update-channel-member'."
4835 (let* (changed user-changed
4836 (channel-data (erc-get-channel-user nick))
4837 (cuser (if channel-data (cdr channel-data)))
4838 (user (if channel-data (car channel-data)
4839 (erc-get-server-user nick))))
4840 (if cuser
4841 (progn
4842 (erc-log (format "update-member: user = %S, cuser = %S" user cuser))
4843 (when (and op
4844 (not (eq (erc-channel-user-op cuser) op)))
4845 (setq changed t)
4846 (setf (erc-channel-user-op cuser)
4847 (cond ((eq op 'on) t)
4848 ((eq op 'off) nil)
4849 (t op))))
4850 (when (and voice
4851 (not (eq (erc-channel-user-voice cuser) voice)))
4852 (setq changed t)
4853 (setf (erc-channel-user-voice cuser)
4854 (cond ((eq voice 'on) t)
4855 ((eq voice 'off) nil)
4856 (t voice))))
4857 (when update-message-time
4858 (setf (erc-channel-user-last-message-time cuser) (current-time)))
4859 (setq user-changed
4860 (erc-update-user user new-nick
4861 host login full-name info)))
4862 (when add
4863 (if (null user)
4864 (progn
4865 (setq user (make-erc-server-user
4866 :nickname nick
4867 :host host
4868 :full-name full-name
4869 :login login
4870 :info info
4871 :buffers (list (current-buffer))))
4872 (erc-add-server-user nick user))
4873 (setf (erc-server-user-buffers user)
4874 (cons (current-buffer)
4875 (erc-server-user-buffers user))))
4876 (setq cuser (make-erc-channel-user
4877 :op (cond ((eq op 'on) t)
4878 ((eq op 'off) nil)
4879 (t op))
4880 :voice (cond ((eq voice 'on) t)
4881 ((eq voice 'off) nil)
4882 (t voice))
4883 :last-message-time
4884 (if update-message-time (current-time))))
4885 (puthash (erc-downcase nick) (cons user cuser)
4886 erc-channel-users)
4887 (setq changed t)))
4888 (when (and changed (null user-changed))
4889 (run-hooks 'erc-channel-members-changed-hook))
4890 (or changed user-changed add)))
4891
4892 (defun erc-update-channel-member (channel nick new-nick
4893 &optional add op voice host login
4894 full-name info update-message-time)
4895 "Updates user and channel information for the user with
4896 nickname NICK in channel CHANNEL.
4897
4898 See also: `erc-update-current-channel-member'."
4899 (erc-with-buffer
4900 (channel)
4901 (erc-update-current-channel-member nick new-nick add op voice host
4902 login full-name info
4903 update-message-time)))
4904
4905 (defun erc-remove-current-channel-member (nick)
4906 "Remove NICK from current channel membership list.
4907 Runs `erc-channel-members-changed-hook'."
4908 (let ((channel-data (erc-get-channel-user nick)))
4909 (when channel-data
4910 (erc-remove-channel-user nick)
4911 (run-hooks 'erc-channel-members-changed-hook))))
4912
4913 (defun erc-remove-channel-member (channel nick)
4914 "Remove NICK from CHANNEL's membership list.
4915
4916 See also `erc-remove-current-channel-member'."
4917 (erc-with-buffer
4918 (channel)
4919 (erc-remove-current-channel-member nick)))
4920
4921 (defun erc-update-channel-topic (channel topic &optional modify)
4922 "Find a buffer for CHANNEL and set the TOPIC for it.
4923
4924 If optional MODIFY is 'append or 'prepend, then append or prepend the
4925 TOPIC string to the current topic."
4926 (erc-with-buffer (channel)
4927 (cond ((eq modify 'append)
4928 (setq erc-channel-topic (concat erc-channel-topic topic)))
4929 ((eq modify 'prepend)
4930 (setq erc-channel-topic (concat topic erc-channel-topic)))
4931 (t (setq erc-channel-topic topic)))
4932 (erc-update-mode-line-buffer (current-buffer))))
4933
4934 (defun erc-set-modes (tgt mode-string)
4935 "Set the modes for the TGT provided as MODE-STRING."
4936 (let* ((modes (erc-parse-modes mode-string))
4937 (add-modes (nth 0 modes))
4938 (remove-modes (nth 1 modes))
4939 ;; list of triples: (mode-char 'on/'off argument)
4940 (arg-modes (nth 2 modes)))
4941 (cond ((erc-channel-p tgt); channel modes
4942 (let ((buf (and erc-server-process
4943 (erc-get-buffer tgt erc-server-process))))
4944 (when buf
4945 (with-current-buffer buf
4946 (setq erc-channel-modes add-modes)
4947 (setq erc-channel-user-limit nil)
4948 (setq erc-channel-key nil)
4949 (while arg-modes
4950 (let ((mode (nth 0 (car arg-modes)))
4951 (onoff (nth 1 (car arg-modes)))
4952 (arg (nth 2 (car arg-modes))))
4953 (cond ((string-match "^[Ll]" mode)
4954 (erc-update-channel-limit tgt onoff arg))
4955 ((string-match "^[Kk]" mode)
4956 (erc-update-channel-key tgt onoff arg))
4957 (t nil)))
4958 (setq arg-modes (cdr arg-modes)))
4959 (erc-update-mode-line-buffer buf)))))
4960 ;; we do not keep our nick's modes yet
4961 ;;(t (setq erc-user-modes add-modes))
4962 )
4963 ))
4964
4965 (defun erc-sort-strings (list-of-strings)
4966 "Sort LIST-OF-STRINGS in lexicographic order.
4967
4968 Side-effect free."
4969 (sort (copy-sequence list-of-strings) 'string<))
4970
4971 (defun erc-parse-modes (mode-string)
4972 "Parse MODE-STRING into a list.
4973
4974 Returns a list of three elements:
4975
4976 (ADD-MODES REMOVE-MODES ARG-MODES).
4977
4978 The add-modes and remove-modes are lists of single-character strings
4979 for modes without parameters to add and remove respectively. The
4980 arg-modes is a list of triples of the form:
4981
4982 (MODE-CHAR ON/OFF ARGUMENT)."
4983 (if (string-match "^\\s-*\\(\\S-+\\)\\(\\s-.*$\\|$\\)" mode-string)
4984 (let ((chars (mapcar 'char-to-string (match-string 1 mode-string)))
4985 ;; arguments in channel modes
4986 (args-str (match-string 2 mode-string))
4987 (args nil)
4988 (add-modes nil)
4989 (remove-modes nil)
4990 (arg-modes nil); list of triples: (mode-char 'on/'off argument)
4991 (add-p t))
4992 ;; make the argument list
4993 (while (string-match "^\\s-*\\(\\S-+\\)\\(\\s-+.*$\\|$\\)" args-str)
4994 (setq args (cons (match-string 1 args-str) args))
4995 (setq args-str (match-string 2 args-str)))
4996 (setq args (nreverse args))
4997 ;; collect what modes changed, and match them with arguments
4998 (while chars
4999 (cond ((string= (car chars) "+") (setq add-p t))
5000 ((string= (car chars) "-") (setq add-p nil))
5001 ((string-match "^[ovbOVB]" (car chars))
5002 (setq arg-modes (cons (list (car chars)
5003 (if add-p 'on 'off)
5004 (if args (car args) nil))
5005 arg-modes))
5006 (if args (setq args (cdr args))))
5007 ((string-match "^[LlKk]" (car chars))
5008 (setq arg-modes (cons (list (car chars)
5009 (if add-p 'on 'off)
5010 (if (and add-p args)
5011 (car args) nil))
5012 arg-modes))
5013 (if (and add-p args) (setq args (cdr args))))
5014 (add-p (setq add-modes (cons (car chars) add-modes)))
5015 (t (setq remove-modes (cons (car chars) remove-modes))))
5016 (setq chars (cdr chars)))
5017 (setq add-modes (nreverse add-modes))
5018 (setq remove-modes (nreverse remove-modes))
5019 (setq arg-modes (nreverse arg-modes))
5020 (list add-modes remove-modes arg-modes))
5021 nil))
5022
5023 (defun erc-update-modes (tgt mode-string &optional nick host login)
5024 "Update the mode information for TGT, provided as MODE-STRING.
5025 Optional arguments: NICK, HOST and LOGIN - the attributes of the
5026 person who changed the modes."
5027 (let* ((modes (erc-parse-modes mode-string))
5028 (add-modes (nth 0 modes))
5029 (remove-modes (nth 1 modes))
5030 ;; list of triples: (mode-char 'on/'off argument)
5031 (arg-modes (nth 2 modes)))
5032 ;; now parse the modes changes and do the updates
5033 (cond ((erc-channel-p tgt); channel modes
5034 (let ((buf (and erc-server-process
5035 (erc-get-buffer tgt erc-server-process))))
5036 (when buf
5037 ;; FIXME! This used to have an original buffer
5038 ;; variable, but it never switched back to the original
5039 ;; buffer. Is this wanted behavior?
5040 (set-buffer buf)
5041 (if (not (boundp 'erc-channel-modes))
5042 (setq erc-channel-modes nil))
5043 (while remove-modes
5044 (setq erc-channel-modes (delete (car remove-modes)
5045 erc-channel-modes)
5046 remove-modes (cdr remove-modes)))
5047 (while add-modes
5048 (setq erc-channel-modes (cons (car add-modes)
5049 erc-channel-modes)
5050 add-modes (cdr add-modes)))
5051 (setq erc-channel-modes (erc-sort-strings erc-channel-modes))
5052 (while arg-modes
5053 (let ((mode (nth 0 (car arg-modes)))
5054 (onoff (nth 1 (car arg-modes)))
5055 (arg (nth 2 (car arg-modes))))
5056 (cond ((string-match "^[oO]" mode)
5057 (erc-update-channel-member tgt arg arg nil onoff))
5058 ((string-match "^[Vv]" mode)
5059 (erc-update-channel-member tgt arg arg nil nil
5060 onoff))
5061 ((string-match "^[Ll]" mode)
5062 (erc-update-channel-limit tgt onoff arg))
5063 ((string-match "^[Kk]" mode)
5064 (erc-update-channel-key tgt onoff arg))
5065 (t nil)); only ops are tracked now
5066 (setq arg-modes (cdr arg-modes))))
5067 (erc-update-mode-line buf))))
5068 ;; nick modes - ignored at this point
5069 (t nil))))
5070
5071 (defun erc-update-channel-limit (channel onoff n)
5072 ;; FIXME: what does ONOFF actually do? -- Lawrence 2004-01-08
5073 "Update CHANNEL's user limit to N."
5074 (if (or (not (eq onoff 'on))
5075 (and (stringp n) (string-match "^[0-9]+$" n)))
5076 (erc-with-buffer
5077 (channel)
5078 (cond ((eq onoff 'on) (setq erc-channel-user-limit (string-to-number n)))
5079 (t (setq erc-channel-user-limit nil))))))
5080
5081 (defun erc-update-channel-key (channel onoff key)
5082 "Update CHANNEL's key to KEY if ONOFF is 'on or to nil if it's 'off."
5083 (erc-with-buffer
5084 (channel)
5085 (cond ((eq onoff 'on) (setq erc-channel-key key))
5086 (t (setq erc-channel-key nil)))))
5087
5088 (defun erc-handle-user-status-change (type nlh &optional l)
5089 "Handle changes in any user's status.
5090
5091 So far, only nick change is handled.
5092
5093 Generally, the TYPE argument is a symbol describing the change type, NLH is
5094 a list containing the original nickname, login name and hostname for the user,
5095 and L is a list containing additional TYPE-specific arguments.
5096
5097 So far the following TYPE/L pairs are supported:
5098
5099 Event TYPE L
5100
5101 nickname change 'nick (NEW-NICK)"
5102 (erc-log (format "user-change: type: %S nlh: %S l: %S" type nlh l))
5103 (cond
5104 ;; nickname change
5105 ((equal type 'nick)
5106 t)
5107 (t
5108 nil)))
5109
5110 (defun erc-highlight-notice (s)
5111 "Highlight notice message S and return it.
5112 See also variable `erc-notice-highlight-type'."
5113 (cond
5114 ((eq erc-notice-highlight-type 'prefix)
5115 (erc-put-text-property 0 (length erc-notice-prefix)
5116 'face 'erc-notice-face s)
5117 s)
5118 ((eq erc-notice-highlight-type 'all)
5119 (erc-put-text-property 0 (length s) 'face 'erc-notice-face s)
5120 s)
5121 (t s)))
5122
5123 (defun erc-make-notice (message)
5124 "Notify the user of MESSAGE."
5125 (when erc-minibuffer-notice
5126 (message "%s" message))
5127 (erc-highlight-notice (concat erc-notice-prefix message)))
5128
5129 (defun erc-highlight-error (s)
5130 "Highlight error message S and return it."
5131 (erc-put-text-property 0 (length s) 'face 'erc-error-face s)
5132 s)
5133
5134 (defun erc-put-text-property (start end property value &optional object)
5135 "Set text-property for an object (usually a string).
5136 START and END define the characters covered.
5137 PROPERTY is the text-property set, usually the symbol `face'.
5138 VALUE is the value for the text-property, usually a face symbol such as
5139 the face `bold' or `erc-pal-face'.
5140 OBJECT is a string which will be modified and returned.
5141 OBJECT is modified without being copied first.
5142
5143 You can redefine or `defadvice' this function in order to add
5144 EmacsSpeak support."
5145 (put-text-property start end property value object))
5146
5147 (defun erc-list (thing)
5148 "Return THING if THING is a list, or a list with THING as its element."
5149 (if (listp thing)
5150 thing
5151 (list thing)))
5152
5153 (defun erc-parse-user (string)
5154 "Parse STRING as a user specification (nick!login@host).
5155
5156 Return a list of the three separate tokens."
5157 (cond
5158 ((string-match "^\\([^!\n]*\\)!\\([^@\n]*\\)@\\(.*\\)$" string)
5159 (list (match-string 1 string)
5160 (match-string 2 string)
5161 (match-string 3 string)))
5162 ;; Some bogus bouncers send Nick!(null), try to live with that.
5163 ((string-match "^\\([^!\n]*\\)!\\(.*\\)$" string)
5164 (list (match-string 1 string)
5165 ""
5166 (match-string 2 string)))
5167 (t
5168 (list string "" ""))))
5169
5170 (defun erc-extract-nick (string)
5171 "Return the nick corresponding to a user specification STRING.
5172
5173 See also `erc-parse-user'."
5174 (car (erc-parse-user string)))
5175
5176 (defun erc-put-text-properties (start end properties
5177 &optional object value-list)
5178 "Set text-properties for OBJECT.
5179
5180 START and END describe positions in OBJECT.
5181 If VALUE-LIST is nil, set each property in PROPERTIES to t, else set
5182 each property to the corresponding value in VALUE-LIST."
5183 (unless value-list
5184 (setq value-list (mapcar (lambda (x)
5185 t)
5186 properties)))
5187 (while (and properties value-list)
5188 (erc-put-text-property
5189 start end (pop properties) (pop value-list) object)))
5190
5191 ;;; Input area handling:
5192
5193 (defun erc-beg-of-input-line ()
5194 "Return the value of `point' at the beginning of the input line.
5195
5196 Specifically, return the position of `erc-insert-marker'."
5197 (or (and (boundp 'erc-insert-marker)
5198 (markerp erc-insert-marker))
5199 (error "erc-insert-marker has no value, please report a bug"))
5200 (marker-position erc-insert-marker))
5201
5202 (defun erc-end-of-input-line ()
5203 "Return the value of `point' at the end of the input line."
5204 (point-max))
5205
5206 (defun erc-send-current-line ()
5207 "Parse current line and send it to IRC."
5208 (interactive)
5209 (save-restriction
5210 (widen)
5211 (if (< (point) (erc-beg-of-input-line))
5212 (erc-error "Point is not in the input area")
5213 (let ((inhibit-read-only t)
5214 (str (erc-user-input))
5215 (old-buf (current-buffer)))
5216 (if (and (not (erc-server-buffer-live-p))
5217 (not (erc-command-no-process-p str)))
5218 (erc-error "ERC: No process running")
5219 (erc-set-active-buffer (current-buffer))
5220
5221 ;; Kill the input and the prompt
5222 (delete-region (erc-beg-of-input-line)
5223 (erc-end-of-input-line))
5224
5225 (unwind-protect
5226 (erc-send-input str)
5227 ;; Fix the buffer if the command didn't kill it
5228 (when (buffer-live-p old-buf)
5229 (with-current-buffer old-buf
5230 (save-restriction
5231 (widen)
5232 (goto-char (point-max))
5233 (when (processp erc-server-process)
5234 (set-marker (process-mark erc-server-process) (point)))
5235 (set-marker erc-insert-marker (point))
5236 (let ((buffer-modified (buffer-modified-p)))
5237 (erc-display-prompt)
5238 (set-buffer-modified-p buffer-modified))))))
5239
5240 ;; Only when last hook has been run...
5241 (run-hook-with-args 'erc-send-completed-hook str))))))
5242
5243 (defun erc-user-input ()
5244 "Return the input of the user in the current buffer."
5245 (buffer-substring-no-properties
5246 erc-input-marker
5247 (erc-end-of-input-line)))
5248
5249 (defvar erc-command-regexp "^/\\([A-Za-z']+\\)\\(\\s-+.*\\|\\s-*\\)$"
5250 "Regular expression used for matching commands in ERC.")
5251
5252 (defun erc-send-input (input)
5253 "Treat INPUT as typed in by the user. It is assumed that the input
5254 and the prompt is already deleted.
5255 This returns non-nil only if we actually send anything."
5256 ;; Handle different kinds of inputs
5257 (cond
5258 ;; Ignore empty input
5259 ((if erc-send-whitespace-lines
5260 (string= input "")
5261 (string-match "\\`[ \t\r\f\n]*\\'" input))
5262 (when erc-warn-about-blank-lines
5263 (message "Blank line - ignoring...")
5264 (beep))
5265 nil)
5266 (t
5267 (let ((str input)
5268 (erc-insert-this t))
5269 (setq erc-send-this t)
5270 (run-hook-with-args 'erc-send-pre-hook input)
5271 (when erc-send-this
5272 (if (or (string-match "\n" str)
5273 (not (string-match erc-command-regexp str)))
5274 (mapc
5275 (lambda (line)
5276 (mapc
5277 (lambda (line)
5278 ;; Insert what has to be inserted for this.
5279 (erc-display-msg line)
5280 (erc-process-input-line (concat line "\n")
5281 (null erc-flood-protect) t))
5282 (or (and erc-flood-protect (erc-split-line line))
5283 (list line))))
5284 (split-string str "\n"))
5285 ;; Insert the prompt along with the command.
5286 (erc-display-command str)
5287 (erc-process-input-line (concat str "\n") t nil))
5288 t)))))
5289
5290 (defun erc-display-command (line)
5291 (when erc-insert-this
5292 (let ((insert-position (point)))
5293 (unless erc-hide-prompt
5294 (erc-display-prompt nil nil (erc-command-indicator)
5295 (and (erc-command-indicator)
5296 'erc-command-indicator-face)))
5297 (let ((beg (point)))
5298 (insert line)
5299 (erc-put-text-property beg (point)
5300 'face 'erc-command-indicator-face)
5301 (insert "\n"))
5302 (when (processp erc-server-process)
5303 (set-marker (process-mark erc-server-process) (point)))
5304 (set-marker erc-insert-marker (point))
5305 (save-excursion
5306 (save-restriction
5307 (narrow-to-region insert-position (point))
5308 (run-hooks 'erc-send-modify-hook)
5309 (run-hooks 'erc-send-post-hook))))))
5310
5311 (defun erc-display-msg (line)
5312 "Display LINE as a message of the user to the current target at the
5313 current position."
5314 (when erc-insert-this
5315 (let ((insert-position (point)))
5316 (insert (erc-format-my-nick))
5317 (let ((beg (point)))
5318 (insert line)
5319 (erc-put-text-property beg (point)
5320 'face 'erc-input-face))
5321 (insert "\n")
5322 (when (processp erc-server-process)
5323 (set-marker (process-mark erc-server-process) (point)))
5324 (set-marker erc-insert-marker (point))
5325 (save-excursion
5326 (save-restriction
5327 (narrow-to-region insert-position (point))
5328 (run-hooks 'erc-send-modify-hook)
5329 (run-hooks 'erc-send-post-hook))))))
5330
5331 (defun erc-command-symbol (command)
5332 "Return the ERC command symbol for COMMAND if it exists and is bound."
5333 (let ((cmd (intern-soft (format "erc-cmd-%s" (upcase command)))))
5334 (when (fboundp cmd) cmd)))
5335
5336 (defun erc-extract-command-from-line (line)
5337 "Extract command and args from the input LINE.
5338 If no command was given, return nil. If command matches, return a
5339 list of the form: (command args) where both elements are strings."
5340 (when (string-match erc-command-regexp line)
5341 (let* ((cmd (erc-command-symbol (match-string 1 line)))
5342 ;; note: return is nil, we apply this simply for side effects
5343 (canon-defun (while (and cmd (symbolp (symbol-function cmd)))
5344 (setq cmd (symbol-function cmd))))
5345 (cmd-fun (or cmd #'erc-cmd-default))
5346 (arg (if cmd
5347 (if (get cmd-fun 'do-not-parse-args)
5348 (format "%s" (match-string 2 line))
5349 (delete "" (split-string (erc-trim-string
5350 (match-string 2 line)) " ")))
5351 line)))
5352 (list cmd-fun arg))))
5353
5354 (defun erc-split-multiline-safe (string)
5355 "Split STRING, containing multiple lines and return them in a list.
5356 Do it only for STRING as the complete input, do not carry unfinished
5357 strings over to the next call."
5358 (let ((l ())
5359 (i0 0)
5360 (doit t))
5361 (while doit
5362 (let ((i (string-match "\r?\n" string i0))
5363 (s (substring string i0)))
5364 (cond (i (setq l (cons (substring string i0 i) l))
5365 (setq i0 (match-end 0)))
5366 ((> (length s) 0)
5367 (setq l (cons s l))(setq doit nil))
5368 (t (setq doit nil)))))
5369 (nreverse l)))
5370
5371 ;; nick handling
5372
5373 (defun erc-set-current-nick (nick)
5374 "Set the current nickname to NICK."
5375 (with-current-buffer (if (buffer-live-p (erc-server-buffer))
5376 (erc-server-buffer)
5377 (current-buffer))
5378 (setq erc-server-current-nick nick)))
5379
5380 (defun erc-current-nick ()
5381 "Return the current nickname."
5382 (with-current-buffer (if (buffer-live-p (erc-server-buffer))
5383 (erc-server-buffer)
5384 (current-buffer))
5385 erc-server-current-nick))
5386
5387 (defun erc-current-nick-p (nick)
5388 "Return non-nil if NICK is the current nickname."
5389 (erc-nick-equal-p nick (erc-current-nick)))
5390
5391 (defun erc-nick-equal-p (nick1 nick2)
5392 "Return non-nil if NICK1 and NICK2 are the same.
5393
5394 This matches strings according to the IRC protocol's case convention.
5395
5396 See also `erc-downcase'."
5397 (string= (erc-downcase nick1)
5398 (erc-downcase nick2)))
5399
5400 ;; default target handling
5401
5402 (defun erc-default-target ()
5403 "Return the current default target (as a character string) or nil if none."
5404 (let ((tgt (car erc-default-recipients)))
5405 (cond
5406 ((not tgt) nil)
5407 ((listp tgt) (cdr tgt))
5408 (t tgt))))
5409
5410 (defun erc-add-default-channel (channel)
5411 "Add CHANNEL to the default channel list."
5412
5413 (let ((d1 (car erc-default-recipients))
5414 (d2 (cdr erc-default-recipients))
5415 (chl (downcase channel)))
5416 (setq erc-default-recipients
5417 (cons chl erc-default-recipients))))
5418
5419 (defun erc-delete-default-channel (channel &optional buffer)
5420 "Delete CHANNEL from the default channel list."
5421 (let ((ob (current-buffer)))
5422 (with-current-buffer (if (and buffer
5423 (bufferp buffer))
5424 buffer
5425 (current-buffer))
5426 (setq erc-default-recipients (delete (downcase channel)
5427 erc-default-recipients)))))
5428
5429 (defun erc-add-query (nickname)
5430 "Add QUERY'd NICKNAME to the default channel list.
5431
5432 The previous default target of QUERY type gets removed."
5433 (let ((d1 (car erc-default-recipients))
5434 (d2 (cdr erc-default-recipients))
5435 (qt (cons 'QUERY (downcase nickname))))
5436 (if (and (listp d1)
5437 (eq (car d1) 'QUERY))
5438 (setq erc-default-recipients (cons qt d2))
5439 (setq erc-default-recipients (cons qt erc-default-recipients)))))
5440
5441 (defun erc-delete-query ()
5442 "Delete the topmost target if it is a QUERY."
5443
5444 (let ((d1 (car erc-default-recipients))
5445 (d2 (cdr erc-default-recipients)))
5446 (if (and (listp d1)
5447 (eq (car d1) 'QUERY))
5448 (setq erc-default-recipients d2)
5449 (error "Current target is not a QUERY"))))
5450
5451 (defun erc-ignored-user-p (spec)
5452 "Return non-nil if SPEC matches something in `erc-ignore-list'.
5453
5454 Takes a full SPEC of a user in the form \"nick!login@host\", and
5455 matches against all the regexp's in `erc-ignore-list'. If any
5456 match, returns that regexp."
5457 (catch 'found
5458 (dolist (ignored (erc-with-server-buffer erc-ignore-list))
5459 (if (string-match ignored spec)
5460 (throw 'found ignored)))))
5461
5462 (defun erc-ignored-reply-p (msg tgt proc)
5463 ;; FIXME: this docstring needs fixing -- Lawrence 2004-01-08
5464 "Return non-nil if MSG matches something in `erc-ignore-reply-list'.
5465
5466 Takes a message MSG to a channel and returns non-nil if the addressed
5467 user matches any regexp in `erc-ignore-reply-list'."
5468 (let ((target-nick (erc-message-target msg)))
5469 (if (not target-nick)
5470 nil
5471 (erc-with-buffer (tgt proc)
5472 (let ((user (erc-get-server-user target-nick)))
5473 (when user
5474 (erc-list-match erc-ignore-reply-list
5475 (erc-user-spec user))))))))
5476
5477 (defun erc-message-target (msg)
5478 "Return the addressed target in MSG.
5479
5480 The addressed target is the string before the first colon in MSG."
5481 (if (string-match "^\\([^: \n]*\\):" msg)
5482 (match-string 1 msg)
5483 nil))
5484
5485 (defun erc-user-spec (user)
5486 "Create a nick!user@host spec from a user struct."
5487 (let ((nick (erc-server-user-nickname user))
5488 (host (erc-server-user-host user))
5489 (login (erc-server-user-login user)))
5490 (concat (if nick
5491 nick
5492 "")
5493 "!"
5494 (if login
5495 login
5496 "")
5497 "@"
5498 (if host
5499 host
5500 ""))))
5501
5502 (defun erc-list-match (lst str)
5503 "Return non-nil if any regexp in LST matches STR."
5504 (memq nil (mapcar (lambda (regexp)
5505 (not (string-match regexp str)))
5506 lst)))
5507
5508 ;; other "toggles"
5509
5510 (defun erc-toggle-ctcp-autoresponse (&optional arg)
5511 "Toggle automatic CTCP replies (like VERSION and PING).
5512
5513 If ARG is positive, turns CTCP replies on.
5514
5515 If ARG is non-nil and not positive, turns CTCP replies off."
5516 (interactive "P")
5517 (cond ((and (numberp arg) (> arg 0))
5518 (setq erc-disable-ctcp-replies t))
5519 (arg (setq erc-disable-ctcp-replies nil))
5520 (t (setq erc-disable-ctcp-replies (not erc-disable-ctcp-replies))))
5521 (message "ERC CTCP replies are %s" (if erc-disable-ctcp-replies "OFF" "ON")))
5522
5523 (defun erc-toggle-flood-control (&optional arg)
5524 "Toggle use of flood control on sent messages.
5525
5526 If ARG is positive, use flood control.
5527 If ARG is non-nil and not positive, do not use flood control.
5528
5529 See `erc-server-flood-margin' for an explanation of the available
5530 flood control parameters."
5531 (interactive "P")
5532 (cond ((and (numberp arg) (> arg 0))
5533 (setq erc-flood-protect t))
5534 (arg (setq erc-flood-protect nil))
5535 (t (setq erc-flood-protect (not erc-flood-protect))))
5536 (message "ERC flood control is %s"
5537 (cond (erc-flood-protect "ON")
5538 (t "OFF"))))
5539
5540 ;; Some useful channel and nick commands for fast key bindings
5541
5542 (defun erc-invite-only-mode (&optional arg)
5543 "Turn on the invite only mode (+i) for the current channel.
5544
5545 If ARG is non-nil, turn this mode off (-i).
5546
5547 This command is sent even if excess flood is detected."
5548 (interactive "P")
5549 (erc-set-active-buffer (current-buffer))
5550 (let ((tgt (erc-default-target))
5551 (erc-force-send t))
5552 (cond ((or (not tgt) (not (erc-channel-p tgt)))
5553 (erc-display-message nil 'error (current-buffer) 'no-target))
5554 (arg (erc-load-irc-script-lines (list (concat "/mode " tgt " -i"))
5555 t))
5556 (t (erc-load-irc-script-lines (list (concat "/mode " tgt " +i"))
5557 t)))))
5558
5559 (defun erc-get-channel-mode-from-keypress (key)
5560 "Read a key sequence and call the corresponding channel mode function.
5561 After doing C-c C-o, type in a channel mode letter.
5562
5563 C-g means quit.
5564 RET lets you type more than one mode at a time.
5565 If \"l\" is pressed, `erc-set-channel-limit' gets called.
5566 If \"k\" is pressed, `erc-set-channel-key' gets called.
5567 Anything else will be sent to `erc-toggle-channel-mode'."
5568 (interactive "kChannel mode (RET to set more than one): ")
5569 (when (featurep 'xemacs)
5570 (setq key (char-to-string (event-to-character (aref key 0)))))
5571 (cond ((equal key "\C-g")
5572 (keyboard-quit))
5573 ((equal key "\C-m")
5574 (erc-insert-mode-command))
5575 ((equal key "l")
5576 (call-interactively 'erc-set-channel-limit))
5577 ((equal key "k")
5578 (call-interactively 'erc-set-channel-key))
5579 (t (erc-toggle-channel-mode key))))
5580
5581 (defun erc-toggle-channel-mode (mode &optional channel)
5582 "Toggle channel MODE.
5583
5584 If CHANNEL is non-nil, toggle MODE for that channel, otherwise use
5585 `erc-default-target'."
5586 (interactive "P")
5587 (erc-set-active-buffer (current-buffer))
5588 (let ((tgt (or channel (erc-default-target)))
5589 (erc-force-send t))
5590 (cond ((or (null tgt) (null (erc-channel-p tgt)))
5591 (erc-display-message nil 'error 'active 'no-target))
5592 ((member mode erc-channel-modes)
5593 (erc-log (format "%s: Toggle mode %s OFF" tgt mode))
5594 (message "Toggle channel mode %s OFF" mode)
5595 (erc-server-send (format "MODE %s -%s" tgt mode)))
5596 (t (erc-log (format "%s: Toggle channel mode %s ON" tgt mode))
5597 (message "Toggle channel mode %s ON" mode)
5598 (erc-server-send (format "MODE %s +%s" tgt mode))))))
5599
5600 (defun erc-insert-mode-command ()
5601 "Insert the line \"/mode <current target> \" at `point'."
5602 (interactive)
5603 (let ((tgt (erc-default-target)))
5604 (if tgt (insert (concat "/mode " tgt " "))
5605 (erc-display-message nil 'error (current-buffer) 'no-target))))
5606
5607 (defun erc-channel-names ()
5608 "Run \"/names #channel\" in the current channel."
5609 (interactive)
5610 (erc-set-active-buffer (current-buffer))
5611 (let ((tgt (erc-default-target)))
5612 (if tgt (erc-load-irc-script-lines (list (concat "/names " tgt)))
5613 (erc-display-message nil 'error (current-buffer) 'no-target))))
5614
5615 (defun erc-remove-text-properties-region (start end &optional object)
5616 "Clears the region (START,END) in OBJECT from all colors, etc."
5617 (interactive "r")
5618 (save-excursion
5619 (let ((inhibit-read-only t))
5620 (set-text-properties start end nil object))))
5621 (put 'erc-remove-text-properties-region 'disabled t)
5622
5623 ;; script execution and startup
5624
5625 (defun erc-find-file (file &optional path)
5626 "Search for a FILE in the filesystem.
5627 First the `default-directory' is searched for FILE, then any directories
5628 specified in the list PATH.
5629
5630 If FILE is found, return the path to it."
5631 (let ((filepath file))
5632 (if (file-readable-p filepath) filepath
5633 (progn
5634 (while (and path
5635 (progn (setq filepath (expand-file-name file (car path)))
5636 (not (file-readable-p filepath))))
5637 (setq path (cdr path)))
5638 (if path filepath nil)))))
5639
5640 (defun erc-select-startup-file ()
5641 "Select an ERC startup file.
5642 See also `erc-startup-file-list'."
5643 (catch 'found
5644 (dolist (f erc-startup-file-list)
5645 (setq f (convert-standard-filename f))
5646 (when (file-readable-p f)
5647 (throw 'found f)))))
5648
5649 (defun erc-find-script-file (file)
5650 "Search for FILE in `default-directory', and any in `erc-script-path'."
5651 (erc-find-file file erc-script-path))
5652
5653 (defun erc-load-script (file)
5654 "Load a script from FILE.
5655
5656 FILE must be the full name, it is not searched in the
5657 `erc-script-path'. If the filename ends with `.el', then load it
5658 as an Emacs Lisp program. Otherwise, treat it as a regular IRC
5659 script."
5660 (erc-log (concat "erc-load-script: " file))
5661 (cond
5662 ((string-match "\\.el$" file)
5663 (load file))
5664 (t
5665 (erc-load-irc-script file))))
5666
5667 (defun erc-process-script-line (line &optional args)
5668 "Process an IRC script LINE.
5669
5670 Does script-specific substitutions (script arguments, current nick,
5671 server, etc.) in LINE and returns it.
5672
5673 Substitutions are: %C and %c = current target (channel or nick),
5674 %S %s = current server, %N %n = my current nick, and %x is x verbatim,
5675 where x is any other character;
5676 $* = the entire argument string, $1 = the first argument, $2 = the second,
5677 and so on."
5678 (if (not args) (setq args ""))
5679 (let* ((arg-esc-regexp "\\(\\$\\(\\*\\|[1-9][0-9]*\\)\\)\\([^0-9]\\|$\\)")
5680 (percent-regexp "\\(%.\\)")
5681 (esc-regexp (concat arg-esc-regexp "\\|" percent-regexp))
5682 (tgt (erc-default-target))
5683 (server (and (boundp 'erc-session-server) erc-session-server))
5684 (nick (erc-current-nick))
5685 (res "")
5686 (tmp nil)
5687 (arg-list nil)
5688 (arg-num 0))
5689 (if (not tgt) (setq tgt ""))
5690 (if (not server) (setq server ""))
5691 (if (not nick) (setq nick ""))
5692 ;; First, compute the argument list
5693 (setq tmp args)
5694 (while (string-match "^\\s-*\\(\\S-+\\)\\(\\s-+.*$\\|$\\)" tmp)
5695 (setq arg-list (cons (match-string 1 tmp) arg-list))
5696 (setq tmp (match-string 2 tmp)))
5697 (setq arg-list (nreverse arg-list))
5698 (setq arg-num (length arg-list))
5699 ;; now do the substitution
5700 (setq tmp (string-match esc-regexp line))
5701 (while tmp
5702 ;;(message "beginning of while: tmp=%S" tmp)
5703 (let* ((hd (substring line 0 tmp))
5704 (esc "")
5705 (subst "")
5706 (tail (substring line tmp)))
5707 (cond ((string-match (concat "^" arg-esc-regexp) tail)
5708 (setq esc (match-string 1 tail))
5709 (setq tail (substring tail (match-end 1))))
5710 ((string-match (concat "^" percent-regexp) tail)
5711 (setq esc (match-string 1 tail))
5712 (setq tail (substring tail (match-end 1)))))
5713 ;;(message "hd=%S, esc=%S, tail=%S, arg-num=%S" hd esc tail arg-num)
5714 (setq res (concat res hd))
5715 (setq subst
5716 (cond ((string= esc "") "")
5717 ((string-match "^\\$\\*$" esc) args)
5718 ((string-match "^\\$\\([0-9]+\\)$" esc)
5719 (let ((n (string-to-number (match-string 1 esc))))
5720 (message "n = %S, integerp(n)=%S" n (integerp n))
5721 (if (<= n arg-num) (nth (1- n) arg-list) "")))
5722 ((string-match "^%[Cc]$" esc) tgt)
5723 ((string-match "^%[Ss]$" esc) server)
5724 ((string-match "^%[Nn]$" esc) nick)
5725 ((string-match "^%\\(.\\)$" esc) (match-string 1 esc))
5726 (t (erc-log (format "BUG in erc-process-script-line: bad escape sequence: %S\n" esc))
5727 (message "BUG IN ERC: esc=%S" esc)
5728 "")))
5729 (setq line tail)
5730 (setq tmp (string-match esc-regexp line))
5731 (setq res (concat res subst))
5732 ;;(message "end of while: line=%S, res=%S, tmp=%S" line res tmp)
5733 ))
5734 (setq res (concat res line))
5735 res))
5736
5737 (defun erc-load-irc-script (file &optional force)
5738 "Load an IRC script from FILE."
5739 (erc-log (concat "erc-load-script: " file))
5740 (let ((str (with-temp-buffer
5741 (insert-file-contents file)
5742 (buffer-string))))
5743 (erc-load-irc-script-lines (erc-split-multiline-safe str) force)))
5744
5745 (defun erc-load-irc-script-lines (lines &optional force noexpand)
5746 "Load IRC script LINES (a list of strings).
5747
5748 If optional NOEXPAND is non-nil, do not expand script-specific
5749 sequences, process the lines verbatim. Use this for multiline
5750 user input."
5751 (let* ((cb (current-buffer))
5752 (pnt (point))
5753 (s "")
5754 (sp (or (erc-command-indicator) (erc-prompt)))
5755 (args (and (boundp 'erc-script-args) erc-script-args)))
5756 (if (and args (string-match "^ " args))
5757 (setq args (substring args 1)))
5758 ;; prepare the prompt string for echo
5759 (erc-put-text-property 0 (length sp)
5760 'face 'erc-command-indicator-face sp)
5761 (while lines
5762 (setq s (car lines))
5763 (erc-log (concat "erc-load-script: CMD: " s))
5764 (unless (string-match "^\\s-*$" s)
5765 (let ((line (if noexpand s (erc-process-script-line s args))))
5766 (if (and (erc-process-input-line line force)
5767 erc-script-echo)
5768 (progn
5769 (erc-put-text-property 0 (length line)
5770 'face 'erc-input-face line)
5771 (erc-display-line (concat sp line) cb)))))
5772 (setq lines (cdr lines)))))
5773
5774 ;; authentication
5775
5776 (defun erc-login ()
5777 "Perform user authentication at the IRC server."
5778 (erc-log (format "login: nick: %s, user: %s %s %s :%s"
5779 (erc-current-nick)
5780 (user-login-name)
5781 (or erc-system-name (system-name))
5782 erc-session-server
5783 erc-session-user-full-name))
5784 (if erc-session-password
5785 (erc-server-send (format "PASS %s" erc-session-password))
5786 (message "Logging in without password"))
5787 (erc-server-send (format "NICK %s" (erc-current-nick)))
5788 (erc-server-send
5789 (format "USER %s %s %s :%s"
5790 ;; hacked - S.B.
5791 (if erc-anonymous-login erc-email-userid (user-login-name))
5792 "0" "*"
5793 erc-session-user-full-name))
5794 (erc-update-mode-line))
5795
5796 ;; connection properties' heuristics
5797
5798 (defun erc-determine-parameters (&optional server port nick name)
5799 "Determine the connection and authentication parameters.
5800 Sets the buffer local variables:
5801
5802 - `erc-session-connector'
5803 - `erc-session-server'
5804 - `erc-session-port'
5805 - `erc-session-full-name'
5806 - `erc-server-current-nick'"
5807 (setq erc-session-connector erc-server-connect-function
5808 erc-session-server (erc-compute-server server)
5809 erc-session-port (or port erc-default-port)
5810 erc-session-user-full-name (erc-compute-full-name name))
5811 (erc-set-current-nick (erc-compute-nick nick)))
5812
5813 (defun erc-compute-server (&optional server)
5814 "Return an IRC server name.
5815
5816 This tries a number of increasingly more default methods until a
5817 non-nil value is found.
5818
5819 - SERVER (the argument passed to this function)
5820 - The `erc-server' option
5821 - The value of the IRCSERVER environment variable
5822 - The `erc-default-server' variable"
5823 (or server
5824 erc-server
5825 (getenv "IRCSERVER")
5826 erc-default-server))
5827
5828 (defun erc-compute-nick (&optional nick)
5829 "Return user's IRC nick.
5830
5831 This tries a number of increasingly more default methods until a
5832 non-nil value is found.
5833
5834 - NICK (the argument passed to this function)
5835 - The `erc-nick' option
5836 - The value of the IRCNICK environment variable
5837 - The result from the `user-login-name' function"
5838 (or nick
5839 (if (consp erc-nick) (car erc-nick) erc-nick)
5840 (getenv "IRCNICK")
5841 (user-login-name)))
5842
5843
5844 (defun erc-compute-full-name (&optional full-name)
5845 "Return user's full name.
5846
5847 This tries a number of increasingly more default methods until a
5848 non-nil value is found.
5849
5850 - FULL-NAME (the argument passed to this function)
5851 - The `erc-user-full-name' option
5852 - The value of the IRCNAME environment variable
5853 - The result from the `user-full-name' function"
5854 (or full-name
5855 erc-user-full-name
5856 (getenv "IRCNAME")
5857 (if erc-anonymous-login "unknown" nil)
5858 (user-full-name)))
5859
5860 (defun erc-compute-port (&optional port)
5861 "Return a port for an IRC server.
5862
5863 This tries a number of increasingly more default methods until a
5864 non-nil value is found.
5865
5866 - PORT (the argument passed to this function)
5867 - The `erc-port' option
5868 - The `erc-default-port' variable"
5869 (or port erc-port erc-default-port))
5870
5871 ;; time routines
5872
5873 (defun erc-string-to-emacs-time (string)
5874 "Convert the long number represented by STRING into an Emacs format.
5875 Returns a list of the form (HIGH LOW), compatible with Emacs time format."
5876 (let* ((n (string-to-number (concat string ".0"))))
5877 (list (truncate (/ n 65536))
5878 (truncate (mod n 65536)))))
5879
5880 (defun erc-emacs-time-to-erc-time (time)
5881 "Convert Emacs TIME to a number of seconds since the epoch."
5882 (when time
5883 (+ (* (nth 0 time) 65536.0) (nth 1 time))))
5884 ; (round (+ (* (nth 0 tm) 65536.0) (nth 1 tm))))
5885
5886 (defun erc-current-time ()
5887 "Return the `current-time' as a number of seconds since the epoch.
5888
5889 See also `erc-emacs-time-to-erc-time'."
5890 (erc-emacs-time-to-erc-time (current-time)))
5891
5892 (defun erc-time-diff (t1 t2)
5893 "Return the time difference in seconds between T1 and T2."
5894 (abs (- t2 t1)))
5895
5896 (defun erc-time-gt (t1 t2)
5897 "Check whether T1 > T2."
5898 (> t1 t2))
5899
5900 (defun erc-sec-to-time (ns)
5901 "Convert NS to a time string HH:MM.SS."
5902 (setq ns (truncate ns))
5903 (format "%02d:%02d.%02d"
5904 (/ ns 3600)
5905 (/ (% ns 3600) 60)
5906 (% ns 60)))
5907
5908 (defun erc-seconds-to-string (seconds)
5909 "Convert a number of SECONDS into an English phrase."
5910 (let (days hours minutes format-args output)
5911 (setq days (/ seconds 86400)
5912 seconds (% seconds 86400)
5913 hours (/ seconds 3600)
5914 seconds (% seconds 3600)
5915 minutes (/ seconds 60)
5916 seconds (% seconds 60)
5917 format-args (if (> days 0)
5918 `("%d days, %d hours, %d minutes, %d seconds"
5919 ,days ,hours ,minutes ,seconds)
5920 (if (> hours 0)
5921 `("%d hours, %d minutes, %d seconds"
5922 ,hours ,minutes ,seconds)
5923 (if (> minutes 0)
5924 `("%d minutes, %d seconds" ,minutes ,seconds)
5925 `("%d seconds" ,seconds))))
5926 output (apply 'format format-args))
5927 ;; Change all "1 units" to "1 unit".
5928 (while (string-match "\\([^0-9]\\|^\\)1 \\S-+\\(s\\)" output)
5929 (setq output (erc-replace-match-subexpression-in-string
5930 "" output (match-string 2 output) 2 (match-beginning 2))))
5931 output))
5932
5933
5934 ;; info
5935
5936 (defconst erc-clientinfo-alist
5937 '(("ACTION" . "is used to inform about one's current activity")
5938 ("CLIENTINFO" . "gives help on CTCP commands supported by client")
5939 ("ECHO" . "echoes its arguments back")
5940 ("FINGER" . "shows user's name, location, and idle time")
5941 ("PING" . "measures delay between peers")
5942 ("TIME" . "shows client-side time")
5943 ("USERINFO" . "shows information provided by a user")
5944 ("VERSION" . "shows client type and version"))
5945 "Alist of CTCP CLIENTINFO for ERC commands.")
5946
5947 (defun erc-client-info (s)
5948 "Return CTCP CLIENTINFO on command S.
5949 If S is nil or an empty string then return general CLIENTINFO."
5950 (if (or (not s) (string= s ""))
5951 (concat
5952 (apply #'concat
5953 (mapcar (lambda (e)
5954 (concat (car e) " "))
5955 erc-clientinfo-alist))
5956 ": use CLIENTINFO <COMMAND> to get more specific information")
5957 (let ((h (assoc (upcase s) erc-clientinfo-alist)))
5958 (if h
5959 (concat s " " (cdr h))
5960 (concat s ": unknown command")))))
5961
5962 ;; Hook functions
5963
5964 (defun erc-directory-writable-p (dir)
5965 "Determine whether DIR is a writable directory.
5966 If it doesn't exist, create it."
5967 (unless (file-attributes dir) (make-directory dir))
5968 (or (file-accessible-directory-p dir) (error "Cannot access %s" dir)))
5969
5970 (defun erc-kill-query-buffers (process)
5971 "Kill all buffers of PROCESS."
5972 ;; here, we only want to match the channel buffers, to avoid
5973 ;; "selecting killed buffers" b0rkage.
5974 (erc-with-all-buffers-of-server process
5975 (lambda ()
5976 (not (erc-server-buffer-p)))
5977 (kill-buffer (current-buffer))))
5978
5979 (defun erc-nick-at-point ()
5980 "Give information about the nickname at `point'.
5981
5982 If called interactively, give a human readable message in the
5983 minibuffer. If called programmatically, return the corresponding
5984 entry of `channel-members'."
5985 (interactive)
5986 (require 'thingatpt)
5987 (let* ((word (word-at-point))
5988 (channel-data (erc-get-channel-user word))
5989 (cuser (cdr channel-data))
5990 (user (if channel-data
5991 (car channel-data)
5992 (erc-get-server-user word)))
5993 host login full-name info nick op voice)
5994 (when user
5995 (setq nick (erc-server-user-nickname user)
5996 host (erc-server-user-host user)
5997 login (erc-server-user-login user)
5998 full-name (erc-server-user-full-name user)
5999 info (erc-server-user-info user))
6000 (if cuser
6001 (setq op (erc-channel-user-op cuser)
6002 voice (erc-channel-user-voice cuser)))
6003 (if (interactive-p)
6004 (message "%s is %s@%s%s%s"
6005 nick login host
6006 (if full-name (format " (%s)" full-name) "")
6007 (if (or op voice)
6008 (format " and is +%s%s on %s"
6009 (if op "o" "")
6010 (if voice "v" "")
6011 (erc-default-target))
6012 ""))
6013 user))))
6014
6015 (defun erc-away-time ()
6016 "Return non-nil if the current ERC process is set away.
6017
6018 In particular, the time that we were set away is returned.
6019 See `current-time' for details on the time format."
6020 (erc-with-server-buffer erc-away))
6021
6022 ;; Mode line handling
6023
6024 (defcustom erc-mode-line-format "%S %a"
6025 "A string to be formatted and shown in the mode-line in `erc-mode'.
6026
6027 The string is formatted using `format-spec' and the result is set as the value
6028 of `mode-line-buffer-identification'.
6029
6030 The following characters are replaced:
6031 %a: String indicating away status or \"\" if you are not away
6032 %l: The estimated lag time to the server
6033 %m: The modes of the channel
6034 %n: The current nick name
6035 %N: The name of the network
6036 %o: The topic of the channel
6037 %p: The session port
6038 %t: The name of the target (channel, nickname, or servername:port)
6039 %s: In the server-buffer, this gets filled with the value of
6040 `erc-server-announced-name', in a channel, the value of
6041 (erc-default-target) also get concatenated.
6042 %S: In the server-buffer, this gets filled with the value of
6043 `erc-network', in a channel, the value of (erc-default-target)
6044 also get concatenated."
6045 :group 'erc-mode-line-and-header
6046 :type 'string)
6047
6048 (defcustom erc-header-line-format "%n on %t (%m,%l) %o"
6049 "A string to be formatted and shown in the header-line in `erc-mode'.
6050 Only used starting in Emacs 21.
6051
6052 Set this to nil if you do not want the header line to be
6053 displayed.
6054
6055 See `erc-mode-line-format' for which characters are can be used."
6056 :group 'erc-mode-line-and-header
6057 :set (lambda (sym val)
6058 (set sym val)
6059 (when (fboundp 'erc-update-mode-line)
6060 (erc-update-mode-line nil)))
6061 :type '(choice (const :tag "Disabled" nil)
6062 string))
6063
6064 (defcustom erc-header-line-uses-tabbar-p nil
6065 "Use tabbar mode instead of the header line to display the header."
6066 :group 'erc-mode-line-and-header
6067 :type 'boolean)
6068
6069 (defcustom erc-header-line-uses-help-echo-p t
6070 "Show the contents of the header line in the echo area or as a tooltip
6071 when you move point into the header line."
6072 :group 'erc-mode-line-and-header
6073 :type 'boolean)
6074
6075 (defcustom erc-header-line-face-method nil
6076 "Determine what method to use when colorizing the header line text.
6077
6078 If nil, don't colorize the header text.
6079 If given a function, call it and use the resulting face name.
6080 Otherwise, use the `erc-header-line' face."
6081 :group 'erc-mode-line-and-header
6082 :type '(choice (const :tag "Don't colorize" nil)
6083 (const :tag "Use the erc-header-line face" t)
6084 (function :tag "Call a function")))
6085
6086 (defcustom erc-show-channel-key-p t
6087 "Show the channel key in the header line."
6088 :group 'erc-paranoia
6089 :type 'boolean)
6090
6091 (defcustom erc-common-server-suffixes
6092 '(("openprojects.net$" . "OPN")
6093 ("freenode.net$" . "freenode")
6094 ("oftc.net$" . "OFTC"))
6095 "Alist of common server name suffixes.
6096 This variable is used in mode-line display to save screen
6097 real estate. Set it to nil if you want to avoid changing
6098 displayed hostnames."
6099 :group 'erc-mode-line-and-header
6100 :type 'alist)
6101
6102 (defcustom erc-mode-line-away-status-format
6103 "(AWAY since %a %b %d %H:%M) "
6104 "When you're away on a server, this is shown in the mode line.
6105 This should be a string with substitution variables recognized by
6106 `format-time-string'."
6107 :group 'erc-mode-line-and-header
6108 :type 'string)
6109
6110 (defun erc-shorten-server-name (server-name)
6111 "Shorten SERVER-NAME according to `erc-common-server-suffixes'."
6112 (if (stringp server-name)
6113 (with-temp-buffer
6114 (insert server-name)
6115 (let ((alist erc-common-server-suffixes))
6116 (while alist
6117 (goto-char (point-min))
6118 (if (re-search-forward (caar alist) nil t)
6119 (replace-match (cdar alist)))
6120 (setq alist (cdr alist))))
6121 (buffer-string))))
6122
6123 (defun erc-format-target ()
6124 "Return the name of the target (channel or nickname or servername:port)."
6125 (let ((target (erc-default-target)))
6126 (or target
6127 (concat (erc-shorten-server-name
6128 (or erc-server-announced-name
6129 erc-session-server))
6130 ":" (erc-port-to-string erc-session-port)))))
6131
6132 (defun erc-format-target-and/or-server ()
6133 "Return the server name or the current target and server name combined."
6134 (let ((server-name (erc-shorten-server-name
6135 (or erc-server-announced-name
6136 erc-session-server))))
6137 (cond ((erc-default-target)
6138 (concat (erc-string-no-properties (erc-default-target))
6139 "@" server-name))
6140 (server-name server-name)
6141 (t (buffer-name (current-buffer))))))
6142
6143 (defun erc-format-network ()
6144 "Return the name of the network we are currently on."
6145 (let ((network (and (fboundp 'erc-network-name) (erc-network-name))))
6146 (if (and network (symbolp network))
6147 (symbol-name network)
6148 "")))
6149
6150 (defun erc-format-target-and/or-network ()
6151 "Return the network or the current target and network combined.
6152 If the name of the network is not available, then use the
6153 shortened server name instead."
6154 (let ((network-name (or (and (fboundp 'erc-network-name) (erc-network-name))
6155 (erc-shorten-server-name
6156 (or erc-server-announced-name
6157 erc-session-server)))))
6158 (when (and network-name (symbolp network-name))
6159 (setq network-name (symbol-name network-name)))
6160 (cond ((erc-default-target)
6161 (concat (erc-string-no-properties (erc-default-target))
6162 "@" network-name))
6163 (network-name network-name)
6164 (t (buffer-name (current-buffer))))))
6165
6166 (defun erc-format-away-status ()
6167 "Return a formatted `erc-mode-line-away-status-format'
6168 if `erc-away' is non-nil."
6169 (let ((a (erc-away-time)))
6170 (if a
6171 (format-time-string erc-mode-line-away-status-format a)
6172 "")))
6173
6174 (defun erc-format-channel-modes ()
6175 "Return the current channel's modes."
6176 (concat (apply 'concat
6177 "+" erc-channel-modes)
6178 (cond ((and erc-channel-user-limit erc-channel-key)
6179 (if erc-show-channel-key-p
6180 (format "lk %.0f %s" erc-channel-user-limit
6181 erc-channel-key)
6182 (format "kl %.0f" erc-channel-user-limit)))
6183 (erc-channel-user-limit
6184 ;; Emacs has no bignums
6185 (format "l %.0f" erc-channel-user-limit))
6186 (erc-channel-key
6187 (if erc-show-channel-key-p
6188 (format "k %s" erc-channel-key)
6189 "k"))
6190 (t nil))))
6191
6192 (defun erc-format-lag-time ()
6193 "Return the estimated lag time to server, `erc-server-lag'."
6194 (let ((lag (erc-with-server-buffer erc-server-lag)))
6195 (cond (lag (format "lag:%.0f" lag))
6196 (t ""))))
6197
6198 ;; erc-goodies is required at end of this file.
6199 (declare-function erc-controls-strip "erc-goodies" (str))
6200
6201 (defvar tabbar--local-hlf)
6202
6203 (defun erc-update-mode-line-buffer (buffer)
6204 "Update the mode line in a single ERC buffer BUFFER."
6205 (with-current-buffer buffer
6206 (let ((spec (format-spec-make
6207 ?a (erc-format-away-status)
6208 ?l (erc-format-lag-time)
6209 ?m (erc-format-channel-modes)
6210 ?n (or (erc-current-nick) "")
6211 ?N (erc-format-network)
6212 ?o (erc-controls-strip erc-channel-topic)
6213 ?p (erc-port-to-string erc-session-port)
6214 ?s (erc-format-target-and/or-server)
6215 ?S (erc-format-target-and/or-network)
6216 ?t (erc-format-target)))
6217 (process-status (cond ((and (erc-server-process-alive)
6218 (not erc-server-connected))
6219 ":connecting")
6220 ((erc-server-process-alive)
6221 "")
6222 (t
6223 ": CLOSED")))
6224 (face (cond ((eq erc-header-line-face-method nil)
6225 nil)
6226 ((functionp erc-header-line-face-method)
6227 (funcall erc-header-line-face-method))
6228 (t
6229 'erc-header-line))))
6230 (cond ((featurep 'xemacs)
6231 (setq modeline-buffer-identification
6232 (list (format-spec erc-mode-line-format spec)))
6233 (setq modeline-process (list process-status)))
6234 (t
6235 (setq mode-line-buffer-identification
6236 (list (format-spec erc-mode-line-format spec)))
6237 (setq mode-line-process (list process-status))))
6238 (when (boundp 'header-line-format)
6239 (let ((header (if erc-header-line-format
6240 (format-spec erc-header-line-format spec)
6241 nil)))
6242 (cond (erc-header-line-uses-tabbar-p
6243 (set (make-local-variable 'tabbar--local-hlf)
6244 header-line-format)
6245 (kill-local-variable 'header-line-format))
6246 ((null header)
6247 (setq header-line-format nil))
6248 (erc-header-line-uses-help-echo-p
6249 (let ((help-echo (with-temp-buffer
6250 (insert header)
6251 (fill-region (point-min) (point-max))
6252 (buffer-string))))
6253 (setq header-line-format
6254 (erc-replace-regexp-in-string
6255 "%"
6256 "%%"
6257 (if face
6258 (erc-propertize header 'help-echo help-echo
6259 'face face)
6260 (erc-propertize header 'help-echo help-echo))))))
6261 (t (setq header-line-format
6262 (if face
6263 (erc-propertize header 'face face)
6264 header)))))))
6265 (if (featurep 'xemacs)
6266 (redraw-modeline)
6267 (force-mode-line-update))))
6268
6269 (defun erc-update-mode-line (&optional buffer)
6270 "Update the mode line in BUFFER.
6271
6272 If BUFFER is nil, update the mode line in all ERC buffers."
6273 (if (and buffer (bufferp buffer))
6274 (erc-update-mode-line-buffer buffer)
6275 (dolist (buf (erc-buffer-list))
6276 (when (buffer-live-p buf)
6277 (erc-update-mode-line-buffer buf)))))
6278
6279 ;; Miscellaneous
6280
6281 (defun erc-port-to-string (p)
6282 "Convert port P to a string.
6283 P may be an integer or a service name."
6284 (if (integerp p)
6285 (int-to-string p)
6286 p))
6287
6288 (defun erc-string-to-port (s)
6289 "Convert string S to either an integer port number or a service name."
6290 (if (numberp s)
6291 s
6292 (let ((n (string-to-number s)))
6293 (if (= n 0)
6294 s
6295 n))))
6296
6297 (defun erc-version (&optional here)
6298 "Show the version number of ERC in the minibuffer.
6299 If optional argument HERE is non-nil, insert version number at point."
6300 (interactive "P")
6301 (let ((version-string
6302 (format "ERC %s (GNU Emacs %s)" erc-version-string emacs-version)))
6303 (if here
6304 (insert version-string)
6305 (if (interactive-p)
6306 (message "%s" version-string)
6307 version-string))))
6308
6309 (defun erc-modes (&optional here)
6310 "Show the active ERC modes in the minibuffer.
6311 If optional argument HERE is non-nil, insert version number at point."
6312 (interactive "P")
6313 (let ((string
6314 (mapconcat 'identity
6315 (let (modes (case-fold-search nil))
6316 (dolist (var (apropos-internal "^erc-.*mode$"))
6317 (when (and (boundp var)
6318 (symbol-value var))
6319 (setq modes (cons (symbol-name var)
6320 modes))))
6321 modes)
6322 ", ")))
6323 (if here
6324 (insert string)
6325 (if (interactive-p)
6326 (message "%s" string)
6327 string))))
6328
6329 (defun erc-trim-string (s)
6330 "Trim leading and trailing spaces off S."
6331 (cond
6332 ((not (stringp s)) nil)
6333 ((string-match "^\\s-*$" s)
6334 "")
6335 ((string-match "^\\s-*\\(.*\\S-\\)\\s-*$" s)
6336 (match-string 1 s))
6337 (t
6338 s)))
6339
6340 (defun erc-arrange-session-in-multiple-windows ()
6341 "Open a window for every non-server buffer related to `erc-session-server'.
6342
6343 All windows are opened in the current frame."
6344 (interactive)
6345 (unless erc-server-process
6346 (error "No erc-server-process found in current buffer"))
6347 (let ((bufs (erc-buffer-list nil erc-server-process)))
6348 (when bufs
6349 (delete-other-windows)
6350 (switch-to-buffer (car bufs))
6351 (setq bufs (cdr bufs))
6352 (while bufs
6353 (split-window)
6354 (other-window 1)
6355 (switch-to-buffer (car bufs))
6356 (setq bufs (cdr bufs))
6357 (balance-windows)))))
6358
6359 (defun erc-popup-input-buffer ()
6360 "Provide an input buffer."
6361 (interactive)
6362 (let ((buffer-name (generate-new-buffer-name "*ERC input*"))
6363 (mode (intern
6364 (completing-read
6365 "Mode: "
6366 (mapcar (lambda (e)
6367 (list (symbol-name e)))
6368 (apropos-internal "-mode$" 'commandp))
6369 nil t))))
6370 (pop-to-buffer (make-indirect-buffer (current-buffer) buffer-name))
6371 (funcall mode)
6372 (narrow-to-region (point) (point))
6373 (shrink-window-if-larger-than-buffer)))
6374
6375 ;;; Message catalog
6376
6377 (defun erc-make-message-variable-name (catalog entry)
6378 "Create a variable name corresponding to CATALOG's ENTRY."
6379 (intern (concat "erc-message-"
6380 (symbol-name catalog) "-" (symbol-name entry))))
6381
6382 (defun erc-define-catalog-entry (catalog entry format-spec)
6383 "Set CATALOG's ENTRY to FORMAT-SPEC."
6384 (set (erc-make-message-variable-name catalog entry)
6385 format-spec))
6386
6387 (defun erc-define-catalog (catalog entries)
6388 "Define a CATALOG according to ENTRIES."
6389 (dolist (entry entries)
6390 (erc-define-catalog-entry catalog (car entry) (cdr entry))))
6391
6392 (erc-define-catalog
6393 'english
6394 '((bad-ping-response . "Unexpected PING response from %n (time %t)")
6395 (bad-syntax . "Error occurred - incorrect usage?\n%c %u\n%d")
6396 (incorrect-args . "Incorrect arguments. Usage:\n%c %u\n%d")
6397 (cannot-find-file . "Cannot find file %f")
6398 (cannot-read-file . "Cannot read file %f")
6399 (connect . "Connecting to %S:%p... ")
6400 (country . "%c")
6401 (country-unknown . "%d: No such domain")
6402 (ctcp-empty . "Illegal empty CTCP query received from %n. Ignoring.")
6403 (ctcp-request . "==> CTCP request from %n (%u@%h): %r")
6404 (ctcp-request-to . "==> CTCP request from %n (%u@%h) to %t: %r")
6405 (ctcp-too-many . "Too many CTCP queries in single message. Ignoring")
6406 (flood-ctcp-off . "FLOOD PROTECTION: Automatic CTCP responses turned off.")
6407 (flood-strict-mode
6408 . "FLOOD PROTECTION: Switched to Strict Flood Control mode.")
6409 (disconnected . "\n\nConnection failed! Re-establishing connection...\n")
6410 (disconnected-noreconnect
6411 . "\n\nConnection failed! Not re-establishing connection.\n")
6412 (finished . "\n\n*** ERC finished ***\n")
6413 (terminated . "\n\n*** ERC terminated: %e\n")
6414 (login . "Logging in as \'%n\'...")
6415 (nick-in-use . "%n is in use. Choose new nickname: ")
6416 (nick-too-long
6417 . "WARNING: Nick length (%i) exceeds max NICKLEN(%l) defined by server")
6418 (no-default-channel . "No default channel")
6419 (no-invitation . "You've got no invitation")
6420 (no-target . "No target")
6421 (ops . "%i operator%s: %o")
6422 (ops-none . "No operators in this channel.")
6423 (undefined-ctcp . "Undefined CTCP query received. Silently ignored")
6424 (variable-not-bound . "Variable not bound!")
6425 (ACTION . "* %n %a")
6426 (CTCP-CLIENTINFO . "Client info for %n: %m")
6427 (CTCP-ECHO . "Echo %n: %m")
6428 (CTCP-FINGER . "Finger info for %n: %m")
6429 (CTCP-PING . "Ping time to %n is %t")
6430 (CTCP-TIME . "Time by %n is %m")
6431 (CTCP-UNKNOWN . "Unknown CTCP message from %n (%u@%h): %m")
6432 (CTCP-VERSION . "Version for %n is %m")
6433 (ERROR . "==> ERROR from %s: %c\n")
6434 (INVITE . "%n (%u@%h) invites you to channel %c")
6435 (JOIN . "%n (%u@%h) has joined channel %c")
6436 (JOIN-you . "You have joined channel %c")
6437 (KICK . "%n (%u@%h) has kicked %k off channel %c: %r")
6438 (KICK-you . "You have been kicked off channel %c by %n (%u@%h): %r")
6439 (KICK-by-you . "You have kicked %k off channel %c: %r")
6440 (MODE . "%n (%u@%h) has changed mode for %t to %m")
6441 (MODE-nick . "%n has changed mode for %t to %m")
6442 (NICK . "%n (%u@%h) is now known as %N")
6443 (NICK-you . "Your new nickname is %N")
6444 (PART . erc-message-english-PART)
6445 (PING . "PING from server (last: %s sec. ago)")
6446 (PONG . "PONG from %h (%i second%s)")
6447 (QUIT . "%n (%u@%h) has quit: %r")
6448 (TOPIC . "%n (%u@%h) has set the topic for %c: \"%T\"")
6449 (WALLOPS . "Wallops from %n: %m")
6450 (s004 . "%s %v %U %C")
6451 (s221 . "User modes for %n: %m")
6452 (s252 . "%i operator(s) online")
6453 (s253 . "%i unknown connection(s)")
6454 (s254 . "%i channels formed")
6455 (s275 . "%n %m")
6456 (s301 . "%n is AWAY: %r")
6457 (s303 . "Is online: %n")
6458 (s305 . "%m")
6459 (s306 . "%m")
6460 (s307 . "%n %m")
6461 (s311 . "%n is %f (%u@%h)")
6462 (s312 . "%n is/was on server %s (%c)")
6463 (s313 . "%n is an IRC operator")
6464 (s314 . "%n was %f (%u@%h)")
6465 (s317 . "%n has been idle for %i")
6466 (s317-on-since . "%n has been idle for %i, on since %t")
6467 (s319 . "%n is on channel(s): %c")
6468 (s320 . "%n is an identified user")
6469 (s321 . "Channel Users Topic")
6470 (s322 . "%c [%u] %t")
6471 (s324 . "%c modes: %m")
6472 (s328 . "%c URL: %u")
6473 (s329 . "%c was created on %t")
6474 (s330 . "%n %a %i")
6475 (s331 . "No topic is set for %c")
6476 (s332 . "Topic for %c: %T")
6477 (s333 . "%c: topic set by %n, %t")
6478 (s341 . "Inviting %n to channel %c")
6479 (s352 . "%-11c %-10n %-4a %u@%h (%f)")
6480 (s353 . "Users on %c: %u")
6481 (s367 . "Ban for %b on %c")
6482 (s367-set-by . "Ban for %b on %c set by %s on %t")
6483 (s368 . "Banlist of %c ends.")
6484 (s379 . "%c: Forwarded to %f")
6485 (s391 . "The time at %s is %t")
6486 (s401 . "%n: No such nick/channel")
6487 (s403 . "%c: No such channel")
6488 (s404 . "%c: Cannot send to channel")
6489 (s405 . "%c: You have joined too many channels")
6490 (s406 . "%n: There was no such nickname")
6491 (s412 . "No text to send")
6492 (s421 . "%c: Unknown command")
6493 (s431 . "No nickname given")
6494 (s432 . "%n is an erroneous nickname")
6495 (s442 . "%c: You're not on that channel")
6496 (s445 . "SUMMON has been disabled")
6497 (s446 . "USERS has been disabled")
6498 (s451 . "You have not registered")
6499 (s461 . "%c: not enough parameters")
6500 (s462 . "Unauthorized command (already registered)")
6501 (s463 . "Your host isn't among the privileged")
6502 (s464 . "Password incorrect")
6503 (s465 . "You are banned from this server")
6504 (s474 . "You can't join %c because you're banned (+b)")
6505 (s475 . "You must specify the correct channel key (+k) to join %c")
6506 (s481 . "Permission Denied - You're not an IRC operator")
6507 (s482 . "You need to be a channel operator of %c to do that")
6508 (s483 . "You can't kill a server!")
6509 (s484 . "Your connection is restricted!")
6510 (s485 . "You're not the original channel operator")
6511 (s491 . "No O-lines for your host")
6512 (s501 . "Unknown MODE flag")
6513 (s502 . "You can't change modes for other users")
6514 (s671 . "%n %a")))
6515
6516 (defun erc-message-english-PART (&rest args)
6517 "Format a proper PART message.
6518
6519 This function is an example on what could be done with formatting
6520 functions."
6521 (let ((nick (cadr (memq ?n args)))
6522 (user (cadr (memq ?u args)))
6523 (host (cadr (memq ?h args)))
6524 (channel (cadr (memq ?c args)))
6525 (reason (cadr (memq ?r args))))
6526 (if (string= nick (erc-current-nick))
6527 (format "You have left channel %s" channel)
6528 (format "%s (%s@%s) has left channel %s%s"
6529 nick user host channel
6530 (if (not (string= reason ""))
6531 (format ": %s"
6532 (erc-replace-regexp-in-string "%" "%%" reason))
6533 "")))))
6534
6535
6536 (defvar erc-current-message-catalog 'english)
6537 (make-variable-buffer-local 'erc-current-message-catalog)
6538
6539 (defun erc-retrieve-catalog-entry (entry &optional catalog)
6540 "Retrieve ENTRY from CATALOG.
6541
6542 If CATALOG is nil, `erc-current-message-catalog' is used.
6543
6544 If ENTRY is nil in CATALOG, it is retrieved from the fallback,
6545 english, catalog."
6546 (unless catalog (setq catalog erc-current-message-catalog))
6547 (let ((var (erc-make-message-variable-name catalog entry)))
6548 (if (boundp var)
6549 (symbol-value var)
6550 (when (boundp (erc-make-message-variable-name 'english entry))
6551 (symbol-value (erc-make-message-variable-name 'english entry))))))
6552
6553 (defun erc-format-message (msg &rest args)
6554 "Format MSG according to ARGS.
6555
6556 See also `format-spec'."
6557 (when (eq (logand (length args) 1) 1) ; oddp
6558 (error "Obscure usage of this function appeared"))
6559 (let ((entry (erc-retrieve-catalog-entry msg)))
6560 (when (not entry)
6561 (error "No format spec for message %s" msg))
6562 (when (functionp entry)
6563 (setq entry (apply entry args)))
6564 (format-spec entry (apply 'format-spec-make args))))
6565
6566 ;;; Various hook functions
6567
6568 (add-hook 'kill-buffer-hook 'erc-kill-buffer-function)
6569
6570 (defcustom erc-kill-server-hook '(erc-kill-server)
6571 "Invoked whenever a server-buffer is killed via `kill-buffer'."
6572 :group 'erc-hooks
6573 :type 'hook)
6574
6575 (defcustom erc-kill-channel-hook '(erc-kill-channel)
6576 "Invoked whenever a channel-buffer is killed via `kill-buffer'."
6577 :group 'erc-hooks
6578 :type 'hook)
6579
6580 (defcustom erc-kill-buffer-hook nil
6581 "Hook run whenever a non-server or channel buffer is killed.
6582
6583 See also `kill-buffer'."
6584 :group 'erc-hooks
6585 :type 'hook)
6586
6587 (defun erc-kill-buffer-function ()
6588 "Function to call when an ERC buffer is killed.
6589 This function should be on `kill-buffer-hook'.
6590 When the current buffer is in `erc-mode', this function will run
6591 one of the following hooks:
6592 `erc-kill-server-hook' if the server buffer was killed,
6593 `erc-kill-channel-hook' if a channel buffer was killed,
6594 or `erc-kill-buffer-hook' if any other buffer."
6595 (when (eq major-mode 'erc-mode)
6596 (erc-remove-channel-users)
6597 (cond
6598 ((eq (erc-server-buffer) (current-buffer))
6599 (run-hooks 'erc-kill-server-hook))
6600 ((erc-channel-p (erc-default-target))
6601 (run-hooks 'erc-kill-channel-hook))
6602 (t
6603 (run-hooks 'erc-kill-buffer-hook)))))
6604
6605 (defun erc-kill-server ()
6606 "Sends a QUIT command to the server when the server buffer is killed.
6607 This function should be on `erc-kill-server-hook'."
6608 (when (erc-server-process-alive)
6609 (setq erc-server-quitting t)
6610 (erc-server-send (format "QUIT :%s" (funcall erc-quit-reason nil)))))
6611
6612 (defun erc-kill-channel ()
6613 "Sends a PART command to the server when the channel buffer is killed.
6614 This function should be on `erc-kill-channel-hook'."
6615 (when (erc-server-process-alive)
6616 (let ((tgt (erc-default-target)))
6617 (erc-server-send (format "PART %s :%s" tgt
6618 (funcall erc-part-reason nil))
6619 nil tgt))))
6620
6621 ;;; Dealing with `erc-parsed'
6622
6623 (defun erc-find-parsed-property ()
6624 "Find the next occurrence of the `erc-parsed' text property."
6625 (text-property-not-all (point-min) (point-max) 'erc-parsed nil))
6626
6627 (defun erc-restore-text-properties ()
6628 "Restore the property 'erc-parsed for the region."
6629 (let ((parsed-posn (erc-find-parsed-property)))
6630 (put-text-property
6631 (point-min) (point-max)
6632 'erc-parsed (when parsed-posn (erc-get-parsed-vector parsed-posn)))))
6633
6634 (defun erc-get-parsed-vector (point)
6635 "Return the whole parsed vector on POINT."
6636 (get-text-property point 'erc-parsed))
6637
6638 (defun erc-get-parsed-vector-nick (vect)
6639 "Return nickname in the parsed vector VECT."
6640 (let* ((untreated-nick (and vect (erc-response.sender vect)))
6641 (maybe-nick (when untreated-nick
6642 (car (split-string untreated-nick "!")))))
6643 (when (and (not (null maybe-nick))
6644 (erc-is-valid-nick-p maybe-nick))
6645 untreated-nick)))
6646
6647 (defun erc-get-parsed-vector-type (vect)
6648 "Return message type in the parsed vector VECT."
6649 (and vect
6650 (erc-response.command vect)))
6651
6652 ;; Teach url.el how to open irc:// URLs with ERC.
6653 ;; To activate, customize `url-irc-function' to `url-irc-erc'.
6654
6655 ;;;###autoload
6656 (defun erc-handle-irc-url (host port channel user password)
6657 "Use ERC to IRC on HOST:PORT in CHANNEL as USER with PASSWORD.
6658 If ERC is already connected to HOST:PORT, simply /join CHANNEL.
6659 Otherwise, connect to HOST:PORT as USER and /join CHANNEL."
6660 (let ((server-buffer
6661 (car (erc-buffer-filter
6662 (lambda ()
6663 (and (string-equal erc-session-server host)
6664 (= erc-session-port port)
6665 (erc-open-server-buffer-p)))))))
6666 (with-current-buffer (or server-buffer (current-buffer))
6667 (if (and server-buffer channel)
6668 (erc-cmd-JOIN channel)
6669 (erc-open host port (or user (erc-compute-nick)) (erc-compute-full-name)
6670 (not server-buffer) password nil channel
6671 (when server-buffer
6672 (get-buffer-process server-buffer)))))))
6673
6674 (provide 'erc)
6675
6676 ;;; Deprecated. We might eventually stop requiring the goodies automatically.
6677 ;;; IMPORTANT: This require must appear _after_ the above (provide 'erc) to
6678 ;;; avoid a recursive require error when byte-compiling the entire package.
6679 (require 'erc-goodies)
6680
6681 ;;; erc.el ends here
6682 ;;
6683 ;; Local Variables:
6684 ;; outline-regexp: ";;+"
6685 ;; indent-tabs-mode: t
6686 ;; tab-width: 8
6687 ;; End: