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