2004-04-04 01:21:46 +00:00
|
|
|
;;; url-irc.el --- IRC URL interface
|
2004-10-19 21:36:56 +00:00
|
|
|
|
2018-01-01 08:21:42 +00:00
|
|
|
;; Copyright (C) 1996-1999, 2004-2018 Free Software Foundation, Inc.
|
2004-10-19 21:36:56 +00:00
|
|
|
|
2004-04-04 01:21:46 +00:00
|
|
|
;; Keywords: comm, data, processes
|
|
|
|
|
2004-10-19 21:36:56 +00:00
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
2008-05-06 04:29:13 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
2004-10-19 21:36:56 +00:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 04:29:13 +00:00
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
2004-10-19 21:36:56 +00:00
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2017-09-13 22:52:52 +00:00
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
2004-10-19 21:36:56 +00:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
2010-09-11 01:58:42 +00:00
|
|
|
;; IRC URLs are defined in
|
|
|
|
;; http://www.w3.org/Addressing/draft-mirashi-url-irc-01.txt
|
2004-04-04 01:21:46 +00:00
|
|
|
|
2004-10-19 21:36:56 +00:00
|
|
|
;;; Code:
|
2004-04-04 01:21:46 +00:00
|
|
|
|
|
|
|
(require 'url-vars)
|
|
|
|
(require 'url-parse)
|
|
|
|
|
Typo and docstring fixes.
* url.el (url-do-setup):
* url-dired.el (url-dired-minor-mode):
* url-file.el (url-file-find-possibly-compressed-file):
* url-gw.el (url-gateway-broken-resolution):
* url-handlers.el (url-handler-regexp):
* url-imap.el (url-imap-default-port):
* url-methods.el (url-scheme-get-property): Fix typos in docstrings.
* url-auth.el (url-basic-auth-storage, url-digest-auth):
Fix typos in docstrings.
(url-digest-auth-storage, url-register-auth-scheme): Reflow docstrings.
* url-cache.el (url-cache-prepare): Doc fix.
(url-cache-create-filename-human-readable, url-cache-extract):
Fix typos in docstrings.
* url-dav.el (url-intersection, url-dav-iso8601-regexp)
(url-dav-delete-something): Fix typos in docstrings.
(url-dav-http-success-p, url-dav-file-name-all-completions)
(url-dav-directory-files, url-dav-file-name-completion): Doc fixes.
* url-http.el (url-http-idle-sentinel): Doc fix.
* url-irc.el (url-irc-default-port): Fix typo in docstring.
(url-irc-function): Doc fix.
* url-util.el (url-get-url-filename-chars, url-unhex-string):
Fix typos in docstrings.
(url-file-extension): Doc fix.
* url-vars.el (url-current-object, url-current-mime-headers)
(url-privacy-level, url-mail-command, url-mime-language-string):
Fix typos in docstrings.
(url-honor-refresh-requests): Reflow docstring.
(url-using-proxy): Doc fix.
2008-07-02 11:14:38 +00:00
|
|
|
(defconst url-irc-default-port 6667 "Default port for IRC connections.")
|
2004-04-04 01:21:46 +00:00
|
|
|
|
2006-03-27 20:23:47 +00:00
|
|
|
(defcustom url-irc-function 'url-irc-rcirc
|
2010-09-11 01:58:42 +00:00
|
|
|
"Function to actually open an IRC connection.
|
Typo and docstring fixes.
* url.el (url-do-setup):
* url-dired.el (url-dired-minor-mode):
* url-file.el (url-file-find-possibly-compressed-file):
* url-gw.el (url-gateway-broken-resolution):
* url-handlers.el (url-handler-regexp):
* url-imap.el (url-imap-default-port):
* url-methods.el (url-scheme-get-property): Fix typos in docstrings.
* url-auth.el (url-basic-auth-storage, url-digest-auth):
Fix typos in docstrings.
(url-digest-auth-storage, url-register-auth-scheme): Reflow docstrings.
* url-cache.el (url-cache-prepare): Doc fix.
(url-cache-create-filename-human-readable, url-cache-extract):
Fix typos in docstrings.
* url-dav.el (url-intersection, url-dav-iso8601-regexp)
(url-dav-delete-something): Fix typos in docstrings.
(url-dav-http-success-p, url-dav-file-name-all-completions)
(url-dav-directory-files, url-dav-file-name-completion): Doc fixes.
* url-http.el (url-http-idle-sentinel): Doc fix.
* url-irc.el (url-irc-default-port): Fix typo in docstring.
(url-irc-function): Doc fix.
* url-util.el (url-get-url-filename-chars, url-unhex-string):
Fix typos in docstrings.
(url-file-extension): Doc fix.
* url-vars.el (url-current-object, url-current-mime-headers)
(url-privacy-level, url-mail-command, url-mime-language-string):
Fix typos in docstrings.
(url-honor-refresh-requests): Reflow docstring.
(url-using-proxy): Doc fix.
2008-07-02 11:14:38 +00:00
|
|
|
The function should take the following arguments:
|
2004-04-04 01:21:46 +00:00
|
|
|
HOST - the hostname of the IRC server to contact
|
|
|
|
PORT - the port number of the IRC server to contact
|
|
|
|
CHANNEL - What channel on the server to visit right away (can be nil)
|
|
|
|
USER - What username to use
|
|
|
|
PASSWORD - What password to use"
|
2006-03-27 20:23:47 +00:00
|
|
|
:type '(choice (const :tag "rcirc" :value url-irc-rcirc)
|
|
|
|
(const :tag "ERC" :value url-irc-erc)
|
|
|
|
(const :tag "ZEN IRC" :value url-irc-zenirc)
|
2004-04-04 01:21:46 +00:00
|
|
|
(function :tag "Other"))
|
|
|
|
:group 'url)
|
|
|
|
|
2007-11-29 04:35:08 +00:00
|
|
|
;; External.
|
|
|
|
(declare-function zenirc "ext:zenirc" (&optional prefix))
|
|
|
|
(declare-function zenirc-send-line "ext:zenirc" ())
|
|
|
|
|
2004-04-04 01:21:46 +00:00
|
|
|
(defun url-irc-zenirc (host port channel user password)
|
|
|
|
(let ((zenirc-buffer-name (if (and user host port)
|
|
|
|
(format "%s@%s:%d" user host port)
|
|
|
|
(format "%s:%d" host port)))
|
|
|
|
(zenirc-server-alist
|
|
|
|
(list
|
|
|
|
(list host port password nil user))))
|
|
|
|
(zenirc)
|
|
|
|
(goto-char (point-max))
|
|
|
|
(if (not channel)
|
|
|
|
nil
|
|
|
|
(insert "/join " channel)
|
|
|
|
(zenirc-send-line))))
|
|
|
|
|
2006-03-27 20:23:47 +00:00
|
|
|
(defun url-irc-rcirc (host port channel user password)
|
|
|
|
(let ((chan (when channel (concat "#" channel))))
|
|
|
|
(rcirc-connect host port user nil nil (when chan (list chan)))
|
|
|
|
(when chan
|
|
|
|
(switch-to-buffer (concat chan "@" host)))))
|
|
|
|
|
|
|
|
(defun url-irc-erc (host port channel user password)
|
2006-07-14 02:29:50 +00:00
|
|
|
(erc-handle-irc-url host port channel user password))
|
2006-03-27 20:23:47 +00:00
|
|
|
|
2004-04-04 01:21:46 +00:00
|
|
|
;;;###autoload
|
|
|
|
(defun url-irc (url)
|
|
|
|
(let* ((host (url-host url))
|
2004-11-02 09:40:30 +00:00
|
|
|
(port (url-port url))
|
2004-04-04 01:21:46 +00:00
|
|
|
(pass (url-password url))
|
|
|
|
(user (url-user url))
|
|
|
|
(chan (url-filename url)))
|
|
|
|
(if (url-target url)
|
|
|
|
(setq chan (concat chan "#" (url-target url))))
|
|
|
|
(if (string-match "^/" chan)
|
|
|
|
(setq chan (substring chan 1 nil)))
|
|
|
|
(if (= (length chan) 0)
|
|
|
|
(setq chan nil))
|
|
|
|
(funcall url-irc-function host port chan user pass)
|
|
|
|
nil))
|
2006-03-27 20:23:47 +00:00
|
|
|
|
2004-04-04 01:21:46 +00:00
|
|
|
(provide 'url-irc)
|
2004-04-04 04:44:10 +00:00
|
|
|
|
2004-10-19 21:36:56 +00:00
|
|
|
;;; url-irc.el ends here
|