Switch to recommended form of GPLv3 permissions notice.
[bpt/emacs.git] / lisp / net / netrc.el
CommitLineData
97b913ad 1;;; netrc.el --- .netrc parsing functionality
5fd6d89f 2;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
2f043267 3;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
97b913ad
RS
4
5;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
6;; Keywords: news
7;; Modularized by Ted Zlatanov <tzz@lifelogs.com>
8;; when it was part of Gnus.
9
10;; This file is part of GNU Emacs.
11
874a927a 12;; GNU Emacs is free software: you can redistribute it and/or modify
97b913ad 13;; it under the terms of the GNU General Public License as published by
874a927a
GM
14;; the Free Software Foundation, either version 3 of the License, or
15;; (at your option) any later version.
97b913ad
RS
16
17;; GNU Emacs is distributed in the hope that it will be useful,
18;; but WITHOUT ANY WARRANTY; without even the implied warranty of
874a927a 19;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
97b913ad
RS
20;; GNU General Public License for more details.
21
22;; You should have received a copy of the GNU General Public License
874a927a 23;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
97b913ad
RS
24
25;;; Commentary:
26
27;; Just the .netrc parsing functionality, abstracted so other packages
28;; besides Gnus can use it.
29
30;;; Code:
31
32;;;
01c52d31 33;;; .netrc and .authinfo rc parsing
97b913ad
RS
34;;;
35
87035689
MB
36;; use encrypt if loaded (encrypt-file-alist has to be set as well)
37(eval-and-compile
38 (autoload 'encrypt-find-model "encrypt")
39 (autoload 'encrypt-insert-file-contents "encrypt"))
97b913ad
RS
40(defalias 'netrc-point-at-eol
41 (if (fboundp 'point-at-eol)
42 'point-at-eol
43 'line-end-position))
87035689
MB
44(eval-when-compile
45 (defvar encrypt-file-alist)
46 ;; This is unnecessary in the compiled version as it is a macro.
47 (if (fboundp 'bound-and-true-p)
48 (defalias 'netrc-bound-and-true-p 'bound-and-true-p)
49 (defmacro netrc-bound-and-true-p (var)
50 "Return the value of symbol VAR if it is bound, else nil."
51 `(and (boundp (quote ,var)) ,var))))
01c52d31
MB
52
53(defgroup netrc nil
54 "Netrc configuration."
55 :group 'comm)
56
57(defvar netrc-services-file "/etc/services"
58 "The name of the services file.")
97b913ad
RS
59
60(defun netrc-parse (file)
01c52d31 61 (interactive "fFile to Parse: ")
8f7abae3 62 "Parse FILE and return a list of all entries in the file."
97b913ad
RS
63 (when (file-exists-p file)
64 (with-temp-buffer
65 (let ((tokens '("machine" "default" "login"
66 "password" "account" "macdef" "force"
67 "port"))
87035689
MB
68 (encryption-model (when (netrc-bound-and-true-p encrypt-file-alist)
69 (encrypt-find-model file)))
97b913ad 70 alist elem result pair)
87035689
MB
71 (if encryption-model
72 (encrypt-insert-file-contents file encryption-model)
73 (insert-file-contents file))
97b913ad
RS
74 (goto-char (point-min))
75 ;; Go through the file, line by line.
76 (while (not (eobp))
01c52d31 77 (narrow-to-region (point) (point-at-eol))
97b913ad
RS
78 ;; For each line, get the tokens and values.
79 (while (not (eobp))
80 (skip-chars-forward "\t ")
81 ;; Skip lines that begin with a "#".
82 (if (eq (char-after) ?#)
83 (goto-char (point-max))
84 (unless (eobp)
85 (setq elem
86 (if (= (following-char) ?\")
87 (read (current-buffer))
88 (buffer-substring
89 (point) (progn (skip-chars-forward "^\t ")
90 (point)))))
91 (cond
92 ((equal elem "macdef")
93 ;; We skip past the macro definition.
94 (widen)
95 (while (and (zerop (forward-line 1))
96 (looking-at "$")))
97 (narrow-to-region (point) (point)))
98 ((member elem tokens)
99 ;; Tokens that don't have a following value are ignored,
100 ;; except "default".
101 (when (and pair (or (cdr pair)
102 (equal (car pair) "default")))
103 (push pair alist))
104 (setq pair (list elem)))
105 (t
106 ;; Values that haven't got a preceding token are ignored.
107 (when pair
108 (setcdr pair elem)
109 (push pair alist)
110 (setq pair nil)))))))
111 (when alist
112 (push (nreverse alist) result))
113 (setq alist nil
114 pair nil)
115 (widen)
116 (forward-line 1))
117 (nreverse result)))))
118
119(defun netrc-machine (list machine &optional port defaultport)
120 "Return the netrc values from LIST for MACHINE or for the default entry.
121If PORT specified, only return entries with matching port tokens.
122Entries without port tokens default to DEFAULTPORT."
123 (let ((rest list)
124 result)
125 (while list
126 (when (equal (cdr (assoc "machine" (car list))) machine)
127 (push (car list) result))
128 (pop list))
129 (unless result
130 ;; No machine name matches, so we look for default entries.
131 (while rest
132 (when (assoc "default" (car rest))
133 (push (car rest) result))
134 (pop rest)))
135 (when result
136 (setq result (nreverse result))
137 (while (and result
01c52d31
MB
138 (not (netrc-port-equal
139 (or port defaultport "nntp")
140 (or (netrc-get (car result) "port")
141 defaultport "nntp"))))
97b913ad
RS
142 (pop result))
143 (car result))))
144
01c52d31
MB
145(defun netrc-machine-user-or-password (mode authinfo-file-or-list machines ports defaults)
146 "Get the user name or password according to MODE from AUTHINFO-FILE-OR-LIST.
147Matches a machine from MACHINES and a port from PORTS, giving
148default ports DEFAULTS to `netrc-machine'.
149
150MODE can be \"login\" or \"password\", suitable for passing to
151`netrc-get'."
152 (let ((authinfo-list (if (stringp authinfo-file-or-list)
153 (netrc-parse authinfo-file-or-list)
154 authinfo-file-or-list))
155 (ports (or ports '(nil)))
156 (defaults (or defaults '(nil)))
157 info)
158 (dolist (machine machines)
159 (dolist (default defaults)
160 (dolist (port ports)
161 (let ((alist (netrc-machine authinfo-list machine port default)))
162 (setq info (or (netrc-get alist mode) info))))))
163 info))
164
97b913ad
RS
165(defun netrc-get (alist type)
166 "Return the value of token TYPE from ALIST."
167 (cdr (assoc type alist)))
168
01c52d31
MB
169(defun netrc-port-equal (port1 port2)
170 (when (numberp port1)
171 (setq port1 (or (netrc-find-service-name port1) port1)))
172 (when (numberp port2)
173 (setq port2 (or (netrc-find-service-name port2) port2)))
174 (equal port1 port2))
175
176(defun netrc-parse-services ()
177 (when (file-exists-p netrc-services-file)
178 (let ((services nil))
179 (with-temp-buffer
180 (insert-file-contents netrc-services-file)
181 (while (search-forward "#" nil t)
182 (delete-region (1- (point)) (point-at-eol)))
183 (goto-char (point-min))
184 (while (re-search-forward
185 "^ *\\([^ \n\t]+\\)[ \t]+\\([0-9]+\\)/\\([^ \t\n]+\\)" nil t)
186 (push (list (match-string 1) (string-to-number (match-string 2))
187 (intern (downcase (match-string 3))))
188 services))
189 (nreverse services)))))
190
191(defun netrc-find-service-name (number &optional type)
192 (let ((services (netrc-parse-services))
193 service)
194 (setq type (or type 'tcp))
195 (while (and (setq service (pop services))
196 (not (and (= number (cadr service))
cb11d614 197 (eq type (car (cddr service)))))))
01c52d31
MB
198 (car service)))
199
200(defun netrc-find-service-number (name &optional type)
201 (let ((services (netrc-parse-services))
202 service)
203 (setq type (or type 'tcp))
204 (while (and (setq service (pop services))
205 (not (and (string= name (car service))
cb11d614 206 (eq type (car (cddr service)))))))
01c52d31
MB
207 (cadr service)))
208
97b913ad
RS
209(provide 'netrc)
210
cbee283d 211;; arch-tag: af9929cc-2d12-482f-936e-eb4366f9fa55
97b913ad 212;;; netrc.el ends here