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