705880fe64c7c0ae483b5678e276f262bc4ff1bb
[elpher.git] / elpher.el
1 ;;; elpher.el --- A friendly gopher and gemini client  -*- lexical-binding: t -*-
2
3 ;; Copyright (C) 2021 Jens Östlund <jostlund@gmail.com>
4 ;; Copyright (C) 2021 F. Jason Park <jp@neverwas.me>
5 ;; Copyright (C) 2021 Christopher Brannon <chris@the-brannons.com>
6 ;; Copyright (C) 2021 Omar Polo <op@omarpolo.com>
7 ;; Copyright (C) 2021 Noodles! <nnoodle@chiru.no>
8 ;; Copyright (C) 2020-2021 Alex Schroeder <alex@gnu.org>
9 ;; Copyright (C) 2020 Zhiwei Chen <chenzhiwei03@kuaishou.com>
10 ;; Copyright (C) 2020 condy0919 <condy0919@gmail.com>
11 ;; Copyright (C) 2020 Alexis <flexibeast@gmail.com>
12 ;; Copyright (C) 2020 Étienne Deparis <etienne@depar.is>
13 ;; Copyright (C) 2020 Simon Nicolussi <sinic@sinic.name>
14 ;; Copyright (C) 2020 Michel Alexandre Salim <michel@michel-slm.name>
15 ;; Copyright (C) 2020 Koushk Roy <kroy@twilio.com>
16 ;; Copyright (C) 2020 Vee <vee@vnsf.xyz>
17 ;; Copyright (C) 2020 Simon South <simon@simonsouth.net>
18 ;; Copyright (C) 2019-2021 Tim Vaughan <plugd@thelambdalab.xyz>
19
20 ;; Author: Tim Vaughan <plugd@thelambdalab.xyz>
21 ;; Created: 11 April 2019
22 ;; Version: 3.0.0
23 ;; Keywords: comm gopher
24 ;; Homepage: https://thelambdalab.xyz/elpher
25 ;; Package-Requires: ((emacs "27.1"))
26
27 ;; This file is not part of GNU Emacs.
28
29 ;; This program is free software: you can redistribute it and/or modify
30 ;; it under the terms of the GNU General Public License as published by
31 ;; the Free Software Foundation, either version 3 of the License, or
32 ;; (at your option) any later version.
33
34 ;; This program is distributed in the hope that it will be useful,
35 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
36 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
37 ;; GNU General Public License for more details.
38
39 ;; You should have received a copy of the GNU General Public License
40 ;; along with this file.  If not, see <http://www.gnu.org/licenses/>.
41
42 ;;; Commentary:
43
44 ;; Elpher aims to provide a practical and friendly gopher and gemini
45 ;; client for GNU Emacs.  It supports:
46
47 ;; - intuitive keyboard and mouse-driven browsing,
48 ;; - out-of-the-box compatibility with evil-mode,
49 ;; - clickable web and gopher links *in plain text*,
50 ;; - caching of visited sites,
51 ;; - pleasant and configurable colouring of Gopher directories,
52 ;; - direct visualisation of image files,
53 ;; - gopher connections using TLS encryption,
54 ;; - the fledgling Gemini protocol,
55 ;; - the greybeard Finger protocol.
56
57 ;; To launch Elpher, simply use 'M-x elpher'.  This will open a start
58 ;; page containing information on key bindings and suggested starting
59 ;; points for your gopher exploration.
60
61 ;; Full instructions can be found in the Elpher info manual.
62
63 ;; Elpher is under active development.  Any suggestions for
64 ;; improvements are welcome, and can be made on the official project
65 ;; page, gopher://thelambdalab.xyz/1/projects/elpher, or via the
66 ;; project mailing list at https://lists.sr.ht/~michel-slm/elpher.
67
68 ;;; Code:
69
70 (provide 'elpher)
71
72 ;;; Dependencies
73 ;;
74
75 (require 'seq)
76 (require 'pp)
77 (require 'shr)
78 (require 'url-util)
79 (require 'subr-x)
80 (require 'dns)
81 (require 'nsm)
82 (require 'gnutls)
83 (require 'socks)
84
85 ;;; ANSI colors or XTerm colors
86
87 (or (require 'xterm-color nil t)
88     (require 'ansi-color))
89
90 (defalias 'elpher-color-filter-apply
91   (if (fboundp 'xterm-color-filter)
92       (lambda (s)
93         (let ((_xterm-color-render nil))
94           (xterm-color-filter s)))
95     #'ansi-color-filter-apply)
96   "A function to filter out ANSI escape sequences.")
97
98 (defalias 'elpher-color-apply
99   (if (fboundp 'xterm-color-filter)
100       #'xterm-color-filter
101     #'ansi-color-apply)
102   "A function to apply ANSI escape sequences.")
103
104 ;;; Global constants
105 ;;
106
107 (defconst elpher-version "3.0.0"
108   "Current version of elpher.")
109
110 (defconst elpher-margin-width 6
111   "Width of left-hand margin used when rendering indicies.")
112
113 (defconst elpher-type-map
114   '(((gopher ?0) elpher-get-gopher-page elpher-render-text "txt" elpher-text)
115     ((gopher ?1) elpher-get-gopher-page elpher-render-index "/" elpher-index)
116     ((gopher ?4) elpher-get-gopher-page elpher-render-download "bin" elpher-binary)
117     ((gopher ?5) elpher-get-gopher-page elpher-render-download "bin" elpher-binary)
118     ((gopher ?7) elpher-get-gopher-query-page elpher-render-index "?" elpher-search)
119     ((gopher ?9) elpher-get-gopher-page elpher-render-download "bin" elpher-binary)
120     ((gopher ?g) elpher-get-gopher-page elpher-render-image "img" elpher-image)
121     ((gopher ?p) elpher-get-gopher-page elpher-render-image "img" elpher-image)
122     ((gopher ?I) elpher-get-gopher-page elpher-render-image "img" elpher-image)
123     ((gopher ?d) elpher-get-gopher-page elpher-render-download "doc" elpher-binary)
124     ((gopher ?P) elpher-get-gopher-page elpher-render-download "doc" elpher-binary)
125     ((gopher ?s) elpher-get-gopher-page elpher-render-download "snd" elpher-binary)
126     ((gopher ?h) elpher-get-gopher-page elpher-render-html "htm" elpher-html)
127     (gemini elpher-get-gemini-page elpher-render-gemini "gem" elpher-gemini)
128     (finger elpher-get-finger-page elpher-render-text "txt" elpher-text)
129     (telnet elpher-get-telnet-page nil "tel" elpher-telnet)
130     (other-url elpher-get-other-url-page nil "url" elpher-other-url)
131     ((special start) elpher-get-start-page nil "E" elpher-index)
132     ((special bookmarks) elpher-get-bookmarks-page nil "E" elpher-index)
133     ((special history) elpher-get-history-page nil "E" elpher-index)
134     ((special visited-pages) elpher-get-visited-pages-page nil "E" elpher-index))
135   "Association list from types to getters, renderers, margin codes and index faces.")
136
137
138 ;;; Declarations to avoid compiler warnings.
139 ;;
140
141 (eval-when-compile
142   (declare-function ansi-color-filter-apply "ansi-color")
143   (declare-function ansi-color-apply "ansi-color")
144   (declare-function bookmark-store "bookmark")
145   (declare-function org-link-store-props "ol")
146   (declare-function org-link-set-parameters "ol")
147   (defvar ansi-color-context)
148   (defvar bookmark-make-record-function)
149   (defvar mu4e~view-beginning-of-url-regexp)
150   (defvar thing-at-point-uri-schemes))
151
152
153 ;;; Customization group
154 ;;
155
156 (defgroup elpher nil
157   "A gopher and gemini client."
158   :group 'applications)
159
160 ;; General appearance and customizations
161
162 (defcustom elpher-open-urls-with-eww nil
163   "If non-nil, open URL selectors using eww.
164 Otherwise, use the system browser via the `browse-url' function."
165   :type '(boolean))
166
167 (defcustom elpher-use-header t
168   "If non-nil, display current page information in buffer header."
169   :type '(boolean))
170
171 (defcustom elpher-auto-disengage-TLS nil
172   "If non-nil, automatically disengage TLS following an unsuccessful connection.
173 While enabling this may seem convenient, it is also potentially
174 dangerous as it allows switching from an encrypted channel back to
175 plain text without user input."
176   :type '(boolean))
177
178 (defcustom elpher-connection-timeout 5
179   "Specifies the number of seconds to wait for a network connection to time out."
180   :type '(integer))
181
182 (defcustom elpher-filter-ansi-from-text nil
183   "If non-nil, filter ANSI escape sequences from text.
184 The default behaviour is to use the ansi-color package to interpret these
185 sequences."
186   :type '(boolean))
187
188 (defcustom elpher-certificate-directory
189   (file-name-as-directory (locate-user-emacs-file "elpher-certificates"))
190   "Specify the name of the directory where client certificates will be stored.
191 These certificates may be used for establishing authenticated TLS connections."
192   :type '(directory))
193
194 (defcustom elpher-openssl-command "openssl"
195   "The command used to launch openssl when generating TLS client certificates."
196   :type '(file))
197
198 (defcustom elpher-default-url-type "gopher"
199   "Default URL type (i.e. scheme) to assume if not explicitly given."
200   :type '(choice (const "gopher")
201                  (const "gemini")))
202
203 (defcustom elpher-gemini-TLS-cert-checks nil
204   "If non-nil, verify gemini server TLS certs using the default security level.
205 Otherwise, certificate verification is disabled.
206
207 This defaults to off because it is standard practice for Gemini servers
208 to use self-signed certificates, meaning that most servers provide what
209 EMACS considers to be an invalid certificate."
210   :type '(boolean))
211
212 (defcustom elpher-gemini-max-fill-width 80
213   "Specify the maximum default width (in columns) of text/gemini documents.
214 The actual width used is the minimum of this value and the window width at
215 the time when the text is rendered."
216   :type '(integer))
217
218 (defcustom elpher-gemini-link-string "→ "
219   "Specify the string used to indicate links when rendering gemini maps.
220 May be empty."
221   :type '(string))
222
223 (defcustom elpher-gemini-bullet-string "•"
224   "Specify the string used for bullets when rendering gemini maps."
225   :type '(string))
226
227 (defcustom elpher-ipv4-always nil
228   "If non-nil, elpher will always use IPv4 to establish network connections.
229 This can be useful when browsing from a computer that supports IPv6, because
230 some servers which do not support IPv6 can take a long time to time-out."
231   :type '(boolean))
232
233 (defcustom elpher-socks-always nil
234   "If non-nil, elpher will establish network connections over a SOCKS proxy.
235 Otherwise, the SOCKS proxy is only used for connections to onion services."
236   :type '(boolean))
237
238 (defcustom elpher-use-emacs-bookmark-menu nil
239   "If non-nil, elpher will only use the native Emacs bookmark menu.
240 Otherwise, \\[elpher-show-bookmarks] will visit a special elpher bookmark
241 page within which all of the standard elpher keybindings are active."
242   :type '(boolean))
243
244 ;; Face customizations
245
246 (defgroup elpher-faces nil
247   "Elpher face customizations."
248   :group 'elpher)
249
250 (defface elpher-index
251   '((t :inherit font-lock-keyword-face))
252   "Face used for directory type directory records.")
253
254 (defface elpher-text
255   '((t :inherit bold))
256   "Face used for text type directory records.")
257
258 (defface elpher-info
259   '((t :inherit default))
260   "Face used for info type directory records.")
261
262 (defface elpher-image
263   '((t :inherit font-lock-string-face))
264   "Face used for image type directory records.")
265
266 (defface elpher-search
267   '((t :inherit warning))
268   "Face used for search type directory records.")
269
270 (defface elpher-html
271   '((t :inherit font-lock-comment-face))
272   "Face used for html type directory records.")
273
274 (defface elpher-gemini
275   '((t :inherit font-lock-constant-face))
276   "Face used for Gemini type directory records.")
277
278 (defface elpher-other-url
279   '((t :inherit font-lock-comment-face))
280   "Face used for other URL type links records.")
281
282 (defface elpher-telnet
283   '((t :inherit font-lock-function-name-face))
284   "Face used for telnet type directory records.")
285
286 (defface elpher-binary
287   '((t :inherit font-lock-doc-face))
288   "Face used for binary type directory records.")
289
290 (defface elpher-unknown
291   '((t :inherit error))
292   "Face used for directory records with unknown/unsupported types.")
293
294 (defface elpher-margin-key
295   '((t :inherit bold))
296   "Face used for directory margin key.")
297
298 (defface elpher-margin-brackets
299   '((t :inherit shadow))
300   "Face used for brackets around directory margin key.")
301
302 (defface elpher-gemini-heading1
303   '((t :inherit bold :height 1.8))
304   "Face used for gemini heading level 1.")
305
306 (defface elpher-gemini-heading2
307   '((t :inherit bold :height 1.5))
308   "Face used for gemini heading level 2.")
309
310 (defface elpher-gemini-heading3
311   '((t :inherit bold :height 1.2))
312   "Face used for gemini heading level 3.")
313
314 (defface elpher-gemini-preformatted
315   '((t :inherit fixed-pitch))
316   "Face used for pre-formatted gemini text blocks.")
317
318 (defface elpher-gemini-quoted
319   '((t :inherit font-lock-doc-face))
320   "Face used for gemini quoted texts.")
321
322 ;;; Model
323 ;;
324
325 ;; Address
326
327 ;; An elpher "address" object is either a url object or a symbol.
328 ;; Symbol addresses are "special", corresponding to pages generated
329 ;; dynamically for and by elpher.  All others represent pages which
330 ;; rely on content retrieved over the network.
331
332 (defun elpher-address-from-url (url-string)
333   "Create a ADDRESS object corresponding to the given URL-STRING."
334   (let ((data (match-data))) ; Prevent parsing clobbering match data
335     (unwind-protect
336         (let ((url (url-generic-parse-url url-string)))
337           (unless (and (not (url-fullness url)) (url-type url))
338             (setf (url-fullness url) t)
339             (unless (url-type url)
340               (setf (url-type url) elpher-default-url-type))
341             (unless (url-host url)
342               (let ((p (split-string (url-filename url) "/" nil nil)))
343                 (setf (url-host url) (car p))
344                 (setf (url-filename url)
345                       (if (cdr p)
346                           (concat "/" (mapconcat #'identity (cdr p) "/"))
347                         ""))))
348             (when (or (equal "gopher" (url-type url))
349                       (equal "gophers" (url-type url)))
350               ;; Gopher defaults
351               (when (or (equal (url-filename url) "")
352                         (equal (url-filename url) "/"))
353                 (setf (url-filename url) "/1")))
354             (when (equal "gemini" (url-type url))
355               ;; Gemini defaults
356               (if (equal (url-filename url) "")
357                   (setf (url-filename url) "/"))))
358           (elpher-remove-redundant-ports url))
359       (set-match-data data))))
360
361 (defun elpher-remove-redundant-ports (address)
362   "Remove redundant port specifiers from ADDRESS.
363 Here 'redundant' means that the specified port matches the default
364 for that protocol, eg 70 for gopher."
365   (if (and (not (elpher-address-special-p address))
366            (eq (url-portspec address) ; (url-port) is too slow!
367                (pcase (url-type address)
368                  ("gemini" 1965)
369                  ((or "gopher" "gophers") 70)
370                  ("finger" 79)
371                  (_ -1))))
372       (setf (url-portspec address) nil))
373   address)
374
375 (defun elpher-make-gopher-address (type selector host port &optional tls)
376   "Create an ADDRESS object using gopher directory record attributes.
377 The basic attributes include: TYPE, SELECTOR, HOST and PORT.
378 If the optional attribute TLS is non-nil, the address will be marked as
379 requiring gopher-over-TLS."
380   (cond
381    ((equal type ?i) nil)
382    ((and (equal type ?h)
383          (string-prefix-p "URL:" selector))
384     (elpher-address-from-url (elt (split-string selector "URL:") 1)))
385    ((equal type ?8)
386     (elpher-address-from-url
387      (concat "telnet"
388              "://" host
389              ":" (number-to-string port))))
390    (t
391     (elpher-address-from-url
392      (concat "gopher" (if tls "s" "")
393              "://" host
394              ":" (number-to-string port)
395              "/" (string type)
396              selector)))))
397
398 (defun elpher-make-special-address (type)
399   "Create an ADDRESS object corresponding to the given special address symbol TYPE."
400   type)
401
402 (defun elpher-address-to-url (address)
403   "Get string representation of ADDRESS, or nil if ADDRESS is special."
404   (if (elpher-address-special-p address)
405       nil
406     (url-encode-url (url-recreate-url address))))
407
408 (defun elpher-address-type (address)
409   "Retrieve type of ADDRESS object.
410 This is used to determine how to retrieve and render the document the
411 address refers to, via the table `elpher-type-map'."
412   (if (symbolp address)
413       (list 'special address)
414     (let ((protocol (url-type address)))
415       (cond ((or (equal protocol "gopher")
416                  (equal protocol "gophers"))
417              (list 'gopher
418                    (if (member (url-filename address) '("" "/"))
419                        ?1
420                      (string-to-char (substring (url-filename address) 1)))))
421             ((equal protocol "gemini")
422              'gemini)
423             ((equal protocol "telnet")
424              'telnet)
425             ((equal protocol "finger")
426              'finger)
427             (t 'other-url)))))
428
429 (defun elpher-address-protocol (address)
430   "Retrieve the transport protocol for ADDRESS.  This is nil for special addresses."
431   (if (symbolp address)
432       nil
433     (url-type address)))
434
435 (defun elpher-address-filename (address)
436   "Retrieve the filename component of ADDRESS.
437 For gopher addresses this is a combination of the selector type and selector."
438   (if (symbolp address)
439       nil
440     (url-unhex-string (url-filename address))))
441
442 (defun elpher-address-host (address)
443   "Retrieve host from ADDRESS object."
444   (url-host address))
445
446 (defun elpher-address-user (address)
447   "Retrieve user from ADDRESS object."
448   (url-user address))
449
450 (defun elpher-address-port (address)
451   "Retrieve port from ADDRESS object.
452 If no address is defined, returns 0.  (This is for compatibility with the URL library.)"
453   (if (symbolp address)
454       0
455     (url-port address)))
456
457 (defun elpher-address-special-p (address)
458   "Return non-nil if ADDRESS object is special (e.g. start page page)."
459   (symbolp address))
460
461 (defun elpher-address-gopher-p (address)
462   "Return non-nill if ADDRESS object is a gopher address."
463   (and (not (elpher-address-special-p address))
464        (member (elpher-address-protocol address) '("gopher" "gophers"))))
465
466 (defun elpher-gopher-address-selector (address)
467   "Retrieve gopher selector from ADDRESS object."
468   (if (member (url-filename address) '("" "/"))
469       ""
470     (url-unhex-string (substring (url-filename address) 2))))
471
472
473 ;; Cache
474
475 (defvar elpher-content-cache (make-hash-table :test 'equal))
476 (defvar elpher-pos-cache (make-hash-table :test 'equal))
477
478 (defun elpher-get-cached-content (address)
479   "Retrieve the cached content for ADDRESS, or nil if none exists."
480   (gethash address elpher-content-cache))
481
482 (defun elpher-cache-content (address content)
483   "Set the content cache for ADDRESS to CONTENT."
484   (puthash address content elpher-content-cache))
485
486 (defun elpher-get-cached-pos (address)
487   "Retrieve the cached cursor position for ADDRESS, or nil if none exists."
488   (gethash address elpher-pos-cache))
489
490 (defun elpher-cache-pos (address pos)
491   "Set the cursor position cache for ADDRESS to POS."
492   (puthash address pos elpher-pos-cache))
493
494
495 ;; Page
496
497 (defun elpher-make-page (display-string address)
498   "Create a page with DISPLAY-STRING and ADDRESS."
499   (list display-string address))
500
501 (defun elpher-make-start-page ()
502   "Create the start page."
503   (elpher-make-page "Elpher Start Page"
504                     (elpher-make-special-address 'start)))
505
506 (defun elpher-page-display-string (page)
507   "Retrieve the display string corresponding to PAGE."
508   (elt page 0))
509
510 (defun elpher-page-address (page)
511   "Retrieve the address corresponding to PAGE."
512   (elt page 1))
513
514 (defun elpher-page-set-address (page new-address)
515   "Set the address corresponding to PAGE to NEW-ADDRESS."
516   (setcar (cdr page) new-address))
517
518 (defvar elpher-current-page nil
519   "The current page for this Elpher buffer.")
520
521 (defvar elpher-history nil
522   "The local history stack for this Elpher buffer.
523 This variable is used by `elpher-back' and
524 `elpher-show-history'.")
525
526 (defvar elpher-visited-pages nil
527   "The global history for all Elpher buffers.
528 This variable is used by `elpher-show-visited-pages'.")
529
530 (defun elpher-visit-page (page &optional renderer no-history)
531   "Visit PAGE using its own renderer or RENDERER, if non-nil.
532 Additionally, push PAGE onto the history stack and the list of
533 previously-visited pages,unless NO-HISTORY is non-nil."
534   (elpher-save-pos)
535   (elpher-process-cleanup)
536   (unless no-history
537     (unless (equal (elpher-page-address elpher-current-page)
538                    (elpher-page-address page))
539       (push elpher-current-page elpher-history)
540       (unless (or (elpher-address-special-p (elpher-page-address page))
541                   (and elpher-visited-pages
542                        (equal page (car elpher-visited-pages))))
543         (push page elpher-visited-pages))))
544   (setq-local elpher-current-page page)
545   (let* ((address (elpher-page-address page))
546          (type (elpher-address-type address))
547          (type-record (cdr (assoc type elpher-type-map))))
548     (if type-record
549         (funcall (car type-record)
550                  (if renderer
551                      renderer
552                    (cadr type-record)))
553       (elpher-visit-previous-page)
554       (pcase type
555         (`(gopher ,type-char)
556          (error "Unsupported gopher selector type '%c' for '%s'"
557                 type-char (elpher-address-to-url address)))
558         (other
559          (error "Unsupported address type '%S' for '%s'"
560                 other (elpher-address-to-url address)))))))
561
562 (defun elpher-visit-previous-page ()
563   "Visit the previous page in the history."
564   (let ((previous-page (pop elpher-history)))
565     (if previous-page
566         (elpher-visit-page previous-page nil t)
567       (error "No previous page"))))
568
569 (defun elpher-reload-current-page ()
570   "Reload the current page, discarding any existing cached content."
571   (elpher-cache-content (elpher-page-address elpher-current-page) nil)
572   (elpher-visit-page elpher-current-page))
573
574 (defun elpher-save-pos ()
575   "Save the current position of point to the current page."
576   (when elpher-current-page
577     (elpher-cache-pos (elpher-page-address elpher-current-page) (point))))
578
579 (defun elpher-restore-pos ()
580   "Restore the position of point to that cached in the current page."
581   (let ((pos (elpher-get-cached-pos (elpher-page-address elpher-current-page))))
582     (if pos
583         (goto-char pos)
584       (goto-char (point-min)))))
585
586
587 ;;; Buffer preparation
588 ;;
589
590 (defvar elpher-buffer-name "*elpher*"
591   "The default name of the Elpher buffer.")
592
593 (defun elpher-update-header ()
594   "If `elpher-use-header' is true, display current page info in window header."
595   (if elpher-use-header
596       (let* ((display-string (elpher-page-display-string elpher-current-page))
597              (address (elpher-page-address elpher-current-page))
598              (tls-string (if (and (not (elpher-address-special-p address))
599                                   (member (elpher-address-protocol address)
600                                           '("gophers" "gemini")))
601                              " [TLS encryption]"
602                            ""))
603              (header (concat display-string
604                              (propertize tls-string 'face 'bold))))
605         (setq header-line-format header))))
606
607 (defmacro elpher-with-clean-buffer (&rest args)
608   "Evaluate ARGS with a clean *elpher* buffer as current."
609   `(with-current-buffer elpher-buffer-name
610      (unless (eq major-mode 'elpher-mode)
611        ;; avoid resetting buffer-local variables
612        (elpher-mode))
613      (let ((inhibit-read-only t)
614            (ansi-color-context nil)) ;; clean ansi interpreter state
615        (setq-local network-security-level
616                    (default-value 'network-security-level))
617        (erase-buffer)
618        (elpher-update-header)
619        ,@args)))
620
621 (defun elpher-buffer-message (string &optional line)
622   "Replace first line in elpher buffer with STRING.
623 If LINE is non-nil, replace that line instead."
624   (with-current-buffer elpher-buffer-name
625     (let ((inhibit-read-only t))
626       (goto-char (point-min))
627       (if line
628           (forward-line line))
629       (let ((data (match-data)))
630         (unwind-protect
631             (progn
632               (re-search-forward "^.*$")
633               (replace-match string))
634           (set-match-data data))))))
635
636
637 ;;; Text Processing
638 ;;
639
640 (defvar elpher-user-coding-system nil
641   "User-specified coding system to use for decoding text responses.")
642
643 (defun elpher-decode (string)
644   "Decode STRING using autodetected or user-specified coding system."
645   (decode-coding-string string
646                         (if elpher-user-coding-system
647                             elpher-user-coding-system
648                           (detect-coding-string string t))))
649
650 (defun elpher-preprocess-text-response (string)
651   "Preprocess text selector response contained in STRING.
652 This involes decoding the character representation, and clearing
653 away CRs and any terminating period."
654   (elpher-decode (replace-regexp-in-string "\n\\.\n$" "\n"
655                                            (replace-regexp-in-string "\r" "" string))))
656
657
658 ;;; Network error reporting
659 ;;
660
661 (defun elpher-network-error (address error)
662   "Display ERROR message following unsuccessful negotiation with ADDRESS.
663 ERROR can be either an error object or a string."
664   (elpher-with-clean-buffer
665    (insert (propertize "\n---- ERROR -----\n\n" 'face 'error)
666            "When attempting to retrieve " (elpher-address-to-url address) ":\n"
667            (if (stringp error) error (error-message-string error)) "\n"
668            (propertize "\n----------------\n\n" 'face 'error)
669            "Press 'u' to return to the previous page.")))
670
671
672 ;;; General network communication
673 ;;
674
675 (defvar elpher-network-timer nil
676   "Timer used for network connections.")
677
678 (defvar elpher-use-tls nil
679   "If non-nil, use TLS to communicate with gopher servers.")
680
681 (defvar elpher-client-certificate nil
682   "If non-nil, contains client certificate details to use for TLS connections.")
683
684 (defun elpher-process-cleanup ()
685   "Immediately shut down any extant elpher process and timers."
686   (let ((p (get-process "elpher-process")))
687     (if p (delete-process p)))
688   (if (timerp elpher-network-timer)
689       (cancel-timer elpher-network-timer)))
690
691 (defun elpher-make-network-timer (thunk)
692   "Creates a timer to run the THUNK after `elpher-connection-timeout' seconds.
693 This is just a wraper around `run-at-time' which additionally sets the
694 buffer-local variable `elpher-network-timer' to allow
695 `elpher-process-cleanup' to also clear the timer."
696   (let ((timer (run-at-time elpher-connection-timeout nil thunk)))
697     (setq-local elpher-network-timer timer)
698     timer))
699
700 (defun elpher-get-host-response (address default-port query-string response-processor
701                                          &optional use-tls force-ipv4)
702   "Generic function for retrieving data from ADDRESS.
703
704 When ADDRESS lacks a specific port, DEFAULT-PORT is used instead.
705 QUERY-STRING is a string sent to the host specified by ADDRESS to
706 illicet a response.  This response is passed as an argument to the
707 function RESPONSE-PROCESSOR.
708
709 If non-nil, USE-TLS specifies that the connection is to be made over
710 TLS.  If set to gemini, the certificate verification will be disabled
711 unless `elpher-gemini-TLS-cert-checks' is non-nil.
712
713 If non-nil, FORCE-IPV4 causes the network connection to be made over
714 ipv4 only.  (The default behaviour when this is not set depends on
715 the host operating system and the local network capabilities.)"
716   (if (and use-tls (not (gnutls-available-p)))
717       (error "Use of TLS requires Emacs to be compiled with GNU TLS support")
718     (unless (< (elpher-address-port address) 65536)
719       (error "Cannot establish network connection: port number > 65536"))
720     (when (and (eq use-tls 'gemini) (not elpher-gemini-TLS-cert-checks))
721       (setq-local network-security-level 'low)
722       (setq-local gnutls-verify-error nil))
723     (condition-case nil
724         (let* ((kill-buffer-query-functions nil)
725                (port (elpher-address-port address))
726                (host (elpher-address-host address))
727                (service (if (> port 0) port default-port))
728                (response-string-parts nil)
729                (bytes-received 0)
730                (hkbytes-received 0)
731                (socks (or elpher-socks-always (string-suffix-p ".onion" host)))
732                (gnutls-params (list :type 'gnutls-x509pki
733                                     :hostname host
734                                     :keylist
735                                     (elpher-get-current-keylist address)))
736                (timer (elpher-make-network-timer
737                                    (lambda ()
738                                      (elpher-process-cleanup)
739                                      (cond
740                                         ; Try again with IPv4
741                                       ((not (or force-ipv4 socks))
742                                        (message "Connection timed out.  Retrying with IPv4.")
743                                        (elpher-get-host-response address default-port
744                                                                  query-string
745                                                                  response-processor
746                                                                  use-tls t))
747                                       ((and use-tls
748                                             (not (eq use-tls 'gemini))
749                                             (or elpher-auto-disengage-TLS
750                                                 (y-or-n-p
751                                                  "TLS connetion failed.  Disable TLS mode and retry? ")))
752                                        (setq elpher-use-tls nil)
753                                        (elpher-get-host-response address default-port
754                                                                  query-string
755                                                                  response-processor
756                                                                  nil force-ipv4))
757                                       (t
758                                        (elpher-network-error address "Connection time-out."))))))
759                (proc (if socks (socks-open-network-stream "elpher-process" nil host service)
760                        (make-network-process :name "elpher-process"
761                                              :host host
762                                              :family (and force-ipv4 'ipv4)
763                                              :service service
764                                              :buffer nil
765                                              :nowait t
766                                              :tls-parameters
767                                              (and use-tls
768                                                   (cons 'gnutls-x509pki
769                                                         (apply #'gnutls-boot-parameters
770                                                                gnutls-params)))))))
771           (setq elpher-network-timer timer)
772           (set-process-coding-system proc 'binary 'binary)
773           (set-process-query-on-exit-flag proc nil)
774           (elpher-buffer-message (concat "Connecting to " host "..."
775                                          " (press 'u' to abort)"))
776           (set-process-filter proc
777                               (lambda (_proc string)
778                                 (when timer
779                                   (cancel-timer timer)
780                                   (setq timer nil))
781                                 (setq bytes-received (+ bytes-received (length string)))
782                                 (let ((new-hkbytes-received (/ bytes-received 102400)))
783                                   (when (> new-hkbytes-received hkbytes-received)
784                                     (setq hkbytes-received new-hkbytes-received)
785                                     (elpher-buffer-message
786                                      (concat "("
787                                              (number-to-string (/ hkbytes-received 10.0))
788                                              " MB read)")
789                                      1)))
790                                 (setq response-string-parts
791                                       (cons string response-string-parts))))
792           (set-process-sentinel proc
793                                 (lambda (proc event)
794                                   (when timer
795                                     (cancel-timer timer))
796                                   (condition-case the-error
797                                       (cond
798                                        ((string-prefix-p "open" event)    ; request URL
799                                         (elpher-buffer-message
800                                          (concat "Connected to " host ". Receiving data..."
801                                                  " (press 'u' to abort)"))
802                                         (let ((inhibit-eol-conversion t))
803                                           (process-send-string proc query-string)))
804                                        ((string-prefix-p "deleted" event)) ; do nothing
805                                        ((and (not response-string-parts)
806                                              (not (or elpher-ipv4-always force-ipv4 socks)))
807                                         ; Try again with IPv4
808                                         (message "Connection failed. Retrying with IPv4.")
809                                         (elpher-get-host-response address default-port
810                                                                   query-string
811                                                                   response-processor
812                                                                   use-tls t))
813                                        (response-string-parts
814                                         (elpher-with-clean-buffer
815                                          (insert "Data received.  Rendering..."))
816                                         (funcall response-processor
817                                                  (apply #'concat (reverse response-string-parts)))
818                                         (elpher-restore-pos))
819                                        (t
820                                         (error "No response from server")))
821                                     (error
822                                      (elpher-network-error address the-error)))))
823           (when socks
824             (if use-tls (apply #'gnutls-negotiate :process proc gnutls-params))
825             (funcall (process-sentinel proc) proc "open\n")))
826       (error
827        (elpher-process-cleanup)
828        (error "Error initiating connection to server")))))
829
830
831 ;;; Client-side TLS Certificate Management
832 ;;
833
834 (defun elpher-generate-certificate (common-name key-file cert-file &optional temporary)
835   "Generate a key and a self-signed client TLS certificate using openssl.
836
837 The Common Name field of the certificate is set to COMMON-NAME.  The
838 arguments KEY-FILE and CERT-FILE should contain the absolute paths of
839 the key and certificate files to write.
840
841 If TEMPORARY is non-nil, the certificate will be given an exporation
842 period of one day, and the key and certificate files will be deleted
843 when the certificate is no longer needed for the current session.
844
845 Otherwise, the certificate will be given a 100 year expiration period
846 and the files will not be deleted.
847
848 The function returns a list containing the current host name, the
849 temporary flag, and the key and cert file names in the form required
850 by `gnutls-boot-parameters`."
851   (let ((exp-key-file (expand-file-name key-file))
852         (exp-cert-file (expand-file-name cert-file)))
853     (condition-case nil
854         (progn
855           (call-process elpher-openssl-command nil nil nil
856                         "req" "-x509" "-newkey" "rsa:2048"
857                         "-days" (if temporary "1" "36500")
858                         "-nodes"
859                         "-subj" (concat "/CN=" common-name)
860                         "-keyout" exp-key-file
861                         "-out" exp-cert-file)
862           (list (elpher-address-host (elpher-page-address elpher-current-page))
863                 temporary exp-key-file exp-cert-file))
864       (error
865        (message "Check that openssl is installed, or customize `elpher-openssl-command`.")
866        (error "Program 'openssl', required for certificate generation, not found")))))
867
868 (defun elpher-generate-throwaway-certificate ()
869   "Generate and return details of a throwaway certificate.
870 The key and certificate files will be deleted when they are no
871 longer needed for this session."
872   (let* ((file-base (make-temp-name "elpher"))
873          (key-file (concat temporary-file-directory file-base ".key"))
874          (cert-file (concat temporary-file-directory file-base ".crt")))
875     (elpher-generate-certificate file-base key-file cert-file t)))
876
877 (defun elpher-generate-persistent-certificate (file-base common-name)
878   "Generate and return details of a persistent certificate.
879 The argument FILE-BASE is used as the base for the key and certificate
880 files, while COMMON-NAME specifies the common name field of the
881 certificate.
882
883 The key and certificate files are written to in `elpher-certificate-directory'."
884   (let* ((key-file (concat elpher-certificate-directory file-base ".key"))
885          (cert-file (concat elpher-certificate-directory file-base ".crt")))
886     (elpher-generate-certificate common-name key-file cert-file)))
887
888 (defun elpher-get-existing-certificate (file-base)
889   "Return a certificate object corresponding to an existing certificate.
890 It is assumed that the key files FILE-BASE.key and FILE-BASE.crt exist in
891 the directory `elpher-certificate-directory'."
892   (let* ((key-file (concat elpher-certificate-directory file-base ".key"))
893          (cert-file (concat elpher-certificate-directory file-base ".crt")))
894     (list (elpher-address-host (elpher-page-address elpher-current-page))
895           nil
896           (expand-file-name key-file)
897           (expand-file-name cert-file))))
898
899 (defun elpher-install-and-use-existing-certificate (key-file-src cert-file-src file-base)
900   "Install a key+certificate file pair in `elpher-certificate-directory'.
901 The strings KEY-FILE-SRC and CERT-FILE-SRC are the existing key and
902 certificate files to install.  The argument FILE-BASE is used as the
903 base for the installed key and certificate files."
904   (let* ((key-file (concat elpher-certificate-directory file-base ".key"))
905          (cert-file (concat elpher-certificate-directory file-base ".crt")))
906     (if (or (file-exists-p key-file)
907             (file-exists-p cert-file))
908         (error "A certificate with base name %s is already installed" file-base))
909     (copy-file key-file-src key-file)
910     (copy-file cert-file-src cert-file)
911     (list (elpher-address-host (elpher-page-address elpher-current-page))
912           nil
913           (expand-file-name key-file)
914           (expand-file-name cert-file))))
915
916 (defun elpher-list-existing-certificates ()
917   "Return a list of the persistent certificates in `elpher-certificate-directory'."
918   (unless (file-directory-p elpher-certificate-directory)
919     (make-directory elpher-certificate-directory))
920   (mapcar
921    (lambda (file)
922      (file-name-sans-extension file))
923    (directory-files elpher-certificate-directory nil "\\.key$")))
924
925 (defun elpher-forget-current-certificate ()
926   "Causes any current certificate to be forgotten.)
927 In the case of throwaway certificates, the key and certificate files
928 are also deleted."
929   (interactive)
930   (when elpher-client-certificate
931     (unless (and (called-interactively-p 'any)
932                  (not (y-or-n-p (concat "Really forget client certificate? "
933                                         "(Throwaway certificates will be deleted.)"))))
934       (when (cadr elpher-client-certificate)
935         (delete-file (elt elpher-client-certificate 2))
936         (delete-file (elt elpher-client-certificate 3)))
937       (setq elpher-client-certificate nil)
938       (if (called-interactively-p 'any)
939           (message "Client certificate forgotten.")))))
940
941 (defun elpher-get-current-keylist (address)
942   "Retrieve the `gnutls-boot-parameters'-compatable keylist.
943
944 This is obtained from the client certificate described by
945 `elpher-current-certificate', if one is available and the host for
946 that certificate matches the host in ADDRESS.
947
948 If `elpher-current-certificate' is non-nil, and its host name doesn't
949 match that of ADDRESS, the certificate is forgotten."
950   (if elpher-client-certificate
951       (if (string= (car elpher-client-certificate)
952                    (elpher-address-host address))
953           (list (cddr elpher-client-certificate))
954         (elpher-forget-current-certificate)
955         (message "Disabling client certificate for new host")
956         nil)
957     nil))
958
959
960 ;;; Gopher selector retrieval
961 ;;
962
963 (defun elpher-get-gopher-response (address renderer)
964   "Get response string from gopher server at ADDRESS and render using RENDERER."
965   (elpher-get-host-response address 70
966                             (concat (elpher-gopher-address-selector address) "\r\n")
967                             renderer
968                             (or (string= (elpher-address-protocol address) "gophers")
969                                 elpher-use-tls)))
970
971 (defun elpher-get-gopher-page (renderer)
972   "Getter function for gopher pages.
973 The RENDERER procedure is used to display the contents of the page
974 once they are retrieved from the gopher server."
975   (let* ((address (elpher-page-address elpher-current-page))
976          (content (elpher-get-cached-content address)))
977     (if (and content (funcall renderer nil))
978         (elpher-with-clean-buffer
979          (insert content)
980          (elpher-restore-pos))
981       (elpher-with-clean-buffer
982        (insert "LOADING... (use 'u' to cancel)\n"))
983       (condition-case the-error
984           (elpher-get-gopher-response address renderer)
985         (error
986          (elpher-network-error address the-error))))))
987
988 ;; Index rendering
989
990 (defun elpher-insert-index (string)
991   "Insert the index corresponding to STRING into the current buffer."
992   ;; Should be able to split directly on CRLF, but some non-conformant
993   ;; LF-only servers sadly exist, hence the following.
994   (let ((str-processed (elpher-preprocess-text-response string)))
995     (dolist (line (split-string str-processed "\n"))
996       (ignore-errors
997         (unless (= (length line) 0)
998           (let* ((type (elt line 0))
999                  (fields (split-string (substring line 1) "\t"))
1000                  (display-string (elt fields 0))
1001                  (selector (elt fields 1))
1002                  (host (elt fields 2))
1003                  (port (if (elt fields 3)
1004                            (string-to-number (elt fields 3))
1005                          nil))
1006                  (address (elpher-make-gopher-address type selector host port)))
1007             (elpher-insert-index-record display-string address)))))))
1008
1009 (defun elpher-insert-margin (&optional type-name)
1010   "Insert index margin, optionally containing the TYPE-NAME, into the current buffer."
1011   (if type-name
1012       (progn
1013         (insert (format (concat "%" (number-to-string (- elpher-margin-width 1)) "s")
1014                         (concat
1015                          (propertize "[" 'face 'elpher-margin-brackets)
1016                          (propertize type-name 'face 'elpher-margin-key)
1017                          (propertize "]" 'face 'elpher-margin-brackets))))
1018         (insert " "))
1019     (insert (make-string elpher-margin-width ?\s))))
1020
1021 (defun elpher--page-button-help (_window buffer pos)
1022   "Function called by Emacs to generate mouse-over text.
1023 The arguments specify the BUFFER and the POS within the buffer of the item
1024 for which help is required.  The function returns the help to be
1025 displayed.  The _WINDOW argument is currently unused."
1026   (with-current-buffer buffer
1027     (let ((button (button-at pos)))
1028       (when button
1029         (let* ((page (button-get button 'elpher-page))
1030                (address (elpher-page-address page)))
1031           (format "mouse-1, RET: open '%s'" (if (elpher-address-special-p address)
1032                                                 address
1033                                               (elpher-address-to-url address))))))))
1034
1035 (defun elpher-insert-index-record (display-string &optional address)
1036   "Function to insert an index record into the current buffer.
1037 The contents of the record are dictated by DISPLAY-STRING and ADDRESS.
1038 If ADDRESS is not supplied or nil the record is rendered as an
1039 'information' line."
1040   (let* ((type (if address (elpher-address-type address) nil))
1041          (type-map-entry (cdr (assoc type elpher-type-map))))
1042     (if type-map-entry
1043         (let* ((margin-code (elt type-map-entry 2))
1044                (face (elt type-map-entry 3))
1045                (filtered-display-string (elpher-color-filter-apply display-string))
1046                (page (elpher-make-page filtered-display-string address)))
1047           (elpher-insert-margin margin-code)
1048           (insert-text-button filtered-display-string
1049                               'face face
1050                               'elpher-page page
1051                               'action #'elpher-click-link
1052                               'follow-link t
1053                               'help-echo #'elpher--page-button-help))
1054       (pcase type
1055         ('nil ;; Information
1056          (elpher-insert-margin)
1057          (let ((propertized-display-string
1058                 (propertize display-string 'face 'elpher-info)))
1059            (insert (elpher-process-text-for-display propertized-display-string))))
1060         (`(gopher ,selector-type) ;; Unknown
1061          (elpher-insert-margin (concat (char-to-string selector-type) "?"))
1062          (insert (propertize display-string
1063                              'face 'elpher-unknown)))))
1064     (insert "\n")))
1065
1066 (defun elpher-click-link (button)
1067   "Function called when the gopher link BUTTON is activated (via mouse or keypress)."
1068   (let ((page (button-get button 'elpher-page)))
1069     (elpher-visit-page page)))
1070
1071 (defun elpher-render-index (data &optional _mime-type-string)
1072   "Render DATA as an index.  MIME-TYPE-STRING is unused."
1073   (elpher-with-clean-buffer
1074    (if (not data)
1075        t
1076      (elpher-insert-index data)
1077      (elpher-cache-content (elpher-page-address elpher-current-page)
1078                            (buffer-string)))))
1079
1080 ;; Text rendering
1081
1082 (defconst elpher-url-regex
1083   "\\([a-zA-Z]+\\)://\\([a-zA-Z0-9.-]*[a-zA-Z0-9-]\\|\\[[a-zA-Z0-9:]+\\]\\)\\(:[0-9]+\\)?\\(/\\([0-9a-zA-Z_~?/@|:.%#=&-]*[0-9a-zA-Z_~?/@|#-]\\)?\\)?"
1084   "Regexp used to locate and buttonify URLs in text files loaded by elpher.")
1085
1086 (defun elpher-buttonify-urls (string)
1087   "Turn substrings which look like urls in STRING into clickable buttons."
1088   (with-temp-buffer
1089     (insert string)
1090     (goto-char (point-min))
1091     (while (re-search-forward elpher-url-regex nil t)
1092       (let ((page (elpher-make-page (substring-no-properties (match-string 0))
1093                                     (elpher-address-from-url (match-string 0)))))
1094         (make-text-button (match-beginning 0)
1095                           (match-end 0)
1096                           'elpher-page  page
1097                           'action #'elpher-click-link
1098                           'follow-link t
1099                           'help-echo #'elpher--page-button-help
1100                           'face 'button)))
1101     (buffer-string)))
1102
1103 (defun elpher-process-text-for-display (string)
1104   "Perform any desired processing of STRING prior to display as text.
1105 Currently includes buttonifying URLs and processing ANSI escape codes."
1106   (elpher-buttonify-urls (if elpher-filter-ansi-from-text
1107                              (elpher-color-filter-apply string)
1108                            (elpher-color-apply string))))
1109
1110 (defun elpher-render-text (data &optional _mime-type-string)
1111   "Render DATA as text.  MIME-TYPE-STRING is unused."
1112   (elpher-with-clean-buffer
1113    (if (not data)
1114        t
1115      (insert (elpher-process-text-for-display (elpher-preprocess-text-response data)))
1116      (elpher-cache-content
1117       (elpher-page-address elpher-current-page)
1118       (buffer-string)))))
1119
1120 ;; Image retrieval
1121
1122 (defun elpher-render-image (data &optional _mime-type-string)
1123   "Display DATA as image.  MIME-TYPE-STRING is unused."
1124   (if (not data)
1125       nil
1126     (if (display-images-p)
1127         (progn
1128           (let ((image (create-image
1129                         data
1130                         nil t)))
1131             (elpher-with-clean-buffer
1132              (insert-image image)
1133              (elpher-restore-pos))))
1134       (elpher-render-download data))))
1135
1136 ;; Search retrieval and rendering
1137
1138 (defun elpher-get-gopher-query-page (renderer)
1139   "Getter for gopher addresses requiring input.
1140 The response is rendered using the rendering function RENDERER."
1141   (let* ((address (elpher-page-address elpher-current-page))
1142          (content (elpher-get-cached-content address))
1143          (aborted t))
1144     (if (and content (funcall renderer nil))
1145         (elpher-with-clean-buffer
1146          (insert content)
1147          (elpher-restore-pos)
1148          (message "Displaying cached search results.  Reload to perform a new search."))
1149       (unwind-protect
1150           (let* ((query-string (read-string "Query: "))
1151                  (query-selector (concat (elpher-gopher-address-selector address) "\t" query-string))
1152                  (search-address (elpher-make-gopher-address ?1
1153                                                              query-selector
1154                                                              (elpher-address-host address)
1155                                                              (elpher-address-port address)
1156                                                              (equal (elpher-address-type address) "gophers"))))
1157             (setq aborted nil)
1158
1159             (elpher-with-clean-buffer
1160              (insert "LOADING RESULTS... (use 'u' to cancel)"))
1161             (elpher-get-gopher-response search-address renderer))
1162         (if aborted
1163             (elpher-visit-previous-page))))))
1164
1165 ;; Raw server response rendering
1166
1167 (defun elpher-render-raw (data &optional mime-type-string)
1168   "Display raw DATA in buffer.  MIME-TYPE-STRING is also displayed if provided."
1169   (if (not data)
1170       nil
1171     (elpher-with-clean-buffer
1172      (when mime-type-string
1173        (insert "MIME type specified by server: '" mime-type-string "'\n"))
1174      (insert data)
1175      (goto-char (point-min)))
1176     (message "Displaying raw server response.  Reload or redraw to return to standard view.")))
1177
1178 ;; File save "rendering"
1179
1180 (defun elpher-render-download (data &optional _mime-type-string)
1181   "Save DATA to file.  MIME-TYPE-STRING is unused."
1182   (if (not data)
1183       nil
1184     (let* ((address (elpher-page-address elpher-current-page))
1185            (selector (if (elpher-address-gopher-p address)
1186                          (elpher-gopher-address-selector address)
1187                        (elpher-address-filename address))))
1188       (elpher-visit-previous-page) ; Do first in case of non-local exits.
1189       (let* ((filename-proposal (file-name-nondirectory selector))
1190              (filename (read-file-name "Download complete. Save file as: "
1191                                        nil nil nil
1192                                        (if (> (length filename-proposal) 0)
1193                                            filename-proposal
1194                                          "download.file"))))
1195         (let ((coding-system-for-write 'binary))
1196           (with-temp-file filename
1197             (insert data)))
1198         (message (format "Saved to file %s." filename))))))
1199
1200 ;; HTML rendering
1201
1202 (defun elpher-render-html (data &optional _mime-type-string)
1203   "Render DATA as HTML using shr.  MIME-TYPE-STRING is unused."
1204   (elpher-with-clean-buffer
1205    (if (not data)
1206        t
1207      (let ((dom (with-temp-buffer
1208                   (insert data)
1209                   (libxml-parse-html-region (point-min) (point-max)))))
1210        (shr-insert-document dom)))))
1211
1212 ;; Gemini page retrieval
1213
1214 (defvar elpher-gemini-redirect-chain)
1215
1216 (defun elpher-get-gemini-response (address renderer)
1217   "Get response string from gemini server at ADDRESS and render using RENDERER."
1218   (elpher-get-host-response address 1965
1219                             (concat (elpher-address-to-url address) "\r\n")
1220                             (lambda (response-string)
1221                               (elpher-process-gemini-response response-string renderer))
1222                             'gemini))
1223
1224 (defun elpher-parse-gemini-response (response)
1225   "Parse the RESPONSE string and return a list of components.
1226 The list is of the form (code meta body).  A response of nil implies
1227 that the response was malformed."
1228   (let ((header-end-idx (string-match "\r\n" response)))
1229     (if header-end-idx
1230         (let ((header (string-trim (substring response 0 header-end-idx)))
1231               (body (substring response (+ header-end-idx 2))))
1232           (if (>= (length header) 2)
1233               (let ((code (substring header 0 2))
1234                     (meta (string-trim (substring header 2))))
1235                 (list code meta body))
1236             (error "Malformed response: No response status found in header %s" header)))
1237       (error "Malformed response: No CRLF-delimited header found in response %s" response))))
1238
1239 (defun elpher-process-gemini-response (response-string renderer)
1240   "Process the gemini response RESPONSE-STRING and pass the result to RENDERER."
1241   (let ((response-components (elpher-parse-gemini-response response-string)))
1242     (let ((response-code (elt response-components 0))
1243           (response-meta (elt response-components 1))
1244           (response-body (elt response-components 2)))
1245       (pcase (elt response-code 0)
1246         (?1 ; Input required
1247          (elpher-with-clean-buffer
1248           (insert "Gemini server is requesting input."))
1249          (let* ((query-string
1250                  (if (eq (elt response-code 1) ?1)
1251                      (read-passwd (concat response-meta ": "))
1252                    (read-string (concat response-meta ": "))))
1253                 (query-address (seq-copy (elpher-page-address elpher-current-page)))
1254                 (old-fname (url-filename query-address)))
1255            (setf (url-filename query-address)
1256                  (concat old-fname "?" (url-build-query-string `((,query-string)))))
1257            (elpher-get-gemini-response query-address renderer)))
1258         (?2 ; Normal response
1259          (funcall renderer response-body response-meta))
1260         (?3 ; Redirect
1261          (message "Following redirect to %s" response-meta)
1262          (if (>= (length elpher-gemini-redirect-chain) 5)
1263              (error "More than 5 consecutive redirects followed"))
1264          (let ((redirect-address (elpher-address-from-gemini-url response-meta)))
1265            (if (member redirect-address elpher-gemini-redirect-chain)
1266                (error "Redirect loop detected"))
1267            (if (not (string= (elpher-address-protocol redirect-address)
1268                              "gemini"))
1269                (error "Server tried to automatically redirect to non-gemini URL: %s"
1270                       response-meta))
1271            (elpher-page-set-address elpher-current-page redirect-address)
1272            (add-to-list 'elpher-gemini-redirect-chain redirect-address)
1273            (elpher-get-gemini-response redirect-address renderer)))
1274         (?4 ; Temporary failure
1275          (error "Gemini server reports TEMPORARY FAILURE for this request: %s %s"
1276                 response-code response-meta))
1277         (?5 ; Permanent failure
1278          (error "Gemini server reports PERMANENT FAILURE for this request: %s %s"
1279                 response-code response-meta))
1280         (?6 ; Client certificate required
1281          (elpher-with-clean-buffer
1282           (if elpher-client-certificate
1283               (insert "Gemini server does not recognise the provided TLS certificate:\n\n")
1284             (insert "Gemini server is requesting a valid TLS certificate:\n\n"))
1285           (auto-fill-mode 1)
1286           (elpher-gemini-insert-text response-meta))
1287          (let ((chosen-certificate (elpher-choose-client-certificate)))
1288            (unless chosen-certificate
1289              (error "Gemini server requires a client certificate and none was provided"))
1290            (setq elpher-client-certificate chosen-certificate))
1291          (elpher-with-clean-buffer)
1292          (elpher-get-gemini-response (elpher-page-address elpher-current-page) renderer))
1293         (_other
1294          (error "Gemini server response unknown: %s %s"
1295                 response-code response-meta))))))
1296
1297 (defun elpher--read-answer-polyfill (question answers)
1298   "Polyfill for `read-answer' in Emacs 26.1.
1299 QUESTION is a string containing a question, and ANSWERS
1300 is a list of possible answers."
1301     (completing-read question (mapcar 'identity answers)))
1302
1303 (if (fboundp 'read-answer)
1304     (defalias 'elpher-read-answer 'read-answer)
1305   (defalias 'elpher-read-answer 'elpher--read-answer-polyfill))
1306
1307 (defun elpher-choose-client-certificate ()
1308   "Prompt for a client certificate to use to establish a TLS connection."
1309   (let* ((read-answer-short t))
1310     (pcase (read-answer "What do you want to do? "
1311                         '(("throwaway" ?t
1312                            "generate and use throw-away certificate")
1313                           ("persistent" ?p
1314                            "generate new or use existing persistent certificate")
1315                           ("abort" ?a
1316                            "stop immediately")))
1317       ("throwaway"
1318        (setq elpher-client-certificate (elpher-generate-throwaway-certificate)))
1319       ("persistent"
1320        (let* ((existing-certificates (elpher-list-existing-certificates))
1321               (file-base (completing-read
1322                           "Nickname for new or existing certificate (autocompletes, empty response aborts): "
1323                           existing-certificates)))
1324          (if (string-empty-p (string-trim file-base))
1325              nil
1326            (if (member file-base existing-certificates)
1327                (setq elpher-client-certificate
1328                      (elpher-get-existing-certificate file-base))
1329              (pcase (read-answer "Generate new certificate or install externally-generated one? "
1330                                  '(("new" ?n
1331                                     "generate new certificate")
1332                                    ("install" ?i
1333                                     "install existing certificate")
1334                                    ("abort" ?a
1335                                     "stop immediately")))
1336                ("new"
1337                 (let ((common-name (read-string "Common Name field for new certificate: "
1338                                                 file-base)))
1339                   (message "New key and self-signed certificate written to %s"
1340                            elpher-certificate-directory)
1341                   (elpher-generate-persistent-certificate file-base common-name)))
1342                ("install"
1343                 (let* ((cert-file (read-file-name "Certificate file: " nil nil t))
1344                        (key-file (read-file-name "Key file: " nil nil t)))
1345                   (message "Key and certificate installed in %s for future use"
1346                            elpher-certificate-directory)
1347                   (elpher-install-and-use-existing-certificate key-file
1348                                                                cert-file
1349                                                                file-base)))
1350                ("abort" nil))))))
1351       ("abort" nil))))
1352
1353 (defun elpher-get-gemini-page (renderer)
1354   "Getter which retrieves and renders a Gemini page and renders it using RENDERER."
1355   (let* ((address (elpher-page-address elpher-current-page))
1356          (content (elpher-get-cached-content address)))
1357     (condition-case the-error
1358         (if (and content (funcall renderer nil))
1359             (elpher-with-clean-buffer
1360              (insert content)
1361              (elpher-restore-pos))
1362           (elpher-with-clean-buffer
1363            (insert "LOADING GEMINI... (use 'u' to cancel)\n"))
1364           (setq elpher-gemini-redirect-chain nil)
1365           (elpher-get-gemini-response address renderer))
1366       (error
1367        (elpher-network-error address the-error)))))
1368
1369 (defun elpher-render-gemini (body &optional mime-type-string)
1370   "Render gemini response BODY with rendering MIME-TYPE-STRING."
1371   (if (not body)
1372       t
1373     (let* ((mime-type-string* (if (or (not mime-type-string)
1374                                       (string-empty-p mime-type-string))
1375                                   "text/gemini; charset=utf-8"
1376                                 mime-type-string))
1377            (mime-type-split (split-string mime-type-string* ";" t))
1378            (mime-type (string-trim (car mime-type-split)))
1379            (parameters (mapcar (lambda (s)
1380                                  (let ((key-val (split-string s "=")))
1381                                    (list (downcase (string-trim (car key-val)))
1382                                          (downcase (string-trim (cadr key-val))))))
1383                                (cdr mime-type-split))))
1384       (when (string-prefix-p "text/" mime-type)
1385         (setq body (decode-coding-string
1386                     body
1387                     (if (assoc "charset" parameters)
1388                         (intern (cadr (assoc "charset" parameters)))
1389                       'utf-8)))
1390         (setq body (replace-regexp-in-string "\r" "" body)))
1391       (pcase mime-type
1392         ((or "text/gemini" "")
1393          (elpher-render-gemini-map body parameters))
1394         ("text/html"
1395          (elpher-render-html body))
1396         ((pred (string-prefix-p "text/"))
1397          (elpher-render-gemini-plain-text body parameters))
1398         ((pred (string-prefix-p "image/"))
1399          (elpher-render-image body))
1400         (_other
1401          (elpher-render-download body))))))
1402
1403 (defun elpher-gemini-get-link-url (link-line)
1404   "Extract the url portion of LINK-LINE, a gemini map file link line.
1405 Returns nil in the event that the contents of the line following the
1406 => prefix are empty."
1407   (let ((l (split-string (substring link-line 2))))
1408     (if l
1409         (string-trim (elt l 0))
1410       nil)))
1411
1412 (defun elpher-gemini-get-link-display-string (link-line)
1413   "Extract the display string portion of LINK-LINE, a gemini map file link line.
1414 Returns the url portion in the event that the display-string portion is empty."
1415   (let* ((rest (string-trim (elt (split-string link-line "=>") 1)))
1416          (idx (string-match "[ \t]" rest)))
1417     (string-trim (if idx
1418                      (substring rest (+ idx 1))
1419                    rest))))
1420
1421 (defun elpher-collapse-dot-sequences (filename)
1422   "Collapse dot sequences in FILENAME.
1423 For instance, the filename /a/b/../c/./d will reduce to /a/c/d"
1424   (let* ((path (split-string filename "/"))
1425          (path-reversed-normalized
1426           (seq-reduce (lambda (a b)
1427                         (cond ((and a (equal b "..") (cdr a)))
1428                               ((and (not a) (equal b "..")) a) ;leading .. are dropped
1429                               ((equal b ".") a)
1430                               (t (cons b a))))
1431                       path nil)))
1432     (string-join (reverse path-reversed-normalized) "/")))
1433
1434 (defun elpher-address-from-gemini-url (url)
1435   "Extract address from URL with defaults as per gemini map files.
1436 While there's obviously some redundancy here between this function and
1437 `elpher-address-from-url', gemini map file URLs require enough special
1438 treatment that a separate function is warranted."
1439   (let ((address (url-generic-parse-url url))
1440         (current-address (elpher-page-address elpher-current-page)))
1441     (unless (and (url-type address) (not (url-fullness address))) ;avoid mangling mailto: urls
1442       (setf (url-fullness address) t)
1443       (if (url-host address) ;if there is an explicit host, filenames are absolute
1444           (if (string-empty-p (url-filename address))
1445               (setf (url-filename address) "/")) ;ensure empty filename is marked as absolute
1446         (setf (url-host address) (url-host current-address))
1447         (setf (url-port address) (url-port current-address))
1448         (unless (string-prefix-p "/" (url-filename address)) ;deal with relative links
1449           (setf (url-filename address)
1450                 (concat (file-name-directory (url-filename current-address))
1451                         (url-filename address)))))
1452       (unless (url-type address)
1453         (setf (url-type address) "gemini"))
1454       (when (equal (url-type address) "gemini")
1455         (setf (url-filename address)
1456               (elpher-collapse-dot-sequences (url-filename address)))))
1457     (elpher-remove-redundant-ports address)))
1458
1459 (defun elpher-gemini-insert-link (link-line)
1460   "Insert link described by LINK-LINE into a text/gemini document."
1461   (let* ((url (elpher-gemini-get-link-url link-line))
1462          (display-string (elpher-gemini-get-link-display-string link-line))
1463          (address (elpher-address-from-gemini-url url))
1464          (type (if address (elpher-address-type address) nil))
1465          (type-map-entry (cdr (assoc type elpher-type-map))))
1466     (when display-string
1467       (insert elpher-gemini-link-string)
1468       (if type-map-entry
1469           (let* ((face (elt type-map-entry 3))
1470                  (filtered-display-string (elpher-color-filter-apply display-string))
1471                  (page (elpher-make-page filtered-display-string address)))
1472             (insert-text-button filtered-display-string
1473                                 'face face
1474                                 'elpher-page page
1475                                 'action #'elpher-click-link
1476                                 'follow-link t
1477                                 'help-echo #'elpher--page-button-help))
1478         (insert (propertize display-string 'face 'elpher-unknown)))
1479       (insert "\n"))))
1480
1481 (defvar elpher--gemini-page-headings nil
1482   "List of headings on the page.")
1483
1484 (defun elpher-gemini-insert-header (header-line)
1485   "Insert header described by HEADER-LINE into a text/gemini document.
1486 The gemini map file line describing the header is given
1487 by HEADER-LINE."
1488   (when (string-match "^\\(#+\\)[ \t]*" header-line)
1489     (let* ((level (length (match-string 1 header-line)))
1490            (header (substring header-line (match-end 0)))
1491            (face (pcase level
1492                    (1 'elpher-gemini-heading1)
1493                    (2 'elpher-gemini-heading2)
1494                    (3 'elpher-gemini-heading3)
1495                    (_ 'default)))
1496            (fill-column (if (display-graphic-p)
1497                             (/ (* fill-column
1498                                   (font-get (font-spec :name (face-font 'default)) :size))
1499                                (font-get (font-spec :name (face-font face)) :size)) fill-column)))
1500       (setq elpher--gemini-page-headings (cons (cons header (point))
1501                                                elpher--gemini-page-headings))
1502       (unless (display-graphic-p)
1503         (insert (make-string level ?#) " "))
1504       (insert (propertize header 'face face))
1505       (newline))))
1506
1507 (defun elpher-gemini-insert-text (text-line)
1508   "Insert a plain non-preformatted TEXT-LINE into a text/gemini document.
1509 This function uses Emacs' auto-fill to wrap text sensibly to a maximum
1510 width defined by `elpher-gemini-max-fill-width'."
1511   (string-match "\\(^[ \t]*\\)\\(\\*[ \t]+\\|>[ \t]*\\)?" text-line)
1512   (let* ((line-prefix (match-string 2 text-line))
1513          (processed-text-line
1514           (if line-prefix
1515               (cond ((string-prefix-p "*" line-prefix)
1516                      (concat
1517                       (replace-regexp-in-string "\\*"
1518                                                 elpher-gemini-bullet-string
1519                                                 (match-string 0 text-line))
1520                       (substring text-line (match-end 0))))
1521                     ((string-prefix-p ">" line-prefix)
1522                      (propertize text-line 'face 'elpher-gemini-quoted))
1523                     (t text-line))
1524             text-line))
1525          (adaptive-fill-mode t)
1526          ;; fill-prefix is important for adaptive-fill-mode: without
1527          ;; it, multi-line list items are not indented correct
1528          (fill-prefix (if (match-string 2 text-line)
1529                           (replace-regexp-in-string "[>\*]" " " (match-string 0 text-line))
1530                         nil)))
1531     (insert (elpher-process-text-for-display processed-text-line))
1532     (newline)))
1533
1534 (defun elpher-render-gemini-map (data _parameters)
1535   "Render DATA as a gemini map file, PARAMETERS is currently unused."
1536   (elpher-with-clean-buffer
1537    (setq elpher--gemini-page-headings nil)
1538    (let ((preformatted nil))
1539      (auto-fill-mode 1)
1540      (setq-local fill-column (min (window-width) elpher-gemini-max-fill-width))
1541      (dolist (line (split-string data "\n"))
1542        (cond
1543         ((string-prefix-p "```" line) (setq preformatted (not preformatted)))
1544         (preformatted (insert (elpher-process-text-for-display
1545                                (propertize line 'face 'elpher-gemini-preformatted))
1546                               "\n"))
1547         ((string-prefix-p "=>" line)
1548          (elpher-gemini-insert-link line))
1549         ((string-prefix-p "#" line) (elpher-gemini-insert-header line))
1550         (t (elpher-gemini-insert-text line)))))
1551    (setq elpher--gemini-page-headings (nreverse elpher--gemini-page-headings))
1552    (elpher-cache-content
1553     (elpher-page-address elpher-current-page)
1554     (buffer-string))))
1555
1556 (defun elpher-render-gemini-plain-text (data _parameters)
1557   "Render DATA as plain text file.  PARAMETERS is currently unused."
1558   (elpher-with-clean-buffer
1559    (insert (elpher-process-text-for-display data))
1560    (elpher-cache-content
1561     (elpher-page-address elpher-current-page)
1562     (buffer-string))))
1563
1564
1565 ;; Finger page connection
1566
1567 (defun elpher-get-finger-page (renderer)
1568   "Opens a finger connection to the current page address.
1569 The result is rendered using RENDERER."
1570   (let* ((address (elpher-page-address elpher-current-page))
1571          (content (elpher-get-cached-content address)))
1572     (if (and content (funcall renderer nil))
1573         (elpher-with-clean-buffer
1574          (insert content)
1575          (elpher-restore-pos))
1576       (elpher-with-clean-buffer
1577        (insert "LOADING... (use 'u' to cancel)\n"))
1578       (condition-case the-error
1579           (let* ((kill-buffer-query-functions nil)
1580                  (user (let ((filename (elpher-address-filename address)))
1581                          (if (> (length filename) 1)
1582                              (substring filename 1)
1583                            (elpher-address-user address)))))
1584             (elpher-get-host-response address 79
1585                                       (concat user "\r\n")
1586                                       renderer))
1587         (error
1588          (elpher-network-error address the-error))))))
1589
1590
1591 ;; Telnet page connection
1592
1593 (defun elpher-get-telnet-page (renderer)
1594   "Opens a telnet connection to the current page address (RENDERER must be nil)."
1595   (when renderer
1596     (elpher-visit-previous-page)
1597     (error "Command not supported for telnet URLs"))
1598   (let* ((address (elpher-page-address elpher-current-page))
1599          (host (elpher-address-host address))
1600          (port (elpher-address-port address)))
1601     (elpher-visit-previous-page)
1602     (if (> port 0)
1603         (telnet host port)
1604       (telnet host))))
1605
1606
1607 ;; Other URL page opening
1608
1609 (defun elpher-get-other-url-page (renderer)
1610   "Getter which attempts to open the URL specified by the current page (RENDERER must be nil)."
1611   (when renderer
1612     (elpher-visit-previous-page)
1613     (error "Command not supported for general URLs"))
1614   (let* ((address (elpher-page-address elpher-current-page))
1615          (url (elpher-address-to-url address)))
1616     (progn
1617       (elpher-visit-previous-page) ; Do first in case of non-local exits.
1618       (message "Opening URL...")
1619       (if elpher-open-urls-with-eww
1620           (browse-web url)
1621         (browse-url url)))))
1622
1623
1624 ;; Start page retrieval
1625
1626 (defun elpher-get-start-page (renderer)
1627   "Getter which displays the start page (RENDERER must be nil)."
1628   (when renderer
1629     (elpher-visit-previous-page)
1630     (error "Command not supported for start page"))
1631   (elpher-with-clean-buffer
1632    (insert "     --------------------------------------------\n"
1633            "           Elpher Gopher and Gemini Client       \n"
1634            "                   version " elpher-version "\n"
1635            "     --------------------------------------------\n"
1636            "\n"
1637            "Default bindings:\n"
1638            "\n"
1639            " - TAB/Shift-TAB: next/prev item on current page\n"
1640            " - RET/mouse-1: open item under cursor\n"
1641            " - m: select an item on current page by name (autocompletes)\n"
1642            " - u/mouse-3/U: return to previous page or to the start page\n"
1643            " - g: go to a particular address (gopher, gemini, finger)\n"
1644            " - o/O: open a different address selector or the root menu of the current server\n"
1645            " - d/D: download item under cursor or current page\n"
1646            " - i/I: info on item under cursor or current page\n"
1647            " - c/C: copy URL representation of item under cursor or current page\n"
1648            " - a/A: bookmark the item under cursor or current page\n"
1649            " - B: list all bookmarks\n"
1650            " - s/S: show current history stack or all previously visted pages\n"
1651            " - r: redraw current page (using cached contents if available)\n"
1652            " - R: reload current page (regenerates cache)\n"
1653            " - !: set character coding system for gopher (default is to autodetect)\n"
1654            " - T: toggle TLS gopher mode\n"
1655            " - F: forget/discard current TLS client certificate\n"
1656            " - .: display the raw server response for the current page\n"
1657            "\n"
1658            "Start your exploration of gopher space and gemini:\n")
1659    (elpher-insert-index-record "Floodgap Systems Gopher Server"
1660                                (elpher-make-gopher-address ?1 "" "gopher.floodgap.com" 70))
1661    (elpher-insert-index-record "Project Gemini home page"
1662                                (elpher-address-from-url "gemini://gemini.circumlunar.space/"))
1663    (insert "\n"
1664            "Alternatively, select a search engine and enter some search terms:\n")
1665    (elpher-insert-index-record "Gopher Search Engine (Veronica-2)"
1666                                (elpher-make-gopher-address ?7 "/v2/vs" "gopher.floodgap.com" 70))
1667    (elpher-insert-index-record "Gemini Search Engine (geminispace.info)"
1668                                (elpher-address-from-url "gemini://geminispace.info/search"))
1669    (insert "\n"
1670            "Your bookmarks are stored in your ")
1671    (let ((help-string "RET,mouse-1: Open bookmark list"))
1672      (insert-text-button "Emacs bookmark list"
1673                          'face 'link
1674                          'action (lambda (_)
1675                                    (interactive)
1676                                    (call-interactively #'elpher-show-bookmarks))
1677                          'follow-link t
1678                          'help-echo help-string))
1679    (insert ".\n")
1680    (insert (propertize
1681             "(Bookmarks from legacy elpher-bookmarks files will be automatically imported.)\n"
1682             'face 'shadow))
1683    (insert "\n"
1684            "The gopher home of the Elpher project is here:\n")
1685    (elpher-insert-index-record "The Elpher Project Page"
1686                                (elpher-make-gopher-address ?1
1687                                                            "/projects/elpher/"
1688                                                            "thelambdalab.xyz"
1689                                                            70))
1690    (let ((help-string "RET,mouse-1: Open Elpher info manual (if available)"))
1691      (insert "\n"
1692              "The following info documentation is available:\n"
1693              "   - ")
1694      (insert-text-button "Elpher Manual"
1695                          'face 'link
1696                          'action (lambda (_)
1697                                    (interactive)
1698                                    (info "(elpher)"))
1699                          'follow-link t
1700                          'help-echo help-string)
1701      (insert "\n   - ")
1702      (insert-text-button "Changes introduced by the latest release"
1703                        'face 'link
1704                        'action (lambda (_)
1705                                  (interactive)
1706                                  (info "(elpher)News"))
1707                        'follow-link t
1708                        'help-echo help-string))
1709    (insert "\n")
1710    (insert (propertize
1711             (concat "  (These documents should be available if you have installed Elpher \n"
1712                     "   using MELPA. Otherwise you may have to install the manual yourself.)\n")
1713             'face 'shadow))
1714    (elpher-restore-pos)))
1715
1716 ;; History page retrieval
1717
1718 (defun elpher-show-history ()
1719   "Show the current contents of elpher's history stack.
1720 Use \\[elpher-show-visited-pages] to see the entire history.
1721 This is rendered using `elpher-get-history-page' via `elpher-type-map'."
1722   (interactive)
1723   (elpher-visit-page
1724    (elpher-make-page "Current History Stack"
1725                      (elpher-make-special-address 'history))))
1726
1727 (defun elpher-show-visited-pages ()
1728   "Show the all the pages you've visited using Elpher.
1729 Use \\[elpher-show-history] to see just the current history stack.
1730 This is rendered using `elpher-get-visited-pages-page' via `elpher-type-map'."
1731   (interactive)
1732   (elpher-visit-page
1733    (elpher-make-page "Elpher Visted Pages"
1734                      (elpher-make-special-address 'visited-pages))))
1735
1736 (defun elpher-get-history-page (renderer)
1737   "Getter which displays the history page (RENDERER must be nil)."
1738   (when renderer
1739     (elpher-visit-previous-page)
1740     (error "Command not supported for history page"))
1741   (elpher-display-history-links elpher-history "Current history stack"))
1742
1743 (defun elpher-get-visited-pages-page (renderer)
1744   "Getter which displays the list of visited pages (RENDERER must be nil)."
1745   (when renderer
1746     (elpher-visit-previous-page)
1747     (error "Command not supported for history page"))
1748   (elpher-display-history-links
1749    (seq-filter (lambda (page)
1750                  (not (elpher-address-special-p (elpher-page-address page))))
1751                elpher-visited-pages)
1752    "All visited pages"))
1753
1754 (defun elpher-display-history-links (pages title)
1755   "Show all PAGES in an Elpher buffer with a given TITLE."
1756   (let* ((title-line (concat "---- " title " ----"))
1757          (footer-line (make-string (length title-line) ?-)))
1758     (elpher-with-clean-buffer
1759      (insert title-line "\n\n")
1760      (if pages
1761          (dolist (page pages)
1762            (when page
1763              (let ((display-string (elpher-page-display-string page))
1764                    (address (elpher-page-address page)))
1765                (elpher-insert-index-record display-string address))))
1766        (insert "No history items found.\n"))
1767      (insert "\n" footer-line "\n"
1768              "Select an entry or press 'u' to return to the previous page.")
1769      (elpher-restore-pos))))
1770
1771
1772 ;;; Bookmarks
1773
1774 ;; This code allows Elpher to use the standard Emacs bookmarks: `C-x r
1775 ;; m' to add a bookmark, `C-x r l' to list bookmarks (which is where
1776 ;; you can anotate bookmarks!), `C-x r b' to jump to a bookmark, and
1777 ;; so on. See the Bookmarks section in the Emacs info manual for more.
1778
1779 (defvar elpher-bookmark-link nil
1780   "Prefer bookmarking a link or the current page.
1781 Bind this variable dynamically, or set it to t.
1782 If you set it to t, the commands \\[bookmark-set-no-overwrite]
1783 and \\[elpher-set-bookmark-no-overwrite] do the same thing.")
1784
1785 (defun elpher-bookmark-make-record ()
1786   "Return a bookmark record.
1787 If `elpher-bookmark-link' is non-nil and point is on a link button,
1788 return a bookmark record for that link.  Otherwise, return a bookmark
1789 record for the current elpher page."
1790   (let* ((button (and elpher-bookmark-link (button-at (point))))
1791          (page (if button
1792                    (button-get button 'elpher-page)
1793                  elpher-current-page))
1794          (address (elpher-page-address page))
1795          (url (elpher-address-to-url address))
1796          (display-string (elpher-page-display-string page))
1797          (pos (if button nil (point))))
1798     (if (elpher-address-special-p address)
1799         (error "Cannot bookmark %s" display-string)
1800       `(,display-string
1801         (defaults . (,display-string))
1802         (position . ,pos)
1803         (location . ,url)
1804         (handler . elpher-bookmark-jump)))))
1805
1806 ;;;###autoload
1807 (defun elpher-bookmark-jump (bookmark)
1808   "Handler used to open a bookmark using elpher.
1809 The argument BOOKMARK is a bookmark record passed to the function.
1810 This handler is responsible for loading the bookmark in some buffer,
1811 then making that buffer the current buffer.  It should not switch
1812 to the buffer."
1813   (let* ((url (cdr (assq 'location bookmark)))
1814          (cleaned-url (string-trim url))
1815          (address (elpher-address-from-url cleaned-url))
1816          (page (elpher-make-page cleaned-url address)))
1817     (elpher-with-clean-buffer
1818      (elpher-visit-page page))
1819     (set-buffer (get-buffer elpher-buffer-name))
1820     nil))
1821
1822 (defun elpher-bookmark-link ()
1823   "Bookmark the link at point.
1824 To bookmark the current page, use \\[elpher-bookmark-current]."
1825   (interactive)
1826   (let ((elpher-bookmark-link t))
1827     (bookmark-set-no-overwrite)))
1828
1829 (defun elpher-bookmark-current ()
1830   "Bookmark the current page.
1831 To bookmark the link at point use \\[elpher-bookmark-link]."
1832   (interactive)
1833   (call-interactively #'bookmark-set-no-overwrite))
1834
1835 (defun elpher-bookmark-import (file)
1836   "Import legacy Elpher bookmarks file FILE into Emacs bookmarks."
1837   (interactive (list (if (and (boundp 'elpher-bookmarks-file)
1838                               (file-readable-p elpher-bookmarks-file))
1839                          elpher-bookmarks-file
1840                        (read-file-name "Old Elpher bookmarks: "
1841                                        user-emacs-directory nil t
1842                                        "elpher-bookmarks"))))
1843   (require 'bookmark)
1844   (dolist (bookmark (with-temp-buffer
1845                       (insert-file-contents file)
1846                       (read (current-buffer))))
1847     (let* ((display-string (car bookmark))
1848            (url (cadr bookmark))
1849            (record `(,display-string
1850                      (location . ,url)
1851                      (handler . elpher-bookmark-jump))))
1852       (bookmark-store display-string (cdr record) t)))
1853   (bookmark-save))
1854
1855 (defun elpher-get-bookmarks-page (renderer)
1856   "Getter which displays the history page (RENDERER must be nil)."
1857   (when renderer
1858     (elpher-visit-previous-page)
1859     (error "Command not supported for bookmarks page"))
1860   (let* ((names (seq-filter (lambda (name)
1861                               (let ((record (bookmark-get-bookmark-record name)))
1862                                 (eq (alist-get 'handler record) 'elpher-bookmark-jump)))
1863                             (bookmark-all-names))))
1864     (elpher-with-clean-buffer
1865      (insert " ---- Elpher Bookmarks ---- \n\n")
1866      (if names
1867          (dolist (name (sort names #'string<))
1868            (when names
1869              (let* ((url (alist-get 'location (bookmark-get-bookmark-record name)))
1870                     (address (elpher-address-from-url url)))
1871                (elpher-insert-index-record name address))))
1872        (insert "No bookmarked pages found.\n"))
1873      (insert "\n --------------------------\n\n"
1874              "Select an entry or press 'u' to return to the previous page.\n\n")
1875      (insert "To rename or delete bookmark entries, open your bookmark list\n"
1876              "using the ")
1877      (insert-text-button "Emacs bookmark menu"
1878                          'action (lambda (_)
1879                                    (interactive)
1880                                    (call-interactively #'bookmark-bmenu-list))
1881                          'follow-link t
1882                          'help-echo "RET,mouse-1: open Emacs bookmark menu")
1883      (insert (substitute-command-keys " via '\\[bookmark-bmenu-list]'."))
1884      (elpher-restore-pos))))
1885
1886 (defun elpher-show-bookmarks ()
1887   "Display the current list of elpher bookmarks.
1888 This will also check for a legacy bookmark file and offer to import it."
1889   (interactive)
1890   (let ((old-bookmarks-file (or (and (boundp 'elpher-bookmarks-file)
1891                                      elpher-bookmarks-file)
1892                                 (locate-user-emacs-file "elpher-bookmarks"))))
1893     (when (and (file-readable-p old-bookmarks-file)
1894                (y-or-n-p (concat "Legacy elpher-bookmarks file \""
1895                                  old-bookmarks-file
1896                                  "\" found. Import now?")))
1897       (elpher-bookmark-import old-bookmarks-file)
1898       (rename-file old-bookmarks-file (concat old-bookmarks-file "-legacy"))))
1899   (if elpher-use-emacs-bookmark-menu
1900       (call-interactively #'bookmark-bmenu-list)
1901     (elpher-visit-page
1902      (elpher-make-page "Elpher Bookmarks"
1903                        (elpher-make-special-address 'bookmarks)))))
1904
1905
1906 ;;; Integrations
1907 ;;
1908
1909 ;;; Org
1910
1911 (defun elpher-org-export-link (link description format protocol)
1912   "Export a LINK with DESCRIPTION for the given PROTOCOL and FORMAT.
1913
1914 FORMAT is an Org export backend.  DESCRIPTION may be nil.  PROTOCOL may be one
1915 of gemini, gopher or finger."
1916   (let* ((url (if (equal protocol "elpher")
1917                   (string-remove-prefix "elpher:" link)
1918                 (format "%s:%s" protocol link)))
1919          (desc (or description url)))
1920     (pcase format
1921       (`gemini (format "=> %s %s" url desc))
1922       (`html (format "<a href=\"%s\">%s</a>" url desc))
1923       (`latex (format "\\href{%s}{%s}" url desc))
1924       (_ (if (not description)
1925              url
1926            (format "%s (%s)" desc url))))))
1927
1928 (defun elpher-org-store-link ()
1929   "Store link to an `elpher' page in Org."
1930   (when (eq major-mode 'elpher-mode)
1931     (let* ((url (elpher-info-current))
1932            (desc (car elpher-current-page))
1933            (protocol (cond
1934                       ((string-prefix-p "gemini:" url) "gemini")
1935                       ((string-prefix-p "gopher:" url) "gopher")
1936                       ((string-prefix-p "finger:" url) "finger")
1937                       (t "elpher"))))
1938       (when (equal "elpher" protocol)
1939         ;; Weird link. Or special inner link?
1940         (setq url (concat "elpher:" url)))
1941       (org-link-store-props :type protocol :link url :description desc)
1942       t)))
1943
1944 (defun elpher-org-follow-link (link protocol)
1945   "Visit a LINK for the given PROTOCOL.
1946
1947 PROTOCOL may be one of gemini, gopher or finger.  This method also
1948 supports the old protocol elpher, where the link is self-contained."
1949   (let ((url (if (equal protocol "elpher")
1950                  (string-remove-prefix "elpher:" link)
1951                (format "%s:%s" protocol link))))
1952     (elpher-go url)))
1953
1954 (defun elpher-org-mode-integration ()
1955   "Set up `elpher' integration for `org-mode'."
1956   (org-link-set-parameters
1957    "elpher"
1958    :store #'elpher-org-store-link
1959    :export (lambda (link description format _plist)
1960              (elpher-org-export-link link description format "elpher"))
1961    :follow (lambda (link _arg) (elpher-org-follow-link link "elpher")))
1962   (org-link-set-parameters
1963    "gemini"
1964    :export (lambda (link description format _plist)
1965              (elpher-org-export-link link description format "gemini"))
1966    :follow (lambda (link _arg) (elpher-org-follow-link link "gemini")))
1967   (org-link-set-parameters
1968    "gopher"
1969    :export (lambda (link description format _plist)
1970              (elpher-org-export-link link description format "gopher"))
1971    :follow (lambda (link _arg) (elpher-org-follow-link link "gopher")))
1972   (org-link-set-parameters
1973    "finger"
1974    :export (lambda (link description format _plist)
1975              (elpher-org-export-link link description format "finger"))
1976    :follow (lambda (link _arg) (elpher-org-follow-link link "finger"))))
1977
1978 (add-hook 'org-mode-hook #'elpher-org-mode-integration)
1979
1980 ;;; Browse URL
1981
1982 ;;;###autoload
1983 (defun elpher-browse-url-elpher (url &rest _args)
1984   "Browse URL using Elpher.  This function is used by `browse-url'."
1985   (interactive (browse-url-interactive-arg "Elpher URL: "))
1986   (elpher-go url))
1987
1988 ;; Use elpher to open gopher, finger and gemini links
1989 ;; For recent version of `browse-url' package
1990 (if (boundp 'browse-url-default-handlers)
1991     (add-to-list
1992      'browse-url-default-handlers
1993      '("^\\(gopher\\|finger\\|gemini\\)://" . elpher-browse-url-elpher))
1994   ;; Patch `browse-url-browser-function' for older ones. The value of
1995   ;; that variable is `browse-url-default-browser' by default, so
1996   ;; that's the function that gets advised.
1997   (advice-add browse-url-browser-function :before-while
1998               (lambda (url &rest _args)
1999                 "Handle gemini, gopher, and finger schemes using Elpher."
2000                 (let ((scheme (downcase (car (split-string url ":" t)))))
2001                   (if (member scheme '("gemini" "gopher" "finger"))
2002                       ;; `elpher-go' always returns nil, which will stop the
2003                       ;; advice chain here in a before-while
2004                       (elpher-go url)
2005                     ;; chain must continue, then return t.
2006                     t)))))
2007
2008 ;; Register "gemini://" as a URI scheme so `browse-url' does the right thing
2009 (with-eval-after-load 'thingatpt
2010   (add-to-list 'thing-at-point-uri-schemes "gemini://"))
2011
2012 ;;; Mu4e:
2013
2014 ;; Make mu4e aware of the gemini world
2015 (setq mu4e~view-beginning-of-url-regexp
2016       "\\(?:https?\\|gopher\\|finger\\|gemini\\)://\\|mailto:")
2017
2018 ;;; Interactive procedures
2019 ;;
2020
2021 (defun elpher-next-link ()
2022   "Move point to the next link on the current page."
2023   (interactive)
2024   (forward-button 1))
2025
2026 (defun elpher-prev-link ()
2027   "Move point to the previous link on the current page."
2028   (interactive)
2029   (backward-button 1))
2030
2031 (defun elpher-follow-current-link ()
2032   "Open the link or url at point."
2033   (interactive)
2034   (push-button))
2035
2036 ;;;###autoload
2037 (defun elpher-go (host-or-url)
2038   "Go to a particular gopher site HOST-OR-URL.
2039 When run interactively HOST-OR-URL is read from the minibuffer."
2040   (interactive "sGopher or Gemini URL: ")
2041   (let* ((cleaned-host-or-url (string-trim host-or-url))
2042          (address (elpher-address-from-url cleaned-host-or-url))
2043          (page (elpher-make-page cleaned-host-or-url address)))
2044     (switch-to-buffer elpher-buffer-name)
2045     (elpher-with-clean-buffer
2046      (elpher-visit-page page))
2047     nil))
2048
2049 (defun elpher-go-current ()
2050   "Go to a particular site read from the minibuffer, initialized with the current URL."
2051   (interactive)
2052   (let ((address (elpher-page-address elpher-current-page)))
2053     (let ((url (read-string "Gopher or Gemini URL: "
2054                             (unless (elpher-address-special-p address)
2055                               (elpher-address-to-url address)))))
2056       (elpher-visit-page (elpher-make-page url (elpher-address-from-url url))))))
2057
2058 (defun elpher-redraw ()
2059   "Redraw current page."
2060   (interactive)
2061   (elpher-visit-page elpher-current-page))
2062
2063 (defun elpher-reload ()
2064   "Reload current page."
2065   (interactive)
2066   (elpher-reload-current-page))
2067
2068 (defun elpher-toggle-tls ()
2069   "Toggle TLS encryption mode for gopher."
2070   (interactive)
2071   (setq elpher-use-tls (not elpher-use-tls))
2072   (if elpher-use-tls
2073       (if (gnutls-available-p)
2074           (message "TLS gopher mode enabled.  (Will not affect current page until reload.)")
2075         (setq elpher-use-tls nil)
2076         (error "Cannot enable TLS gopher mode: GnuTLS not available"))
2077     (message "TLS gopher mode disabled.  (Will not affect current page until reload.)")))
2078
2079 (defun elpher-view-raw ()
2080   "View raw server response for current page."
2081   (interactive)
2082   (if (elpher-address-special-p (elpher-page-address elpher-current-page))
2083       (error "This page was not generated by a server")
2084     (elpher-visit-page elpher-current-page
2085                        #'elpher-render-raw)))
2086
2087 (defun elpher-back ()
2088   "Go to previous site."
2089   (interactive)
2090   (elpher-visit-previous-page))
2091
2092 (defun elpher-back-to-start ()
2093   "Go all the way back to the start page."
2094   (interactive)
2095   (setq-local elpher-current-page nil)
2096   (setq-local elpher-history nil)
2097   (elpher-visit-page (elpher-make-start-page)))
2098
2099 (defun elpher-download ()
2100   "Download the link at point."
2101   (interactive)
2102   (let ((button (button-at (point))))
2103     (if button
2104         (let ((page (button-get button 'elpher-page)))
2105           (if (elpher-address-special-p (elpher-page-address page))
2106               (error "Cannot download %s"
2107                      (elpher-page-display-string page))
2108             (elpher-visit-page (button-get button 'elpher-page)
2109                                #'elpher-render-download)))
2110       (error "No link selected"))))
2111
2112 (defun elpher-download-current ()
2113   "Download the current page."
2114   (interactive)
2115   (if (elpher-address-special-p (elpher-page-address elpher-current-page))
2116       (error "Cannot download %s"
2117              (elpher-page-display-string elpher-current-page))
2118     (elpher-visit-page (elpher-make-page
2119                         (elpher-page-display-string elpher-current-page)
2120                         (elpher-page-address elpher-current-page))
2121                        #'elpher-render-download
2122                        t)))
2123
2124 (defun elpher--build-link-map ()
2125   "Build alist mapping link names to destination pages in current buffer."
2126   (let ((link-map nil)
2127         (b (next-button (point-min) t)))
2128     (while b
2129       (push (cons (button-label b) b) link-map)
2130       (setq b (next-button (button-start b))))
2131     link-map))
2132
2133 (defun elpher-jump ()
2134   "Select a directory entry by name.  Similar to the info browser (m)enu command."
2135   (interactive)
2136   (let* ((link-map (elpher--build-link-map)))
2137     (if link-map
2138         (let ((key (let ((completion-ignore-case t))
2139                      (completing-read "Directory item/link: "
2140                                       link-map nil t))))
2141           (if (and key (> (length key) 0))
2142               (let ((b (cdr (assoc key link-map))))
2143                 (goto-char (button-start b))
2144                 (button-activate b)))))))
2145
2146 (defun elpher-root-dir ()
2147   "Visit root of current server."
2148   (interactive)
2149   (let ((address (elpher-page-address elpher-current-page)))
2150     (if (not (elpher-address-special-p address))
2151         (if (or (member (url-filename address) '("/" ""))
2152                 (and (elpher-address-gopher-p address)
2153                      (= (length (elpher-gopher-address-selector address)) 0)))
2154             (error "Already at root directory of current server")
2155           (let ((address-copy (elpher-address-from-url
2156                                (elpher-address-to-url address))))
2157             (setf (url-filename address-copy) "")
2158             (elpher-go (elpher-address-to-url address-copy))))
2159       (error "Command invalid for %s" (elpher-page-display-string elpher-current-page)))))
2160
2161 (defun elpher-info-page (page)
2162   "Display information on PAGE."
2163   (let ((display-string (elpher-page-display-string page))
2164         (address (elpher-page-address page)))
2165     (if (elpher-address-special-p address)
2166         (message "Special page: %s" display-string)
2167       (message "%s" (elpher-address-to-url address)))))
2168
2169 (defun elpher-info-link ()
2170   "Display information on page corresponding to link at point."
2171   (interactive)
2172   (let ((button (button-at (point))))
2173     (if button
2174         (elpher-info-page (button-get button 'elpher-page))
2175       (error "No item selected"))))
2176
2177 (defun elpher-info-current ()
2178   "Display information on current page."
2179   (interactive)
2180   (elpher-info-page elpher-current-page))
2181
2182 (defun elpher-copy-page-url (page)
2183   "Copy URL representation of address of PAGE to `kill-ring'."
2184   (let ((address (elpher-page-address page)))
2185     (if (elpher-address-special-p address)
2186         (error (format "Cannot represent %s as URL" (elpher-page-display-string page)))
2187       (let ((url (elpher-address-to-url address)))
2188         (message "Copied \"%s\" to kill-ring/clipboard." url)
2189         (kill-new url)))))
2190
2191 (defun elpher-copy-link-url ()
2192   "Copy URL of item at point to `kill-ring'."
2193   (interactive)
2194   (let ((button (button-at (point))))
2195     (if button
2196         (elpher-copy-page-url (button-get button 'elpher-page))
2197       (error "No item selected"))))
2198
2199 (defun elpher-copy-current-url ()
2200   "Copy URL of current page to `kill-ring'."
2201   (interactive)
2202   (elpher-copy-page-url elpher-current-page))
2203
2204 (defun elpher-set-gopher-coding-system ()
2205   "Specify an explicit character coding system for gopher selectors."
2206   (interactive)
2207   (let ((system (read-coding-system "Set coding system to use for gopher (default is to autodetect): " nil)))
2208     (setq elpher-user-coding-system system)
2209     (if system
2210         (message "Gopher coding system fixed to %s. (Reload to see effect)." system)
2211       (message "Gopher coding system set to autodetect. (Reload to see effect)."))))
2212
2213
2214 ;;; Mode and keymap
2215 ;;
2216
2217 (defvar elpher-mode-map
2218   (let ((map (make-sparse-keymap)))
2219     (define-key map (kbd "TAB") 'elpher-next-link)
2220     (define-key map (kbd "<backtab>") 'elpher-prev-link)
2221     (define-key map (kbd "C-M-i") 'elpher-prev-link)
2222     (define-key map (kbd "u") 'elpher-back)
2223     (define-key map (kbd "-") 'elpher-back)
2224     (define-key map (kbd "^") 'elpher-back)
2225     (define-key map [mouse-3] 'elpher-back)
2226     (define-key map (kbd "U") 'elpher-back-to-start)
2227     (define-key map (kbd "g") 'elpher-go)
2228     (define-key map (kbd "o") 'elpher-go-current)
2229     (define-key map (kbd "O") 'elpher-root-dir)
2230     (define-key map (kbd "s") 'elpher-show-history)
2231     (define-key map (kbd "S") 'elpher-show-visited-pages)
2232     (define-key map (kbd "r") 'elpher-redraw)
2233     (define-key map (kbd "R") 'elpher-reload)
2234     (define-key map (kbd "T") 'elpher-toggle-tls)
2235     (define-key map (kbd ".") 'elpher-view-raw)
2236     (define-key map (kbd "d") 'elpher-download)
2237     (define-key map (kbd "D") 'elpher-download-current)
2238     (define-key map (kbd "m") 'elpher-jump)
2239     (define-key map (kbd "i") 'elpher-info-link)
2240     (define-key map (kbd "I") 'elpher-info-current)
2241     (define-key map (kbd "c") 'elpher-copy-link-url)
2242     (define-key map (kbd "C") 'elpher-copy-current-url)
2243     (define-key map (kbd "a") 'elpher-bookmark-link)
2244     (define-key map (kbd "A") 'elpher-bookmark-current)
2245     (define-key map (kbd "B") 'elpher-show-bookmarks)
2246     (define-key map (kbd "!") 'elpher-set-gopher-coding-system)
2247     (define-key map (kbd "F") 'elpher-forget-current-certificate)
2248     (when (fboundp 'evil-define-key*)
2249       (evil-define-key*
2250        'motion map
2251        (kbd "TAB") 'elpher-next-link
2252        (kbd "C-") 'elpher-follow-current-link
2253        (kbd "C-t") 'elpher-back
2254        (kbd "u") 'elpher-back
2255        (kbd "-") 'elpher-back
2256        (kbd "^") 'elpher-back
2257        [mouse-3] 'elpher-back
2258        (kbd "U") 'elpher-back-to-start
2259        (kbd "g") 'elpher-go
2260        (kbd "o") 'elpher-go-current
2261        (kbd "O") 'elpher-root-dir
2262        (kbd "s") 'elpher-show-history
2263        (kbd "S") 'elpher-show-visited-pages
2264        (kbd "r") 'elpher-redraw
2265        (kbd "R") 'elpher-reload
2266        (kbd "T") 'elpher-toggle-tls
2267        (kbd ".") 'elpher-view-raw
2268        (kbd "d") 'elpher-download
2269        (kbd "D") 'elpher-download-current
2270        (kbd "m") 'elpher-jump
2271        (kbd "i") 'elpher-info-link
2272        (kbd "I") 'elpher-info-current
2273        (kbd "c") 'elpher-copy-link-url
2274        (kbd "C") 'elpher-copy-current-url
2275        (kbd "a") 'elpher-bookmark-link
2276        (kbd "A") 'elpher-bookmark-current
2277        (kbd "B") 'elpher-show-bookmarks
2278        (kbd "!") 'elpher-set-gopher-coding-system
2279        (kbd "F") 'elpher-forget-current-certificate))
2280     map)
2281   "Keymap for gopher client.")
2282
2283 (define-derived-mode elpher-mode special-mode "elpher"
2284   "Major mode for elpher, an elisp gopher client.
2285
2286 This mode is automatically enabled by the interactive
2287 functions which initialize the client, namely
2288 `elpher', and `elpher-go'."
2289   (setq-local elpher--gemini-page-headings nil)
2290   (setq-local elpher-current-page nil)
2291   (setq-local elpher-history nil)
2292   (setq-local elpher-buffer-name (buffer-name))
2293   (setq-local bookmark-make-record-function #'elpher-bookmark-make-record)
2294   (setq-local imenu-create-index-function (lambda () elpher--gemini-page-headings))
2295   (setq-local xterm-color-preserve-properties t))
2296
2297 (when (fboundp 'evil-set-initial-state)
2298   (evil-set-initial-state 'elpher-mode 'motion))
2299
2300
2301 ;;; Main start procedure
2302 ;;
2303
2304 ;;;###autoload
2305 (defun elpher (&optional arg)
2306   "Start elpher with default landing page.
2307 The buffer used for Elpher sessions is determined by the value of
2308 ‘elpher-buffer-name’.  If there is already an Elpher session active in
2309 that buffer, Emacs will simply switch to it.  Otherwise, a new session
2310 will begin.  A numeric prefix ARG (as in ‘\\[universal-argument] 42
2311 \\[execute-extended-command] elpher RET’) switches to the session with
2312 that number, creating it if necessary.  A non numeric prefix ARG means
2313 to create a new session.  Returns the buffer selected (or created)."
2314   (interactive "P")
2315   (let* ((name (default-value 'elpher-buffer-name))
2316          (buf (cond ((numberp arg)
2317                      (get-buffer-create (format "%s<%d>" name arg)))
2318                     (arg
2319                      (generate-new-buffer name))
2320                     (t
2321                      (get-buffer-create name)))))
2322     (pop-to-buffer-same-window buf)
2323     (unless (buffer-modified-p)
2324       (elpher-mode)
2325       (elpher-visit-page (elpher-make-start-page))
2326       "Started Elpher."))); Otherwise (elpher) evaluates to start page string.
2327
2328 ;;; elpher.el ends here