2023-10-19 17:49:54 +02:00
|
|
|
;; tinmop: a multiprotocol client
|
2023-10-19 17:46:22 +02:00
|
|
|
;; Copyright © cage
|
2020-06-22 13:58:04 +02:00
|
|
|
|
|
|
|
;; This program is free software: you can redistribute it and/or modify
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
|
|
|
|
|
|
|
;; This program is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
|
|
;; along with this program.
|
|
|
|
;; If not, see [[http://www.gnu.org/licenses/][http://www.gnu.org/licenses/]].
|
|
|
|
|
|
|
|
(in-package :gemini-viewer)
|
|
|
|
|
2020-09-12 10:23:26 +02:00
|
|
|
(defparameter *gemini-db-streams-lock* (bt:make-recursive-lock))
|
|
|
|
|
2021-11-10 16:12:08 +01:00
|
|
|
(define-constant +read-buffer-size+ 2048 :test #'=
|
2020-08-30 15:34:08 +02:00
|
|
|
:documentation "Chunk's size of the buffer when reading non gemini contents from stream")
|
2020-06-28 17:39:21 +02:00
|
|
|
|
2020-08-30 15:34:08 +02:00
|
|
|
(defparameter *gemini-streams-db* ())
|
2020-06-28 17:39:21 +02:00
|
|
|
|
2020-08-30 15:34:08 +02:00
|
|
|
(defun push-db-stream (stream-object)
|
|
|
|
(pushnew stream-object
|
|
|
|
*gemini-streams-db*
|
|
|
|
:test (lambda (a b)
|
2020-12-17 13:56:07 +01:00
|
|
|
(string= (download-iri a)
|
|
|
|
(download-iri b))))
|
2020-08-30 15:34:08 +02:00
|
|
|
*gemini-streams-db*)
|
2020-07-26 16:34:05 +02:00
|
|
|
|
2020-08-30 15:34:08 +02:00
|
|
|
(defun remove-db-stream (stream-object)
|
|
|
|
(setf *gemini-streams-db*
|
|
|
|
(remove stream-object *gemini-streams-db*))
|
|
|
|
*gemini-streams-db*)
|
|
|
|
|
2020-09-30 18:24:58 +02:00
|
|
|
(defun remove-all-db-stream ()
|
|
|
|
(map nil
|
|
|
|
(lambda (a) (abort-downloading a))
|
2022-02-19 12:01:03 +01:00
|
|
|
*gemini-streams-db*)
|
2020-09-30 18:24:58 +02:00
|
|
|
(setf *gemini-streams-db* ())
|
|
|
|
*gemini-streams-db*)
|
|
|
|
|
2020-08-30 15:34:08 +02:00
|
|
|
(defun find-db-stream-if (predicate)
|
|
|
|
(find-if predicate *gemini-streams-db*))
|
|
|
|
|
|
|
|
(defun find-db-stream-url (url)
|
2020-12-17 13:56:07 +01:00
|
|
|
(find-db-stream-if (lambda (a) (string= (download-iri a) url))))
|
2020-08-30 15:34:08 +02:00
|
|
|
|
2020-09-12 10:23:26 +02:00
|
|
|
(defun ensure-just-one-stream-rendering ()
|
|
|
|
(with-lock (*gemini-db-streams-lock*)
|
|
|
|
(when-let ((current-rendering (find-db-stream-if (lambda (a)
|
|
|
|
(eq (stream-status a)
|
|
|
|
:rendering)))))
|
|
|
|
(setf (stream-status current-rendering) :streaming))))
|
|
|
|
|
2020-12-29 12:36:10 +01:00
|
|
|
(defun abort-download-stream (url &key
|
|
|
|
(remove-wainting-stream-event t)
|
|
|
|
(redraw-stream-window t))
|
|
|
|
(when-let ((stream-object (find-db-stream-url url)))
|
|
|
|
(abort-downloading stream-object)
|
|
|
|
(remove-db-stream stream-object)
|
|
|
|
(when remove-wainting-stream-event
|
|
|
|
(program-events:remove-event-if (lambda (a)
|
|
|
|
(and (typep a
|
|
|
|
'program-events:gemini-got-line-event)
|
|
|
|
(string= url
|
|
|
|
(download-iri stream-object))))))
|
|
|
|
(when (and redraw-stream-window
|
|
|
|
specials:*gemini-streams-window*)
|
|
|
|
(line-oriented-window:resync-rows-db specials:*gemini-streams-window*))))
|
|
|
|
|
2021-06-17 19:41:03 +02:00
|
|
|
(defun bury-download-stream ()
|
|
|
|
(let ((program-events:*process-events-immediately* t)
|
|
|
|
(event (make-instance 'program-events:gemini-push-behind-downloading-event
|
|
|
|
:priority program-events:+maximum-event-priority+)))
|
|
|
|
(program-events:push-event event)))
|
|
|
|
|
2020-12-17 13:12:16 +01:00
|
|
|
(defun force-rendering-of-cached-file (stream-object)
|
|
|
|
;; this is more than a mere setter
|
|
|
|
;; and is 'eql' specialized on rendering
|
|
|
|
;; it will force displaying of gemini cached file on the screen
|
|
|
|
(setf (stream-status stream-object) :rendering))
|
|
|
|
|
2020-12-17 13:56:07 +01:00
|
|
|
(defun db-entry-to-foreground (iri)
|
|
|
|
(when-let* ((stream-object (find-db-stream-url iri)))
|
2020-08-30 15:34:08 +02:00
|
|
|
(with-accessors ((support-file support-file)
|
|
|
|
(meta meta)) stream-object
|
2021-05-18 19:50:50 +02:00
|
|
|
(cond
|
|
|
|
((gemini-client:mime-gemini-p meta)
|
|
|
|
(ensure-just-one-stream-rendering)
|
|
|
|
(force-rendering-of-cached-file stream-object)
|
|
|
|
(setf (stream-status stream-object) :completed)
|
2022-02-25 16:37:43 +01:00
|
|
|
(ui:open-gemini-toc)
|
|
|
|
(program-events:with-enqueued-process ()
|
|
|
|
(ui:open-gemini-message-link-window :give-focus nil)))
|
2023-01-12 20:09:01 +01:00
|
|
|
((and (gemini-client:text-file-stream-p meta)
|
|
|
|
(os-utils:open-resource-with-tinmop-p iri))
|
|
|
|
(ensure-just-one-stream-rendering)
|
2021-05-18 19:50:50 +02:00
|
|
|
(force-rendering-of-cached-file stream-object)
|
|
|
|
(setf (stream-status stream-object) :completed))
|
|
|
|
(t
|
|
|
|
(os-utils:open-resource-with-external-program support-file t))))))
|
2020-07-26 16:34:05 +02:00
|
|
|
|
2020-08-27 17:51:40 +02:00
|
|
|
(defclass gemini-stream ()
|
|
|
|
((download-thread-lock
|
|
|
|
:initform (bt:make-recursive-lock "download-gemini")
|
|
|
|
:initarg :download-thread-lock
|
|
|
|
:accessor download-thread-lock)
|
|
|
|
(download-thread-blocked
|
|
|
|
:initform nil
|
|
|
|
:initarg :download-thread-blocked
|
|
|
|
:reader download-thread-blocked-p
|
|
|
|
:writer (setf download-thread-blocked))
|
2020-08-29 10:53:52 +02:00
|
|
|
(stream-status
|
|
|
|
:initform nil
|
|
|
|
:initarg :stream-status)
|
2020-12-17 13:56:07 +01:00
|
|
|
(download-iri
|
2020-08-27 17:51:40 +02:00
|
|
|
:initform nil
|
2020-12-17 13:56:07 +01:00
|
|
|
:initarg :download-iri
|
|
|
|
:accessor download-iri)
|
2020-08-27 17:51:40 +02:00
|
|
|
(start-time
|
|
|
|
:initform (db-utils:local-time-obj-now)
|
|
|
|
:initarg :start-time
|
|
|
|
:accessor start-time)
|
|
|
|
(download-stream
|
|
|
|
:initform nil
|
|
|
|
:initarg :download-stream
|
|
|
|
:accessor download-stream)
|
|
|
|
(download-socket
|
|
|
|
:initform nil
|
|
|
|
:initarg :download-socket
|
|
|
|
:accessor download-socket)
|
2020-08-28 17:20:44 +02:00
|
|
|
(support-file
|
|
|
|
:initform (fs:temporary-file)
|
|
|
|
:initarg :support-file
|
|
|
|
:accessor support-file)
|
2022-12-29 17:24:53 +01:00
|
|
|
(parsed-lines
|
|
|
|
:initform '()
|
|
|
|
:initarg :parsed-lines
|
|
|
|
:accessor parsed-lines)
|
2020-08-28 17:20:44 +02:00
|
|
|
(octect-count
|
|
|
|
:initform 0
|
|
|
|
:initarg :octect-count
|
|
|
|
:accessor octect-count)
|
2020-08-30 15:34:08 +02:00
|
|
|
(port
|
|
|
|
:initform nil
|
|
|
|
:initarg :port
|
|
|
|
:accessor port)
|
|
|
|
(status-code
|
|
|
|
:initform nil
|
|
|
|
:initarg :status-code
|
|
|
|
:accessor status-code)
|
|
|
|
(status-code-description
|
|
|
|
:initform nil
|
|
|
|
:initarg :status-code-description
|
|
|
|
:accessor status-code-description)
|
|
|
|
(meta
|
|
|
|
:initform nil
|
|
|
|
:initarg :meta
|
|
|
|
:accessor meta)
|
|
|
|
(path
|
|
|
|
:initform nil
|
|
|
|
:initarg :path
|
|
|
|
:accessor path)
|
2020-12-25 15:03:39 +01:00
|
|
|
(query
|
|
|
|
:initform nil
|
|
|
|
:initarg :query
|
|
|
|
:accessor query)
|
|
|
|
(fragment
|
|
|
|
:initform nil
|
|
|
|
:initarg :fragment
|
|
|
|
:accessor fragment)
|
2020-08-30 15:34:08 +02:00
|
|
|
(host
|
|
|
|
:initform nil
|
|
|
|
:initarg :host
|
|
|
|
:accessor host)
|
2020-08-27 17:51:40 +02:00
|
|
|
(thread
|
|
|
|
:initform nil
|
|
|
|
:initarg :thread
|
|
|
|
:accessor thread)))
|
2020-07-26 16:34:05 +02:00
|
|
|
|
2020-08-30 15:34:08 +02:00
|
|
|
(defmethod print-object ((object gemini-stream) stream)
|
|
|
|
(print-unreadable-object (object stream :type t :identity t)
|
|
|
|
(format stream
|
|
|
|
"~a ~d ~a ~a"
|
2020-12-17 13:56:07 +01:00
|
|
|
(download-iri object)
|
2020-08-30 15:34:08 +02:00
|
|
|
(octect-count object)
|
|
|
|
(meta object)
|
|
|
|
(stream-status object))))
|
|
|
|
|
|
|
|
(defmethod to-tui-string ((object gemini-stream) &key (window nil))
|
|
|
|
(flet ((pad (string width)
|
|
|
|
(right-padding (ellipsize string width) width)))
|
|
|
|
(let* ((window-width (win-width window))
|
|
|
|
(url-w (truncate (* window-width 2/3)))
|
|
|
|
(octect-count-w (truncate (* window-width 1/9)))
|
|
|
|
(meta-w (truncate (* window-width 1/9)))
|
|
|
|
(status-w (truncate (* window-width 1/9)))
|
|
|
|
(color-re (swconf:color-regexps))
|
|
|
|
(fitted-line (format nil
|
|
|
|
"~a ~d ~a ~a"
|
2020-12-17 13:56:07 +01:00
|
|
|
(pad (download-iri object) url-w)
|
2020-08-30 15:34:08 +02:00
|
|
|
(pad (to-s (octect-count object))
|
|
|
|
octect-count-w)
|
|
|
|
(pad (meta object) meta-w)
|
|
|
|
(ellipsize (string-downcase (format nil
|
|
|
|
"~s"
|
|
|
|
(stream-status object)))
|
|
|
|
status-w))))
|
|
|
|
(loop for re in color-re do
|
|
|
|
(setf fitted-line (colorize-line fitted-line re)))
|
|
|
|
(colorized-line->tui-string fitted-line))))
|
|
|
|
|
2020-08-27 17:51:40 +02:00
|
|
|
(defgeneric abort-downloading (object))
|
2020-07-26 16:34:05 +02:00
|
|
|
|
2020-08-27 17:51:40 +02:00
|
|
|
(defgeneric allow-downloading (object))
|
2020-07-26 12:04:46 +02:00
|
|
|
|
2020-08-27 17:51:40 +02:00
|
|
|
(defgeneric downloading-allowed-p (object))
|
|
|
|
|
2020-12-25 15:03:39 +01:00
|
|
|
(defgeneric downloading-start-thread (object function host port path query fragment))
|
2020-08-27 17:51:40 +02:00
|
|
|
|
|
|
|
(defmethod abort-downloading ((object gemini-stream))
|
|
|
|
(with-accessors ((download-thread-lock download-thread-lock)) object
|
2020-08-30 15:34:08 +02:00
|
|
|
(setf (stream-status object) :aborted)
|
2020-08-27 17:51:40 +02:00
|
|
|
(with-lock (download-thread-lock)
|
|
|
|
(setf (download-thread-blocked object) t))))
|
|
|
|
|
|
|
|
(defmethod allow-downloading ((object gemini-stream))
|
|
|
|
(with-accessors ((download-thread-lock download-thread-lock)) object
|
|
|
|
(with-lock (download-thread-lock)
|
|
|
|
(setf (download-thread-blocked object) nil))))
|
|
|
|
|
|
|
|
(defmethod downloading-allowed-p ((object gemini-stream))
|
|
|
|
(with-accessors ((download-thread-lock download-thread-lock)) object
|
|
|
|
(with-lock (download-thread-lock)
|
|
|
|
(not (download-thread-blocked-p object)))))
|
|
|
|
|
2020-08-29 10:53:52 +02:00
|
|
|
(defmethod (setf stream-status) (val (object gemini-stream))
|
|
|
|
(with-accessors ((download-thread-lock download-thread-lock)
|
|
|
|
(stream-status stream-status)) object
|
|
|
|
(with-lock (download-thread-lock)
|
2020-08-30 15:34:08 +02:00
|
|
|
(setf (slot-value object 'stream-status) val))))
|
2020-08-29 10:53:52 +02:00
|
|
|
|
|
|
|
(defmethod stream-status ((object gemini-stream))
|
|
|
|
(with-accessors ((download-thread-lock download-thread-lock)) object
|
|
|
|
(with-lock (download-thread-lock)
|
|
|
|
(slot-value object 'stream-status))))
|
|
|
|
|
2020-08-27 17:51:40 +02:00
|
|
|
(defmethod downloading-start-thread ((object gemini-stream)
|
|
|
|
function
|
2020-12-25 15:03:39 +01:00
|
|
|
host
|
|
|
|
port
|
|
|
|
path
|
|
|
|
query
|
|
|
|
fragment)
|
2020-08-29 10:53:52 +02:00
|
|
|
(with-accessors ((start-time start-time)
|
|
|
|
(thread thread)
|
|
|
|
(stream-status stream-status)
|
2020-12-17 13:56:07 +01:00
|
|
|
(download-iri download-iri)) object
|
2021-04-10 19:15:06 +02:00
|
|
|
(setf thread (bt:make-thread function))
|
2020-08-27 17:51:40 +02:00
|
|
|
(setf start-time (db-utils:local-time-obj-now))
|
2020-12-25 15:03:39 +01:00
|
|
|
(setf download-iri (gemini-parser:make-gemini-iri host
|
|
|
|
path
|
|
|
|
:query query
|
|
|
|
:port port
|
|
|
|
:fragment fragment))
|
2020-08-27 17:51:40 +02:00
|
|
|
object))
|
|
|
|
|
|
|
|
(defclass gemini-file-stream (gemini-stream) ())
|
|
|
|
|
2020-08-30 15:34:08 +02:00
|
|
|
(defmethod (setf stream-status) :after ((val (eql :rendering)) (object gemini-file-stream))
|
|
|
|
(with-accessors ((download-thread-lock download-thread-lock)
|
2022-12-29 17:24:53 +01:00
|
|
|
(support-file support-file)
|
|
|
|
(parsed-lines parsed-lines)) object
|
2020-08-30 15:34:08 +02:00
|
|
|
(with-lock (download-thread-lock)
|
2022-12-29 17:24:53 +01:00
|
|
|
(gemini-parser:with-initialized-parser
|
|
|
|
(let ((event (make-gemini-download-event (fs:slurp-file support-file)
|
|
|
|
parsed-lines
|
|
|
|
object
|
|
|
|
nil)))
|
|
|
|
(program-events:push-event event))))))
|
2020-08-30 15:34:08 +02:00
|
|
|
|
2020-08-28 17:20:44 +02:00
|
|
|
(defclass gemini-others-data-stream (gemini-stream) ())
|
|
|
|
|
|
|
|
(defmacro with-open-support-file ((stream file &optional (element-type '(unsigned-byte 8)))
|
|
|
|
&body body)
|
2021-10-04 20:42:39 +02:00
|
|
|
`(handler-case
|
|
|
|
(with-open-file (,stream ,file
|
|
|
|
:element-type ',element-type
|
|
|
|
:direction :output
|
|
|
|
:element-type 'character
|
|
|
|
:if-exists :supersede
|
|
|
|
:if-does-not-exist :create)
|
|
|
|
,@body)
|
|
|
|
(file-error (condition)
|
|
|
|
(declare (ignore condition))
|
|
|
|
nil)))
|
2020-08-28 17:20:44 +02:00
|
|
|
|
|
|
|
(defgeneric increment-bytes-count (object data &key &allow-other-keys))
|
|
|
|
|
|
|
|
(defmethod increment-bytes-count ((object gemini-stream) data
|
|
|
|
&key (convert-to-octects nil))
|
|
|
|
(with-accessors ((octect-count octect-count)) object
|
|
|
|
(if convert-to-octects
|
|
|
|
(incf octect-count (babel:string-size-in-octets data
|
|
|
|
:errorp nil))
|
|
|
|
(incf octect-count (length data)))))
|
|
|
|
|
|
|
|
(defmethod increment-bytes-count ((object gemini-stream) (data number)
|
|
|
|
&key &allow-other-keys)
|
|
|
|
(with-accessors ((octect-count octect-count)) object
|
|
|
|
(incf octect-count data)))
|
|
|
|
|
2022-12-29 17:24:53 +01:00
|
|
|
(defun make-gemini-download-event (src-data parsed-data stream-object append-text)
|
2020-12-17 13:56:07 +01:00
|
|
|
(with-accessors ((download-iri download-iri)
|
2020-08-30 15:34:08 +02:00
|
|
|
(host host)
|
|
|
|
(port port)
|
|
|
|
(path path)
|
|
|
|
(meta meta)
|
2022-08-05 11:30:56 +02:00
|
|
|
(query query)
|
2022-12-29 17:24:53 +01:00
|
|
|
(parsed-lines parsed-lines)
|
2020-08-30 15:34:08 +02:00
|
|
|
(status-code status-code)
|
|
|
|
(status-code-description status-code-description)) stream-object
|
2022-12-29 17:24:53 +01:00
|
|
|
(let* ((links (gemini-parser:sexp->links parsed-data host port path query))
|
2020-08-30 15:34:08 +02:00
|
|
|
(response (gemini-client:make-gemini-file-response status-code
|
|
|
|
status-code-description
|
|
|
|
meta
|
2022-12-29 17:24:53 +01:00
|
|
|
parsed-data
|
2020-12-17 13:56:07 +01:00
|
|
|
download-iri
|
2020-08-30 15:34:08 +02:00
|
|
|
src-data
|
|
|
|
links)))
|
|
|
|
(make-instance 'program-events:gemini-got-line-event
|
|
|
|
:wrapper-object stream-object
|
|
|
|
:payload response
|
|
|
|
:append-text append-text))))
|
|
|
|
|
2021-01-28 15:35:26 +01:00
|
|
|
(let ((cache ()))
|
|
|
|
(defun fetch-favicon (parsed-url)
|
2021-02-21 12:23:01 +01:00
|
|
|
(if (not (swconf:gemini-fetch-favicon-p))
|
|
|
|
(swconf:gemini-default-favicon)
|
|
|
|
(flet ((fetch-from-cache (key)
|
|
|
|
(assoc-value cache key :test #'string=)))
|
|
|
|
(multiple-value-bind (actual-iri host path query port fragment)
|
|
|
|
(gemini-client:displace-iri parsed-url)
|
|
|
|
(declare (ignore actual-iri path query fragment))
|
|
|
|
(or (fetch-from-cache host)
|
|
|
|
(ignore-errors
|
|
|
|
(let* ((favicon-url (gemini-parser:make-gemini-iri host
|
|
|
|
"/favicon.txt"
|
|
|
|
:port port))
|
|
|
|
(response-body (gemini-client:slurp-gemini-url favicon-url))
|
2022-07-02 10:55:11 +02:00
|
|
|
(favicon-list (coerce (text-utils:to-s response-body :errorp t)
|
2021-07-15 12:41:43 +02:00
|
|
|
'list))
|
2021-07-15 20:36:38 +02:00
|
|
|
(emoji (starting-emoji favicon-list))
|
2021-07-15 18:44:44 +02:00
|
|
|
(favicon (if emoji
|
|
|
|
(coerce emoji 'string)
|
|
|
|
(swconf:gemini-default-favicon))))
|
2021-02-21 12:23:01 +01:00
|
|
|
(setf cache (acons host favicon cache))
|
|
|
|
(fetch-favicon parsed-url)))
|
|
|
|
(swconf:gemini-default-favicon)))))))
|
2021-01-28 15:35:26 +01:00
|
|
|
|
2023-05-16 19:14:55 +02:00
|
|
|
(defun fragment->regex (fragment)
|
|
|
|
(when (and fragment
|
|
|
|
(swconf:config-gemini-fragment-as-regex-p))
|
|
|
|
(if (text-utils:percent-encoded-p fragment)
|
|
|
|
(text-utils:percent-decode fragment)
|
|
|
|
fragment)))
|
|
|
|
|
2020-08-27 17:51:40 +02:00
|
|
|
(defun request-stream-gemini-document-thread (wrapper-object host
|
2021-04-01 17:08:42 +02:00
|
|
|
port path query fragment favicon
|
2022-12-29 17:24:53 +01:00
|
|
|
gemini-format-p
|
2023-06-17 16:49:34 +02:00
|
|
|
&key
|
|
|
|
(notify t)
|
|
|
|
(open-with-external-program t))
|
2020-08-27 17:51:40 +02:00
|
|
|
(with-accessors ((download-socket download-socket)
|
2020-08-28 17:20:44 +02:00
|
|
|
(download-stream download-stream)
|
|
|
|
(octect-count octect-count)
|
|
|
|
(support-file support-file)) wrapper-object
|
2023-01-12 20:09:01 +01:00
|
|
|
(labels ((rendering-in-tinmop-p ()
|
|
|
|
(or gemini-format-p
|
|
|
|
(and (os-utils:open-resource-with-tinmop-p (download-iri wrapper-object))
|
|
|
|
(eq (stream-status wrapper-object) :rendering))))
|
|
|
|
(maybe-render-line (line-event)
|
|
|
|
(when (rendering-in-tinmop-p)
|
2021-04-01 17:08:42 +02:00
|
|
|
(program-events:push-event line-event)))
|
2021-11-12 19:11:28 +01:00
|
|
|
(maybe-change-title (title-event)
|
2023-01-12 20:09:01 +01:00
|
|
|
(when (rendering-in-tinmop-p)
|
2021-11-12 19:11:28 +01:00
|
|
|
(program-events:push-event title-event)))
|
2021-05-16 15:38:26 +02:00
|
|
|
(maybe-render-toc ()
|
2023-01-12 20:09:01 +01:00
|
|
|
(when (rendering-in-tinmop-p)
|
2021-05-16 15:38:26 +02:00
|
|
|
(ui:open-gemini-toc)))
|
2022-03-11 20:50:06 +01:00
|
|
|
(maybe-render-focus-mark ()
|
2023-01-12 20:09:01 +01:00
|
|
|
(when (rendering-in-tinmop-p)
|
2022-03-11 20:50:06 +01:00
|
|
|
(program-events:with-enqueued-process ()
|
|
|
|
(windows:draw-focus-mark *message-window*))))
|
2022-02-25 16:37:43 +01:00
|
|
|
(maybe-render-links ()
|
2023-01-12 20:09:01 +01:00
|
|
|
(when (rendering-in-tinmop-p)
|
2022-02-25 16:37:43 +01:00
|
|
|
(program-events:with-enqueued-process ()
|
|
|
|
(ui:open-gemini-message-link-window :give-focus nil))))
|
2021-04-01 17:08:42 +02:00
|
|
|
(maybe-render-preformat-wrapper (file-stream wrapper-object)
|
2023-01-12 20:09:01 +01:00
|
|
|
(when (and (os-utils:open-resource-with-tinmop-p (download-iri wrapper-object))
|
|
|
|
(not gemini-format-p))
|
2023-01-11 19:10:51 +01:00
|
|
|
(let* ((preformat-line (format nil "~a~%" gemini-parser:+preformatted-prefix+))
|
2022-12-29 17:24:53 +01:00
|
|
|
(parsed-line (gemini-parser:parse-gemini-file preformat-line)))
|
|
|
|
(setf (parsed-lines wrapper-object)
|
|
|
|
(append (parsed-lines wrapper-object)
|
|
|
|
parsed-line))
|
|
|
|
(let ((preformat-wrapper-event (make-gemini-download-event preformat-line
|
|
|
|
parsed-line
|
|
|
|
wrapper-object
|
|
|
|
t)))
|
|
|
|
(maybe-render-line preformat-wrapper-event)
|
2023-01-11 19:10:51 +01:00
|
|
|
(write-sequence preformat-line file-stream)))))
|
2021-07-09 13:54:29 +02:00
|
|
|
(array->string (array remove-bom)
|
2022-07-02 10:55:11 +02:00
|
|
|
(let ((res (text-utils:to-s array :errorp nil)))
|
2021-07-09 13:54:29 +02:00
|
|
|
(if (and (string-not-empty-p res)
|
|
|
|
remove-bom
|
|
|
|
(char= (first-elt res)
|
|
|
|
#\ZERO_WIDTH_NO-BREAK_SPACE))
|
|
|
|
(subseq res 1)
|
2022-12-29 17:24:53 +01:00
|
|
|
res)))
|
|
|
|
(maybe-notify (message)
|
|
|
|
(when notify
|
|
|
|
(ui:notify message))))
|
2020-08-29 10:53:52 +02:00
|
|
|
(lambda ()
|
2021-11-05 11:13:05 +01:00
|
|
|
(gemini-parser:with-initialized-parser
|
2021-05-16 15:20:17 +02:00
|
|
|
(when-let ((extension (fs:get-extension path)))
|
|
|
|
(setf support-file (fs:temporary-file :extension extension)))
|
|
|
|
(with-open-support-file (file-stream support-file character)
|
|
|
|
(let* ((url (gemini-parser:make-gemini-iri host
|
|
|
|
path
|
|
|
|
:query query
|
|
|
|
:port port
|
|
|
|
:fragment fragment))
|
|
|
|
(url-header (format nil "~a ~a~2%" favicon url))
|
|
|
|
(parsed-url (gemini-parser:parse-gemini-file url-header))
|
|
|
|
(url-response (gemini-client:make-gemini-file-response nil
|
|
|
|
nil
|
|
|
|
nil
|
|
|
|
parsed-url
|
|
|
|
nil
|
|
|
|
""
|
|
|
|
nil))
|
|
|
|
(url-event (make-instance 'program-events:gemini-got-line-event
|
|
|
|
:wrapper-object wrapper-object
|
|
|
|
:payload url-response
|
2021-11-12 19:11:28 +01:00
|
|
|
:append-text nil))
|
|
|
|
(new-title-event (make-instance 'program-events:change-window-title-event
|
|
|
|
:payload url-header
|
|
|
|
:window *message-window*)))
|
2021-05-16 15:20:17 +02:00
|
|
|
(write-sequence url-header file-stream)
|
|
|
|
(increment-bytes-count wrapper-object url-header :convert-to-octects t)
|
2022-12-29 17:24:53 +01:00
|
|
|
(setf (parsed-lines wrapper-object)
|
|
|
|
(gemini-parser:parse-gemini-file url-header))
|
2021-11-12 19:11:28 +01:00
|
|
|
(maybe-change-title new-title-event)
|
2021-05-16 15:20:17 +02:00
|
|
|
(maybe-render-line url-event)
|
|
|
|
(maybe-render-preformat-wrapper file-stream wrapper-object)
|
|
|
|
(loop
|
|
|
|
named download-loop
|
2021-07-09 13:54:29 +02:00
|
|
|
for ct from 0
|
2022-11-25 18:32:13 +01:00
|
|
|
for line-as-array = (with-print-error-message
|
|
|
|
(read-line-into-array download-stream))
|
2021-05-16 15:20:17 +02:00
|
|
|
while line-as-array do
|
|
|
|
(gemini-client:debug-gemini "[stream] gemini file stream raw data line : ~a"
|
|
|
|
line-as-array)
|
|
|
|
(if (downloading-allowed-p wrapper-object)
|
2021-07-09 13:54:29 +02:00
|
|
|
(let* ((line (if (= ct 0)
|
|
|
|
(array->string line-as-array t)
|
|
|
|
(array->string line-as-array nil)))
|
2022-12-29 17:24:53 +01:00
|
|
|
(parsed-line (gemini-parser:parse-gemini-file line)))
|
2021-05-16 15:20:17 +02:00
|
|
|
(gemini-client:debug-gemini "[stream] gemini file stream got data line : ~a"
|
|
|
|
line)
|
|
|
|
(write-sequence line file-stream)
|
|
|
|
(increment-bytes-count wrapper-object line :convert-to-octects t)
|
2022-12-29 17:24:53 +01:00
|
|
|
(setf (parsed-lines wrapper-object)
|
|
|
|
(append (parsed-lines wrapper-object)
|
|
|
|
parsed-line))
|
|
|
|
(let ((event (make-gemini-download-event line
|
|
|
|
parsed-line
|
|
|
|
wrapper-object
|
|
|
|
t)))
|
|
|
|
(maybe-render-line event)))
|
2021-05-16 15:20:17 +02:00
|
|
|
(progn
|
|
|
|
(return-from download-loop nil))))
|
|
|
|
(maybe-render-preformat-wrapper file-stream wrapper-object)
|
2023-01-12 20:09:01 +01:00
|
|
|
(cond
|
|
|
|
((not (downloading-allowed-p wrapper-object))
|
2023-01-13 16:33:22 +01:00
|
|
|
(maybe-notify (_ "Gemini document downloading aborted")))
|
2023-01-12 20:09:01 +01:00
|
|
|
((rendering-in-tinmop-p)
|
|
|
|
(maybe-render-toc)
|
|
|
|
(maybe-render-links)
|
|
|
|
(maybe-render-focus-mark)
|
2023-01-13 16:33:22 +01:00
|
|
|
(maybe-notify (_ "Gemini document downloading completed"))
|
2023-01-12 20:09:01 +01:00
|
|
|
(setf (stream-status wrapper-object) :completed)
|
|
|
|
(when (and fragment
|
|
|
|
(swconf:config-gemini-fragment-as-regex-p))
|
2023-05-16 19:14:55 +02:00
|
|
|
(when-let* ((regex (fragment->regex fragment))
|
|
|
|
(priority program-events:+standard-event-priority+)
|
|
|
|
(event (make-instance 'program-events:search-message-gemini-fragment-event
|
|
|
|
:priority priority
|
|
|
|
:payload regex)))
|
2023-01-12 20:09:01 +01:00
|
|
|
(program-events:push-event event))))
|
2023-06-17 16:49:34 +02:00
|
|
|
(open-with-external-program
|
2023-01-12 20:09:01 +01:00
|
|
|
(os-utils:open-resource-with-external-program support-file nil)))
|
2021-05-16 15:20:17 +02:00
|
|
|
;; (allow-downloading wrapper-object)
|
|
|
|
(gemini-client:close-ssl-socket download-socket))))))))
|
2020-08-30 15:34:08 +02:00
|
|
|
;; (fs:delete-file-if-exists support-file)))))
|
2020-08-28 17:20:44 +02:00
|
|
|
|
|
|
|
(defun request-stream-other-document-thread (wrapper-object
|
|
|
|
socket
|
|
|
|
host
|
|
|
|
port
|
|
|
|
path
|
|
|
|
query
|
2020-12-25 15:03:39 +01:00
|
|
|
fragment
|
|
|
|
status-code
|
|
|
|
status-code-description
|
|
|
|
meta)
|
2020-07-26 13:29:24 +02:00
|
|
|
(declare (ignorable host
|
2020-12-25 15:03:39 +01:00
|
|
|
port path query fragment
|
2020-07-26 13:29:24 +02:00
|
|
|
status-code status-code-description meta))
|
2020-08-28 17:20:44 +02:00
|
|
|
(with-accessors ((download-socket download-socket)
|
|
|
|
(download-stream download-stream)
|
|
|
|
(octect-count octect-count)
|
|
|
|
(support-file support-file)) wrapper-object
|
|
|
|
(lambda ()
|
2021-04-01 17:08:42 +02:00
|
|
|
(when-let ((extension (fs:get-extension path)))
|
|
|
|
(setf support-file (fs:temporary-file :extension extension)))
|
2020-08-28 17:20:44 +02:00
|
|
|
(with-open-support-file (file-stream support-file)
|
2021-07-25 18:36:06 +02:00
|
|
|
(let ((partial-content-not-opened t))
|
2022-11-25 18:32:13 +01:00
|
|
|
(labels ((download-completed-p (buffer read-so-far)
|
|
|
|
(and buffer
|
|
|
|
(< read-so-far (length buffer))))
|
|
|
|
(opening-partial-contents-p (read-so-far)
|
|
|
|
(let ((buffer-size (swconf:link-regex->program-to-use-buffer-size path)))
|
|
|
|
(if buffer-size
|
|
|
|
(> read-so-far buffer-size)
|
|
|
|
(> read-so-far swconf:+buffer-minimum-size-to-open+))))
|
|
|
|
(%fill-buffer ()
|
|
|
|
(declare (optimize (debug 0) (speed 3)))
|
|
|
|
(when (downloading-allowed-p wrapper-object)
|
|
|
|
(multiple-value-bind (program-exists y wait-for-download)
|
|
|
|
(swconf:link-regex->program-to-use support-file)
|
|
|
|
(declare (ignore y))
|
|
|
|
(multiple-value-bind (buffer read-so-far)
|
|
|
|
(with-print-error-message
|
|
|
|
(read-array download-stream +read-buffer-size+))
|
2022-11-26 12:34:48 +01:00
|
|
|
(declare ((or null
|
|
|
|
(vector (unsigned-byte 8)))
|
|
|
|
buffer))
|
|
|
|
(declare ((or null fixnum) read-so-far))
|
2022-11-25 18:32:13 +01:00
|
|
|
(increment-bytes-count wrapper-object read-so-far)
|
|
|
|
(if (download-completed-p buffer read-so-far)
|
|
|
|
(progn
|
|
|
|
(write-sequence buffer file-stream :start 0 :end read-so-far)
|
|
|
|
(force-output file-stream)
|
|
|
|
(setf (stream-status wrapper-object) :completed)
|
|
|
|
(gemini-client:close-ssl-socket socket)
|
|
|
|
(when (or wait-for-download
|
|
|
|
partial-content-not-opened)
|
|
|
|
(os-utils:open-resource-with-external-program support-file
|
|
|
|
nil)))
|
|
|
|
(progn
|
|
|
|
(write-sequence buffer file-stream)
|
|
|
|
(when (and partial-content-not-opened
|
|
|
|
program-exists
|
|
|
|
(not wait-for-download)
|
|
|
|
(opening-partial-contents-p (octect-count wrapper-object)))
|
|
|
|
(setf partial-content-not-opened nil)
|
|
|
|
(os-utils:open-resource-with-external-program support-file
|
|
|
|
nil))
|
|
|
|
(%fill-buffer))))))))
|
|
|
|
(%fill-buffer)))))))
|
2020-07-26 13:29:24 +02:00
|
|
|
|
2021-02-07 12:39:28 +01:00
|
|
|
(defun request-success-dispatched-clrs (enqueue)
|
|
|
|
(lambda (status code-description meta response socket iri parsed-iri)
|
|
|
|
(labels ((starting-status (meta)
|
2021-04-01 17:08:42 +02:00
|
|
|
(if (or (gemini-client:gemini-file-stream-p meta)
|
|
|
|
(gemini-client:text-file-stream-p meta))
|
2021-02-07 12:39:28 +01:00
|
|
|
(if enqueue
|
|
|
|
:streaming
|
|
|
|
:rendering)
|
|
|
|
(if enqueue
|
|
|
|
:streaming
|
|
|
|
:running))))
|
|
|
|
(multiple-value-bind (actual-iri host path query port fragment)
|
|
|
|
(gemini-client:displace-iri parsed-iri)
|
|
|
|
(gemini-client:debug-gemini "response is a stream")
|
2021-04-01 17:08:42 +02:00
|
|
|
(labels ((make-text-based-stream (gemini-format-p)
|
|
|
|
(let* ((starting-status (starting-status meta))
|
|
|
|
(gemini-stream (make-instance 'gemini-file-stream
|
|
|
|
:host host
|
|
|
|
:port port
|
|
|
|
:path path
|
|
|
|
:query query
|
|
|
|
:fragment fragment
|
|
|
|
:meta meta
|
|
|
|
:status-code status
|
|
|
|
:status-code-description
|
|
|
|
code-description
|
|
|
|
:stream-status starting-status
|
|
|
|
:download-stream response
|
|
|
|
:download-socket socket))
|
|
|
|
(favicon (fetch-favicon parsed-iri))
|
|
|
|
(thread-fn (request-stream-gemini-document-thread gemini-stream
|
|
|
|
host
|
|
|
|
port
|
|
|
|
path
|
|
|
|
query
|
|
|
|
fragment
|
|
|
|
favicon
|
|
|
|
gemini-format-p))
|
|
|
|
(enqueue-event (make-instance 'program-events:gemini-enqueue-download-event
|
|
|
|
:payload gemini-stream)))
|
|
|
|
(program-events:push-event enqueue-event)
|
|
|
|
(downloading-start-thread gemini-stream
|
|
|
|
thread-fn
|
|
|
|
host
|
|
|
|
port
|
|
|
|
path
|
|
|
|
query
|
|
|
|
fragment))))
|
|
|
|
(cond
|
2023-07-07 14:45:05 +02:00
|
|
|
((gemini-client:absolute-titan-url-p iri)
|
|
|
|
(gemini-client:debug-gemini "response from titan nothing to do"))
|
2021-04-01 17:08:42 +02:00
|
|
|
((gemini-client:gemini-file-stream-p meta)
|
|
|
|
(gemini-client:debug-gemini "response is a gemini document stream")
|
2022-09-04 16:37:51 +02:00
|
|
|
(push-url-to-history specials:*message-window* actual-iri)
|
2021-04-01 17:08:42 +02:00
|
|
|
(make-text-based-stream t))
|
|
|
|
((gemini-client:text-file-stream-p meta)
|
|
|
|
(gemini-client:debug-gemini "response is a text stream")
|
|
|
|
(make-text-based-stream nil))
|
|
|
|
(t
|
|
|
|
(let* ((starting-status (starting-status meta))
|
|
|
|
(gemini-stream (make-instance 'gemini-others-data-stream
|
2023-03-16 15:13:44 +01:00
|
|
|
:host host
|
|
|
|
:port port
|
|
|
|
:path path
|
|
|
|
:query query
|
|
|
|
:fragment fragment
|
|
|
|
:meta meta
|
|
|
|
:status-code status
|
|
|
|
:status-code-description
|
|
|
|
code-description
|
2021-04-01 17:08:42 +02:00
|
|
|
:stream-status starting-status
|
|
|
|
:download-stream response
|
|
|
|
:download-socket socket))
|
|
|
|
(thread-fn (request-stream-other-document-thread gemini-stream
|
|
|
|
socket
|
|
|
|
host
|
|
|
|
port
|
|
|
|
path
|
|
|
|
query
|
|
|
|
fragment
|
|
|
|
status
|
|
|
|
code-description
|
|
|
|
meta))
|
|
|
|
(enqueue-event (make-instance 'program-events:gemini-enqueue-download-event
|
|
|
|
:payload gemini-stream)))
|
|
|
|
(gemini-client:debug-gemini "response is *not* a gemini file stream")
|
|
|
|
(program-events:push-event enqueue-event)
|
|
|
|
(downloading-start-thread gemini-stream
|
|
|
|
thread-fn
|
|
|
|
host
|
|
|
|
port
|
|
|
|
path
|
|
|
|
query
|
|
|
|
fragment)))))))))
|
2021-02-07 12:39:28 +01:00
|
|
|
|
2020-10-11 18:22:07 +02:00
|
|
|
(defun request (url &key
|
2023-07-07 14:45:05 +02:00
|
|
|
(titan-data nil)
|
|
|
|
(titan-mime nil)
|
|
|
|
(titan-size nil)
|
|
|
|
(titan-token nil)
|
2020-10-11 18:22:07 +02:00
|
|
|
(enqueue nil)
|
|
|
|
(certificate nil)
|
2020-10-23 20:57:17 +02:00
|
|
|
(certificate-key nil)
|
2020-12-17 13:12:16 +01:00
|
|
|
(use-cached-file-if-exists nil)
|
2021-04-03 11:14:58 +02:00
|
|
|
(do-nothing-if-exists-in-db nil))
|
2021-02-07 12:39:28 +01:00
|
|
|
(labels ((get-user-input (hide-input url prompt)
|
|
|
|
(multiple-value-bind (actual-iri host path query port fragment)
|
|
|
|
(gemini-client:displace-iri (iri:iri-parse url))
|
|
|
|
(declare (ignore actual-iri query fragment))
|
|
|
|
(flet ((on-input-complete (input)
|
|
|
|
(when (string-not-empty-p input)
|
|
|
|
(db-utils:with-ready-database (:connect nil)
|
|
|
|
(let ((encoded-input (maybe-percent-encode input)))
|
|
|
|
(request (gemini-parser:make-gemini-iri host
|
|
|
|
path
|
|
|
|
:query
|
|
|
|
encoded-input
|
|
|
|
:port port)
|
|
|
|
:certificate-key certificate-key
|
|
|
|
:certificate certificate
|
|
|
|
:do-nothing-if-exists-in-db nil))))))
|
|
|
|
(ui:ask-string-input #'on-input-complete
|
|
|
|
:priority
|
|
|
|
program-events:+minimum-event-priority+
|
|
|
|
:hide-input hide-input
|
|
|
|
:prompt (format nil
|
|
|
|
(_ "Server ~s asks: ~s ")
|
2021-02-02 20:58:23 +01:00
|
|
|
host
|
2021-02-07 12:39:28 +01:00
|
|
|
prompt)))))
|
|
|
|
(redirect-dispatch (status code-description meta response socket iri parsed-iri)
|
|
|
|
(declare (ignore status code-description response socket iri))
|
|
|
|
(gemini-client:debug-gemini "response redirect to: ~s" meta)
|
|
|
|
(flet ((on-input-complete (maybe-accepted)
|
|
|
|
(when (ui::boolean-input-accepted-p maybe-accepted)
|
2021-04-28 20:56:37 +02:00
|
|
|
(pop-url-from-history specials:*message-window*)
|
2021-11-15 18:17:21 +01:00
|
|
|
(when-let ((new-url (gemini-client:build-redirect-iri meta
|
|
|
|
parsed-iri)))
|
2021-02-07 12:39:28 +01:00
|
|
|
(db-utils:with-ready-database (:connect nil)
|
|
|
|
(request new-url
|
2021-02-07 12:57:12 +01:00
|
|
|
:enqueue enqueue
|
2021-02-07 12:39:28 +01:00
|
|
|
:certificate-key certificate-key
|
|
|
|
:certificate certificate))))))
|
|
|
|
(ui:ask-string-input #'on-input-complete
|
|
|
|
:priority program-events:+minimum-event-priority+
|
|
|
|
:prompt
|
|
|
|
(format nil
|
|
|
|
(_ "Redirects to ~s, follows redirect? [y/N] ")
|
|
|
|
meta))))
|
|
|
|
(input-dispatch (status code-description meta response socket iri parsed-iri)
|
|
|
|
(declare (ignore status code-description response socket parsed-iri))
|
|
|
|
(gemini-client:debug-gemini "response requested input: ~s" meta)
|
|
|
|
(get-user-input nil iri meta))
|
|
|
|
(sensitive-input-dispatch (status code-description meta response socket iri parsed-iri)
|
|
|
|
(declare (ignore status code-description response socket parsed-iri))
|
|
|
|
(gemini-client:debug-gemini "response requested sensitive input: ~s"
|
|
|
|
meta)
|
|
|
|
(get-user-input t iri meta))
|
|
|
|
(certificate-request-dispatch (status
|
|
|
|
code-description
|
|
|
|
meta
|
|
|
|
response
|
|
|
|
socket iri
|
|
|
|
parsed-iri)
|
|
|
|
(declare (ignore status code-description response socket meta parsed-iri))
|
|
|
|
(gemini-client:debug-gemini "response requested certificate")
|
|
|
|
(multiple-value-bind (cached-certificate cached-key)
|
|
|
|
(gemini-client:fetch-cached-certificate iri)
|
|
|
|
(request iri
|
|
|
|
:enqueue enqueue
|
|
|
|
:do-nothing-if-exists-in-db do-nothing-if-exists-in-db
|
|
|
|
:certificate-key cached-key
|
2023-07-07 14:45:05 +02:00
|
|
|
:certificate cached-certificate)))
|
|
|
|
(titan-upload-dispatch (url)
|
2023-08-04 13:58:57 +02:00
|
|
|
(let ((parsed (iri:iri-parse url)))
|
|
|
|
(values (gemini-client::remove-titan-parameters-from-path (uri:path parsed))
|
|
|
|
titan-data
|
|
|
|
titan-size
|
|
|
|
titan-mime
|
|
|
|
titan-token))))
|
2021-02-07 12:39:28 +01:00
|
|
|
(handler-case
|
|
|
|
(gemini-client:with-request-dispatch-table ((:certificate-requested
|
|
|
|
#'certificate-request-dispatch
|
|
|
|
:input-requested
|
|
|
|
#'input-dispatch
|
|
|
|
:sensitive-input-requested
|
|
|
|
#'sensitive-input-dispatch
|
|
|
|
:redirect
|
|
|
|
#'redirect-dispatch
|
|
|
|
:success
|
2023-07-07 14:45:05 +02:00
|
|
|
(request-success-dispatched-clrs enqueue)
|
|
|
|
:titan-upload
|
|
|
|
#'titan-upload-dispatch)
|
|
|
|
:ignore-warning nil)
|
2021-02-07 12:39:28 +01:00
|
|
|
(gemini-client:debug-gemini "viewer requesting iri ~s" url)
|
|
|
|
(maybe-initialize-metadata specials:*message-window*)
|
|
|
|
(let ((actual-iri (gemini-client:displace-iri (iri:iri-parse url))))
|
|
|
|
(if use-cached-file-if-exists
|
|
|
|
(progn
|
|
|
|
(gemini-client:debug-gemini "checking cache")
|
|
|
|
(if (find-db-stream-url actual-iri)
|
|
|
|
(progn
|
|
|
|
(gemini-client:debug-gemini "caching found for ~a" actual-iri)
|
2022-10-14 13:01:18 +02:00
|
|
|
(db-entry-to-foreground actual-iri)
|
|
|
|
(gemini-viewer:push-url-to-history specials:*message-window*
|
|
|
|
actual-iri))
|
2021-02-07 12:39:28 +01:00
|
|
|
(progn
|
|
|
|
(gemini-client:debug-gemini "caching *not* found for ~a" actual-iri)
|
|
|
|
(request actual-iri
|
2021-02-07 12:57:12 +01:00
|
|
|
:enqueue enqueue
|
2021-02-07 12:39:28 +01:00
|
|
|
:certificate-key certificate-key
|
|
|
|
:certificate certificate
|
|
|
|
:use-cached-file-if-exists nil
|
|
|
|
:do-nothing-if-exists-in-db
|
|
|
|
do-nothing-if-exists-in-db))))
|
|
|
|
(when (not (and do-nothing-if-exists-in-db
|
|
|
|
(find-db-stream-url actual-iri)))
|
|
|
|
(when (null enqueue)
|
|
|
|
(ensure-just-one-stream-rendering))
|
2021-06-18 21:17:14 +02:00
|
|
|
(gemini-client:request-dispatch url
|
|
|
|
gemini-client::dispatch-table
|
|
|
|
:certificate certificate
|
|
|
|
:certificate-key certificate-key)))))
|
2021-02-07 12:39:28 +01:00
|
|
|
(gemini-client:gemini-tofu-error (e)
|
2021-06-18 17:48:56 +02:00
|
|
|
(ui:ask-input-on-tofu-error e
|
|
|
|
(lambda ()
|
|
|
|
(request url
|
|
|
|
:enqueue enqueue
|
|
|
|
:certificate certificate
|
|
|
|
:certificate-key certificate-key
|
|
|
|
:do-nothing-if-exists-in-db
|
|
|
|
do-nothing-if-exists-in-db))))
|
2021-02-07 12:39:28 +01:00
|
|
|
(conditions:not-implemented-error (e)
|
|
|
|
(ui:notify (format nil (_ "Error: ~a") e)
|
|
|
|
:as-error t))
|
|
|
|
(gemini-client:gemini-protocol-error (e)
|
|
|
|
(ui:notify (format nil "~a" e)
|
|
|
|
:as-error t))
|
|
|
|
#-debug-mode
|
|
|
|
(error (e)
|
2021-11-06 12:32:03 +01:00
|
|
|
(ui:notify (format nil (_ "Error getting ~s: ~a") url e)
|
2022-06-29 21:26:29 +02:00
|
|
|
:as-error t))
|
|
|
|
#-debug-mode
|
|
|
|
(condition (c)
|
|
|
|
(ui:notify (format nil (_ "Error getting ~s: ~a") url c)
|
2021-02-07 12:39:28 +01:00
|
|
|
:as-error t)))))
|
2020-06-28 17:39:21 +02:00
|
|
|
|
|
|
|
(defun history-back (window)
|
|
|
|
(when-let* ((metadata (message-window:metadata window))
|
|
|
|
(history (misc:safe-all-but-last-elt (gemini-metadata-history metadata)))
|
|
|
|
(last (last-elt history)))
|
2022-08-28 13:22:08 +02:00
|
|
|
(setf (gemini-metadata-history metadata) history)
|
2020-06-29 12:29:11 +02:00
|
|
|
(ui:info-message (format nil (_ "Going back to: ~a") last))
|
2020-09-12 14:35:54 +02:00
|
|
|
(let ((found (find-db-stream-url last)))
|
|
|
|
(if found
|
2020-12-29 12:36:10 +01:00
|
|
|
(db-entry-to-foreground last)
|
2022-08-28 13:22:08 +02:00
|
|
|
(ui:open-net-address last))))) ; this happens history kept a non gemini iri
|
2020-07-15 12:40:30 +02:00
|
|
|
|
|
|
|
(defun view-source (window)
|
|
|
|
(when-let* ((metadata (message-window:metadata window))
|
|
|
|
(source (gemini-metadata-source-file metadata))
|
|
|
|
(last (misc:safe-last-elt (gemini-metadata-history metadata))))
|
2021-04-10 13:52:56 +02:00
|
|
|
(message-window:prepare-for-rendering window source)
|
2020-07-15 12:40:30 +02:00
|
|
|
(draw window)
|
2020-07-15 12:41:27 +02:00
|
|
|
(ui:info-message (format nil (_ "Viewing source of: ~a") last))))
|
2020-08-30 15:34:08 +02:00
|
|
|
|
|
|
|
(defclass gemini-streams-window (focus-marked-window
|
|
|
|
simple-line-navigation-window
|
|
|
|
title-window
|
|
|
|
border-window)
|
|
|
|
())
|
|
|
|
|
|
|
|
(defmethod refresh-config :after ((object gemini-streams-window))
|
|
|
|
(open-attach-window:refresh-view-links-window-config object
|
|
|
|
swconf:+key-open-gemini-stream-window+)
|
2021-03-27 09:33:55 +01:00
|
|
|
(let* ((win-w (truncate (* (win-width specials:*main-window*) 3/4)))
|
|
|
|
(win-h (truncate (* (win-height specials:*main-window*) 3/4)))
|
2020-08-30 15:34:08 +02:00
|
|
|
(x (truncate (- (/ (win-width specials:*main-window*) 2)
|
|
|
|
(/ win-w 2))))
|
|
|
|
(y (truncate (- (/ (win-height specials:*main-window*) 2)
|
|
|
|
(/ win-h 2)))))
|
|
|
|
(win-resize object win-w win-h)
|
|
|
|
(win-move object x y)
|
|
|
|
object))
|
|
|
|
|
|
|
|
(defmethod resync-rows-db ((object gemini-streams-window)
|
|
|
|
&key
|
|
|
|
(redraw t)
|
|
|
|
(suggested-message-index nil))
|
|
|
|
(with-accessors ((rows rows)
|
|
|
|
(selected-line-bg selected-line-bg)
|
|
|
|
(selected-line-fg selected-line-fg)) object
|
|
|
|
(flet ((make-rows (streams bg fg)
|
|
|
|
(mapcar (lambda (stream-object)
|
|
|
|
(let ((unselected-line (to-tui-string stream-object :window object)))
|
|
|
|
(make-instance 'line
|
|
|
|
:normal-text unselected-line
|
|
|
|
:selected-text (tui-string->chars-string unselected-line)
|
|
|
|
:fields stream-object
|
|
|
|
:normal-bg bg
|
|
|
|
:normal-fg fg
|
|
|
|
:selected-bg fg
|
|
|
|
:selected-fg bg)))
|
|
|
|
streams)))
|
|
|
|
(with-croatoan-window (croatoan-window object)
|
2021-04-08 15:13:31 +02:00
|
|
|
(line-oriented-window:update-all-rows object
|
|
|
|
(make-rows *gemini-streams-db*
|
|
|
|
selected-line-bg
|
|
|
|
selected-line-fg))
|
2020-08-30 15:34:08 +02:00
|
|
|
(when suggested-message-index
|
|
|
|
(select-row object suggested-message-index))
|
|
|
|
(when redraw
|
2020-09-11 15:40:25 +02:00
|
|
|
(win-clear object)
|
2020-08-30 15:34:08 +02:00
|
|
|
(draw object))))))
|
|
|
|
|
|
|
|
(defun open-gemini-stream-window ()
|
|
|
|
(let* ((low-level-window (make-croatoan-window :enable-function-keys t)))
|
2021-04-03 11:14:58 +02:00
|
|
|
(setf *gemini-streams-window*
|
2020-08-30 15:34:08 +02:00
|
|
|
(make-instance 'gemini-streams-window
|
|
|
|
:top-row-padding 0
|
|
|
|
:title (_ "Current gemini streams")
|
|
|
|
:single-row-height 1
|
|
|
|
:uses-border-p t
|
|
|
|
:keybindings keybindings:*gemini-downloads-keymap*
|
|
|
|
:croatoan-window low-level-window))
|
|
|
|
(refresh-config *gemini-streams-window*)
|
|
|
|
(resync-rows-db *gemini-streams-window* :redraw nil)
|
2021-04-08 15:13:31 +02:00
|
|
|
(when (not (line-oriented-window:rows-empty-p *gemini-streams-window*))
|
2020-08-30 15:34:08 +02:00
|
|
|
(select-row *gemini-streams-window* 0))
|
|
|
|
(draw *gemini-streams-window*)
|
|
|
|
*gemini-streams-window*))
|
2021-03-27 09:19:13 +01:00
|
|
|
|
2021-03-27 09:33:55 +01:00
|
|
|
(defun load-gemini-url (url &key
|
|
|
|
(priority program-events:+standard-event-priority+)
|
2021-04-03 11:14:58 +02:00
|
|
|
(give-focus-to-message-window t)
|
2021-05-16 16:19:14 +02:00
|
|
|
(use-cached-file-if-exists nil)
|
|
|
|
(enqueue nil))
|
2021-03-27 09:19:13 +01:00
|
|
|
"Load `url', that is a web resource or a local file. This function
|
|
|
|
can be used only when the event polling is enabled (e.g. from user
|
|
|
|
command) otherwise te actual code to get the resource will never be
|
|
|
|
executed."
|
|
|
|
(let* ((event (make-instance 'program-events:gemini-request-event
|
2021-03-27 09:33:55 +01:00
|
|
|
:give-focus-to-message-window give-focus-to-message-window
|
2021-06-17 15:23:24 +02:00
|
|
|
:priority priority
|
|
|
|
:use-cached-file-if-exists use-cached-file-if-exists
|
|
|
|
:enqueue enqueue
|
|
|
|
:url url)))
|
2021-03-27 09:19:13 +01:00
|
|
|
(program-events:push-event event)))
|
2023-07-07 14:45:05 +02:00
|
|
|
|
|
|
|
(defun post-titan-url (url data size mime token)
|
|
|
|
(let* ((event (make-instance 'program-events:titan-post-event
|
|
|
|
:data data
|
|
|
|
:data data
|
|
|
|
:size size
|
|
|
|
:mime mime
|
|
|
|
:token token
|
|
|
|
:url url)))
|
|
|
|
(program-events:push-event event)))
|