Nuke arch-tags.
[emacs.git] / lisp / erc / erc-services.el
blob88716d1e9afdcbc23fb441907fd227c97e8b51e2
1 ;;; erc-services.el --- Identify to NickServ
3 ;; Copyright (C) 2002, 2003, 2004, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
5 ;; This file is part of GNU Emacs.
7 ;; GNU Emacs is free software: you can redistribute it and/or modify
8 ;; it under the terms of the GNU General Public License as published by
9 ;; the Free Software Foundation, either version 3 of the License, or
10 ;; (at your option) any later version.
12 ;; GNU Emacs is distributed in the hope that it will be useful,
13 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 ;; GNU General Public License for more details.
17 ;; You should have received a copy of the GNU General Public License
18 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
20 ;;; Commentary:
22 ;; There are two ways to go about identifying yourself automatically to
23 ;; NickServ with this module. The more secure way is to listen for identify
24 ;; requests from the user NickServ. Another way is to identify yourself to
25 ;; NickServ directly after a successful connection and every time you change
26 ;; your nickname. This method is rather insecure, though, because no checks
27 ;; are made to test if NickServ is the real NickServ for a given network or
28 ;; server.
30 ;; As a default, ERC has the data for the official nickname services on
31 ;; the networks Austnet, BrasNET, Dalnet, freenode, GalaxyNet, GRnet,
32 ;; and Slashnet. You can add more by using M-x customize-variable RET
33 ;; erc-nickserv-alist.
35 ;; Usage:
37 ;; Put into your .emacs:
39 ;; (require 'erc-services)
40 ;; (erc-services-mode 1)
42 ;; Add your nickname and NickServ password to `erc-nickserv-passwords'.
43 ;; Using the freenode network as an example:
45 ;; (setq erc-nickserv-passwords '((freenode (("nickname" "password")))))
47 ;; The default automatic identification mode is autodetection of NickServ
48 ;; identify requests. Set the variable `erc-nickserv-identify-mode' if
49 ;; you'd like to change this behavior. You can also change the way
50 ;; automatic identification is handled by using:
52 ;; M-x erc-nickserv-identify-mode
54 ;; If you'd rather not identify yourself automatically but would like access
55 ;; to the functions contained in this file, just load this file without
56 ;; enabling `erc-services-mode'.
59 ;;; Code:
61 (require 'erc)
62 (require 'erc-networks)
63 (eval-when-compile (require 'cl))
65 ;; Customization:
67 (defgroup erc-services nil
68 "Configuration for IRC services.
70 On some networks, there exists a special type of automated irc bot,
71 called Services. Those usually allow you to register your nickname,
72 post/read memos to other registered users who are currently offline,
73 and do various other things.
75 This group allows you to set variables to somewhat automate
76 communication with those Services."
77 :group 'erc)
79 (defcustom erc-nickserv-identify-mode 'both
80 "The mode which is used when identifying to Nickserv.
82 Possible settings are:.
84 'autodetect - Identify when the real Nickserv sends an identify request.
85 'nick-change - Identify when you log in or change your nickname.
86 'both - Do the former if the network supports it, otherwise do the
87 latter.
88 nil - Disables automatic Nickserv identification.
90 You can also use M-x erc-nickserv-identify-mode to change modes."
91 :group 'erc-services
92 :type '(choice (const autodetect)
93 (const nick-change)
94 (const both)
95 (const nil))
96 :set (lambda (sym val)
97 (set sym val)
98 ;; avoid recursive load at startup
99 (when (featurep 'erc-services)
100 (erc-nickserv-identify-mode val))))
102 ;;;###autoload (autoload 'erc-services-mode "erc-services" nil t)
103 (define-erc-module services nickserv
104 "This mode automates communication with services."
105 ((erc-nickserv-identify-mode erc-nickserv-identify-mode))
106 ((remove-hook 'erc-server-NOTICE-functions
107 'erc-nickserv-identify-autodetect)
108 (remove-hook 'erc-after-connect
109 'erc-nickserv-identify-on-connect)
110 (remove-hook 'erc-nick-changed-functions
111 'erc-nickserv-identify-on-nick-change)
112 (remove-hook 'erc-server-NOTICE-functions
113 'erc-nickserv-identification-autodetect)))
115 ;;;###autoload
116 (defun erc-nickserv-identify-mode (mode)
117 "Set up hooks according to which MODE the user has chosen."
118 (interactive
119 (list (intern (completing-read
120 "Choose Nickserv identify mode (RET to disable): "
121 '(("autodetect") ("nick-change") ("both")) nil t))))
122 (add-hook 'erc-server-NOTICE-functions
123 'erc-nickserv-identification-autodetect)
124 (unless erc-networks-mode
125 ;; Force-enable networks module, because we need it to set
126 ;; erc-network for us.
127 (erc-networks-enable))
128 (cond ((eq mode 'autodetect)
129 (setq erc-nickserv-identify-mode 'autodetect)
130 (add-hook 'erc-server-NOTICE-functions
131 'erc-nickserv-identify-autodetect)
132 (remove-hook 'erc-nick-changed-functions
133 'erc-nickserv-identify-on-nick-change)
134 (remove-hook 'erc-after-connect
135 'erc-nickserv-identify-on-connect))
136 ((eq mode 'nick-change)
137 (setq erc-nickserv-identify-mode 'nick-change)
138 (add-hook 'erc-after-connect
139 'erc-nickserv-identify-on-connect)
140 (add-hook 'erc-nick-changed-functions
141 'erc-nickserv-identify-on-nick-change)
142 (remove-hook 'erc-server-NOTICE-functions
143 'erc-nickserv-identify-autodetect))
144 ((eq mode 'both)
145 (setq erc-nickserv-identify-mode 'both)
146 (add-hook 'erc-server-NOTICE-functions
147 'erc-nickserv-identify-autodetect)
148 (add-hook 'erc-after-connect
149 'erc-nickserv-identify-on-connect)
150 (add-hook 'erc-nick-changed-functions
151 'erc-nickserv-identify-on-nick-change))
153 (setq erc-nickserv-identify-mode nil)
154 (remove-hook 'erc-server-NOTICE-functions
155 'erc-nickserv-identify-autodetect)
156 (remove-hook 'erc-after-connect
157 'erc-nickserv-identify-on-connect)
158 (remove-hook 'erc-nick-changed-functions
159 'erc-nickserv-identify-on-nick-change)
160 (remove-hook 'erc-server-NOTICE-functions
161 'erc-nickserv-identification-autodetect))))
163 (defcustom erc-prompt-for-nickserv-password t
164 "Ask for the password when identifying to NickServ."
165 :group 'erc-services
166 :type 'boolean)
168 (defcustom erc-nickserv-passwords nil
169 "Passwords used when identifying to NickServ automatically.
171 Example of use:
172 (setq erc-nickserv-passwords
173 '((freenode ((\"nick-one\" . \"password\")
174 (\"nick-two\" . \"password\")))
175 (DALnet ((\"nick\" . \"password\")))))"
176 :group 'erc-services
177 :type '(repeat
178 (list :tag "Network"
179 (choice :tag "Network name"
180 (const Ars)
181 (const Austnet)
182 (const Azzurra)
183 (const BitlBee)
184 (const BRASnet)
185 (const DALnet)
186 (const freenode)
187 (const GalaxyNet)
188 (const GRnet)
189 (const iip)
190 (const OFTC)
191 (const QuakeNet)
192 (const Rizon)
193 (const SlashNET)
194 (symbol :tag "Network name"))
195 (repeat :tag "Nickname and password"
196 (cons :tag "Identity"
197 (string :tag "Nick")
198 (string :tag "Password"))))))
200 ;; Variables:
202 (defcustom erc-nickserv-alist
203 '((Ars
204 nil nil
205 "Census"
206 "IDENTIFY" nil nil nil)
207 (Austnet
208 "NickOP!service@austnet.org"
209 "/msg\\s-NickOP@austnet.org\\s-identify\\s-<password>"
210 "nickop@austnet.org"
211 "identify" nil nil nil)
212 (Azzurra
213 "NickServ!service@azzurra.org"
214 "\x02/ns\\s-IDENTIFY\\s-password\x02"
215 "NickServ"
216 "IDENTIFY" nil nil nil)
217 (BitlBee
218 nil nil
219 "&bitlbee"
220 "identify" nil nil nil)
221 (BRASnet
222 "NickServ!services@brasnet.org"
223 "\x02/NickServ\\s-IDENTIFY\\s-\x1fsenha\x1f\x02"
224 "NickServ"
225 "IDENTIFY" nil "" nil)
226 (DALnet
227 "NickServ!service@dal.net"
228 "/msg\\s-NickServ@services.dal.net\\s-IDENTIFY\\s-<password>"
229 "NickServ@services.dal.net"
230 "IDENTIFY" nil nil nil)
231 (freenode
232 "NickServ!NickServ@services."
233 ;; freenode also accepts a password at login, see the `erc'
234 ;; :password argument.
235 "This\\s-nickname\\s-is\\s-registered.\\s-Please\\s-choose"
236 "NickServ"
237 "IDENTIFY" nil nil
238 ;; See also the 901 response code message.
239 "You\\s-are\\s-now\\s-identified\\s-for\\s-")
240 (GalaxyNet
241 "NS!nickserv@galaxynet.org"
242 "Please\\s-change\\s-nicks\\s-or\\s-authenticate."
243 "NS@services.galaxynet.org"
244 "AUTH" t nil nil)
245 (GRnet
246 "NickServ!service@irc.gr"
247 "This\\s-nickname\\s-is\\s-registered\\s-and\\s-protected."
248 "NickServ"
249 "IDENTIFY" nil nil
250 "Password\\s-accepted\\s--\\s-you\\s-are\\s-now\\s-recognized.")
251 (iip
252 "Trent@anon.iip"
253 "type\\s-/squery\\s-Trent\\s-identify\\s-<password>"
254 "Trent@anon.iip"
255 "IDENTIFY" nil "SQUERY" nil)
256 (OFTC
257 "NickServ!services@services.oftc.net"
258 ;; OFTC's NickServ doesn't ask you to identify anymore.
260 "NickServ"
261 "IDENTIFY" nil nil
262 "You\\s-are\\s-successfully\\s-identified\\s-as\\s-\x02")
263 (Rizon
264 "NickServ!service@rizon.net"
265 "This\\s-nickname\\s-is\\s-registered\\s-and\\s-protected."
266 "NickServ"
267 "IDENTIFY" nil nil
268 "Password\\s-accepted\\s--\\s-you\\s-are\\s-now\\s-recognized.")
269 (QuakeNet
270 nil nil
271 "Q@CServe.quakenet.org"
272 "auth" t nil nil)
273 (SlashNET
274 "NickServ!services@services.slashnet.org"
275 "/msg\\s-NickServ\\s-IDENTIFY\\s-\x1fpassword"
276 "NickServ@services.slashnet.org"
277 "IDENTIFY" nil nil nil))
278 "Alist of NickServer details, sorted by network.
279 Every element in the list has the form
280 \(SYMBOL NICKSERV REGEXP NICK KEYWORD USE-CURRENT ANSWER SUCCESS-REGEXP)
282 SYMBOL is a network identifier, a symbol, as used in `erc-networks-alist'.
283 NICKSERV is the description of the nickserv in the form nick!user@host.
284 REGEXP is a regular expression matching the message from nickserv.
285 NICK is nickserv's nickname. Use nick@server where necessary/possible.
286 KEYWORD is the keyword to use in the reply message to identify yourself.
287 USE-CURRENT indicates whether the current nickname must be used when
288 identifying.
289 ANSWER is the command to use for the answer. The default is 'privmsg.
290 SUCCESS-REGEXP is a regular expression matching the message nickserv
291 sends when you've successfully identified.
292 The last two elements are optional."
293 :group 'erc-services
294 :type '(repeat
295 (list :tag "Nickserv data"
296 (symbol :tag "Network name")
297 (choice (string :tag "Nickserv's nick!user@host")
298 (const :tag "No message sent by Nickserv" nil))
299 (choice (regexp :tag "Identify request sent by Nickserv")
300 (const :tag "No message sent by Nickserv" nil))
301 (string :tag "Identify to")
302 (string :tag "Identify keyword")
303 (boolean :tag "Use current nick in identify message?")
304 (choice :tag "Command to use (optional)"
305 (string :tag "Command")
306 (const :tag "No special command necessary" nil))
307 (choice :tag "Detect Success"
308 (regexp :tag "Pattern to match")
309 (const :tag "Do not try to detect success" nil)))))
312 (defsubst erc-nickserv-alist-sender (network &optional entry)
313 (nth 1 (or entry (assoc network erc-nickserv-alist))))
315 (defsubst erc-nickserv-alist-regexp (network &optional entry)
316 (nth 2 (or entry (assoc network erc-nickserv-alist))))
318 (defsubst erc-nickserv-alist-nickserv (network &optional entry)
319 (nth 3 (or entry (assoc network erc-nickserv-alist))))
321 (defsubst erc-nickserv-alist-ident-keyword (network &optional entry)
322 (nth 4 (or entry (assoc network erc-nickserv-alist))))
324 (defsubst erc-nickserv-alist-use-nick-p (network &optional entry)
325 (nth 5 (or entry (assoc network erc-nickserv-alist))))
327 (defsubst erc-nickserv-alist-ident-command (network &optional entry)
328 (nth 6 (or entry (assoc network erc-nickserv-alist))))
330 (defsubst erc-nickserv-alist-identified-regexp (network &optional entry)
331 (nth 7 (or entry (assoc network erc-nickserv-alist))))
333 ;; Functions:
335 (defcustom erc-nickserv-identified-hook nil
336 "Run this hook when NickServ acknowledged successful identification.
337 Hooks are called with arguments (NETWORK NICK)."
338 :group 'erc-services
339 :type 'hook)
341 (defun erc-nickserv-identification-autodetect (proc parsed)
342 "Check for NickServ's successful identification notice.
343 Make sure it is the real NickServ for this network and that it has
344 specifically confirmed a successful identification attempt.
345 If this is the case, run `erc-nickserv-identified-hook'."
346 (let* ((network (erc-network))
347 (sender (erc-nickserv-alist-sender network))
348 (success-regex (erc-nickserv-alist-identified-regexp network))
349 (sspec (erc-response.sender parsed))
350 (nick (car (erc-response.command-args parsed)))
351 (msg (erc-response.contents parsed)))
352 ;; continue only if we're sure it's the real nickserv for this network
353 ;; and it's told us we've successfully identified
354 (when (and sender (equal sspec sender)
355 success-regex
356 (string-match success-regex msg))
357 (erc-log "NickServ IDENTIFY success notification detected")
358 (run-hook-with-args 'erc-nickserv-identified-hook network nick)
359 nil)))
361 (defun erc-nickserv-identify-autodetect (proc parsed)
362 "Identify to NickServ when an identify request is received.
363 Make sure it is the real NickServ for this network.
364 If `erc-prompt-for-nickserv-password' is non-nil, prompt the user for the
365 password for this nickname, otherwise try to send it automatically."
366 (unless (and (null erc-nickserv-passwords)
367 (null erc-prompt-for-nickserv-password))
368 (let* ((network (erc-network))
369 (sender (erc-nickserv-alist-sender network))
370 (identify-regex (erc-nickserv-alist-regexp network))
371 (sspec (erc-response.sender parsed))
372 (nick (car (erc-response.command-args parsed)))
373 (msg (erc-response.contents parsed)))
374 ;; continue only if we're sure it's the real nickserv for this network
375 ;; and it's asked us to identify
376 (when (and sender (equal sspec sender)
377 identify-regex
378 (string-match identify-regex msg))
379 (erc-log "NickServ IDENTIFY request detected")
380 (erc-nickserv-call-identify-function nick)
381 nil))))
383 (defun erc-nickserv-identify-on-connect (server nick)
384 "Identify to Nickserv after the connection to the server is established."
385 (unless (or (and (null erc-nickserv-passwords)
386 (null erc-prompt-for-nickserv-password))
387 (and (eq erc-nickserv-identify-mode 'both)
388 (erc-nickserv-alist-regexp (erc-network))))
389 (erc-nickserv-call-identify-function nick)))
391 (defun erc-nickserv-identify-on-nick-change (nick old-nick)
392 "Identify to Nickserv whenever your nick changes."
393 (unless (or (and (null erc-nickserv-passwords)
394 (null erc-prompt-for-nickserv-password))
395 (and (eq erc-nickserv-identify-mode 'both)
396 (erc-nickserv-alist-regexp (erc-network))))
397 (erc-nickserv-call-identify-function nick)))
399 (defun erc-nickserv-call-identify-function (nickname)
400 "Call `erc-nickserv-identify' interactively or run it with NICKNAME's
401 password.
402 The action is determined by the value of `erc-prompt-for-nickserv-password'."
403 (if erc-prompt-for-nickserv-password
404 (call-interactively 'erc-nickserv-identify)
405 (when erc-nickserv-passwords
406 (erc-nickserv-identify
407 (cdr (assoc nickname
408 (nth 1 (assoc (erc-network)
409 erc-nickserv-passwords))))))))
411 ;;;###autoload
412 (defun erc-nickserv-identify (password)
413 "Send an \"identify <PASSWORD>\" message to NickServ.
414 When called interactively, read the password using `read-passwd'."
415 (interactive
416 (list (read-passwd
417 (format "NickServ password for %s on %s (RET to cancel): "
418 (erc-current-nick)
419 (or (and (erc-network)
420 (symbol-name (erc-network)))
421 "Unknown network")))))
422 (when (and password (not (string= "" password)))
423 (let* ((erc-auto-discard-away nil)
424 (network (erc-network))
425 (nickserv-info (assoc network erc-nickserv-alist))
426 (nickserv (or (erc-nickserv-alist-nickserv nil nickserv-info)
427 "NickServ"))
428 (identify-word (or (erc-nickserv-alist-ident-keyword
429 nil nickserv-info)
430 "IDENTIFY"))
431 (nick (if (erc-nickserv-alist-use-nick-p nil nickserv-info)
432 (concat (erc-current-nick) " ")
433 ""))
434 (msgtype (or (erc-nickserv-alist-ident-command nil nickserv-info)
435 "PRIVMSG")))
436 (erc-message msgtype
437 (concat nickserv " " identify-word " " nick password)))))
439 (provide 'erc-services)
441 ;;; erc-services.el ends here
443 ;; Local Variables:
444 ;; indent-tabs-mode: t
445 ;; tab-width: 8
446 ;; End: