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