Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-78
[bpt/emacs.git] / lisp / url / url-irc.el
1 ;;; url-irc.el --- IRC URL interface
2
3 ;; Copyright (C) 1996, 1997, 1998, 1999, 2004,
4 ;; 2005 Free Software Foundation, Inc.
5
6 ;; Keywords: comm, data, processes
7
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
14
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
22 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
23 ;; Boston, MA 02110-1301, USA.
24
25 ;;; Commentary:
26
27 ;; IRC URLs are defined in http://www.w3.org/Addressing/draft-mirashi-url-irc-01.txt
28
29 ;;; Code:
30
31 (require 'url-vars)
32 (require 'url-parse)
33
34 (defconst url-irc-default-port 6667 "Default port for IRC connections")
35
36 (defcustom url-irc-function 'url-irc-zenirc
37 "*Function to actually open an IRC connection.
38 Should be a function that takes several argument:
39 HOST - the hostname of the IRC server to contact
40 PORT - the port number of the IRC server to contact
41 CHANNEL - What channel on the server to visit right away (can be nil)
42 USER - What username to use
43 PASSWORD - What password to use"
44 :type '(choice (const :tag "ZEN IRC" :value 'url-irc-zenirc)
45 (function :tag "Other"))
46 :group 'url)
47
48 (defun url-irc-zenirc (host port channel user password)
49 (let ((zenirc-buffer-name (if (and user host port)
50 (format "%s@%s:%d" user host port)
51 (format "%s:%d" host port)))
52 (zenirc-server-alist
53 (list
54 (list host port password nil user))))
55 (zenirc)
56 (goto-char (point-max))
57 (if (not channel)
58 nil
59 (insert "/join " channel)
60 (zenirc-send-line))))
61
62 ;;;###autoload
63 (defun url-irc (url)
64 (let* ((host (url-host url))
65 (port (url-port url))
66 (pass (url-password url))
67 (user (url-user url))
68 (chan (url-filename url)))
69 (if (url-target url)
70 (setq chan (concat chan "#" (url-target url))))
71 (if (string-match "^/" chan)
72 (setq chan (substring chan 1 nil)))
73 (if (= (length chan) 0)
74 (setq chan nil))
75 (funcall url-irc-function host port chan user pass)
76 nil))
77
78 (provide 'url-irc)
79
80 ;;; arch-tag: 2e5eecf8-9eb3-436b-9fbd-c26f2fb2bf3e
81 ;;; url-irc.el ends here