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