unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
blob e58f48bcf0e11ebce7d2d8c68b51b6afb506af70 36205 bytes (raw)
name: lisp/gnus/nnatom.el 	 # note: path name is non-authoritative(*)

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
 
;;; nnatom.el --- Atom backend for Gnus -*- lexical-binding: t -*-

;; Copyright (C) 2023 Free Software Foundation, Inc.
;; Author: Daniel Semyonov <daniel@dsemy.com>

;; This file is part of GNU Emacs.

;; nnatom 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.

;; nnatom 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 nnatom.  If not, see <https://www.gnu.org/licenses/>.

;;; Commentary:

;; Gnus backend for HTTP or local feeds following the
;; Atom Syndication Format <https://www.ietf.org/rfc/rfc4287>.
;; Other types of feeds may be supported by providing custom parsing
;; functions.

;;; Code:

(eval-when-compile
  (require 'cl-lib)
  (require 'subr-x))

(require 'gnus)
(require 'nnheader)
(require 'nnoo)
(require 'gnus-group)
(require 'mm-url)
(require 'dom)

(defgroup nnatom nil
  "Atom backend for Gnus."
  :group 'gnus)

(nnoo-declare nnatom)

(defvoo nnatom-backend 'nnatom
  "Symbol which identifies this backend.")

(defvoo nnatom-status-string nil
  "Last status message reported by this backend.")

;;;; Atom feed parser:

(defun nnatom--read-feed (feed _)
  "Return a list structure representing FEED, or nil."
  (if (string-match-p "\\`https?://" feed)
      (nnheader-report
       nnatom-backend
       "Address shouldn't start with \"http://\" or \"https://\"")
    (with-temp-buffer
      (condition-case e
          (if (file-name-absolute-p feed)
              (insert-file-contents feed)
            (mm-url-insert-file-contents (concat "https://" feed)))
        (file-error (nnheader-report nnatom-backend (cdr e)))
        (:success (when-let ((data (if (libxml-available-p)
                                       (libxml-parse-xml-region
                                        (point-min) (point-max))
                                     (car (xml-parse-region
                                           (point-min) (point-max)))))
                             (auth (list 'authors)))
                    (when (eq (car data) 'top)
                      (setq data (assq 'feed data)))
                    (dom-add-child-before data auth)
                    (catch :stop ; Collect feed authors, stop at first entry.
                      (dolist (child (cdddr data))
                        (let ((tag (car-safe child)))
                          (if (eq tag 'entry)
                              (throw :stop data)
                            (and (or (eq tag 'author)
                                     (eq tag 'contributor))
                                 (dom-add-child-before auth child)))))
                      data)))))))

(defun nnatom--read-group (data)
  "Return the next group and the remaining DATA in a cons cell, or nil."
  `(,data))

(defun nnatom--read-article (data _)
  "Return the next article and the remaining DATA in a cons cell, or nil."
  (when (eq (car data) 'feed) (setq data (cddr data)))
  (while (and data (not (eq (car-safe (car data)) 'entry))) (pop data))
  (when-let ((article (car data))
             (auths (list 'authors)) (links (list 'links)))
    (dom-add-child-before article links)
    (dom-add-child-before article auths)
    (dolist (child (cddddr article) `(,article . ,(cdr data)))
      (pcase (car-safe child)                ; Authors and links can appear
        ((or 'author 'contributor)           ; anywhere in the entry so we
         (dom-add-child-before auths child)  ; collect them all here to
         (dom-add-child-before links child)) ; avoid looping over the
        ((or 'link                           ; entry multiple times later.
             (and 'content (guard (assq 'src (dom-attributes child)))))
         (dom-add-child-before links child))))))

(defun nnatom--read-title (group)
  "Return the title of GROUP, or nil."
  (dom-text (dom-child-by-tag group 'title)))

(defun nnatom--read-description (group)
  "Return the description of GROUP, or nil."
  (dom-text (dom-child-by-tag group 'subtitle)))

(defun nnatom--read-article-or-group-authors (article-or-group)
  "Return the authors of ARTICLE-OR-GROUP, or nil."
  (when-let
      ((a (string-trim-right
           (mapconcat (lambda (author)
                        (let* ((name
                                (dom-text (dom-child-by-tag author 'name)))
                               (name (unless (string-blank-p name) name))
                               (email
                                (dom-text (dom-child-by-tag author 'email)))
                               (email (unless (string-blank-p email) email)))
                          (concat
                           (or (and name email (format "%s <%s>" name email))
                               name email)
                           ", ")))
                      (dom-children
                       (dom-child-by-tag article-or-group 'authors)))
           ", "))
       ((not (string-blank-p a))))
    a))

(defun nnatom--read-subject (article)
  "Return the subject of ARTICLE, or nil."
  (dom-text (dom-child-by-tag article 'title)))

(defun nnatom--read-id (article)
  "Return the ID of ARTICLE.
If the ARTICLE doesn't contain an ID but it does contain a subject,
return the subject.  Otherwise, return nil."
  (or (dom-text (dom-child-by-tag article 'id))
      (nnatom--read-subject article)))

(defun nnatom--read-publish (article)
  "Return the date and time ARTICLE was published, or nil."
  (when-let (d (dom-child-by-tag article 'published))
    (date-to-time (dom-text d))))

(defun nnatom--read-update (article)
  "Return the date and time of the last update to ARTICLE, or nil."
  (when-let (d (dom-child-by-tag article 'updated))
    (date-to-time (dom-text d))))

(defun nnatom--read-links (article)
  "Return all links contained in ARTICLE, or nil."
  (let ((alt 0) (rel 0) (sel 0) (enc 0) (via 0) (aut 0))
    (mapcan
     (lambda (link)
       (when-let ((l (car-safe link)))
         (or
          (when-let (((eq l 'content))
                     (src (dom-attr link 'src))
                     (label (concat "Link"
                                    (and (< 1 (cl-incf alt))
                                         (format " %s" alt)))))
            `(((("text/plain") . ,(format "%s: %s\n" label src))
               (("text/html") . ,(format "<a href=\"%s\">[%s]</a> "
                                         src label)))))
          (when-let (((or (eq l 'author) (eq l 'contributor)))
                     (name (dom-text (dom-child-by-tag link 'name)))
                     (name (if (string-blank-p name)
                               (concat "Author"
                                       (and (< 1 (cl-incf aut))
                                            (format " %s" aut)))
                             name))
                     (uri (dom-text (dom-child-by-tag link 'uri)))
                     ((not (string-blank-p uri))))
            `(((("text/plain") . ,(format "%s: %s\n" name uri))
               (("text/html") . ,(format "<a href=\"%s\">[%s]</a> "
                                         uri name)))))
          (when-let (((eq l 'link))
                     (attrs (dom-attributes link))
                     (label (or (cdr (assq 'title attrs))
                                (pcase (cdr (assq 'rel attrs))
                                  ("related"
                                   (concat "Related"
                                           (and (< 1 (cl-incf rel))
                                                (format " %s" rel))))
                                  ("self"
                                   (concat "More"
                                           (and (< 1 (cl-incf sel))
                                                (format " %s" sel))))
                                  ("enclosure"
                                   (concat "Enclosure"
                                           (and (< 1 (cl-incf enc))
                                                (format " %s" enc))))
                                  ("via"
                                   (concat "Source"
                                           (and (< 1 (cl-incf via))
                                                (format " %s" via))))
                                  (_ (if-let
                                         ((lang (cdr (assq 'hreflang link))))
                                         (format "Link (%s)" lang)
                                       (concat
                                        "Link"
                                        (and (< 1 (cl-incf alt))
                                             (format " %s" alt))))))))
                     (link (cdr (assq 'href attrs))))
            `(((("text/plain") . ,(format "%s: %s\n" label link))
               (("text/html") . ,(format "<a href=\"%s\">[%s]</a> "
                                         link label))))))))
     (dom-children (dom-child-by-tag article 'links)))))

(defun nnatom--read-part (part type)
  (let* ((atypes '("html" "plain"))
         (mtypes '(("xhtml" . "text/html") ("text" . "text/plain")))
         (xsuff (concat "[+/]xml\\(-\\(dtd\\|external-parsed-entity\\)\\)?\\'"
                        "\\|^text"))
         (part (if (string= type "xhtml")
                   (with-temp-buffer
                     (dom-print (dom-child-by-tag part 'div) nil t)
                     (buffer-substring-no-properties
                      (point-min) (point-max)))
                 (dom-text part)))
         (type (if (member type atypes) (concat "text/" type) type))
         (type (or (cdr (assoc type mtypes)) type)))
    (unless (string-blank-p part)
      `(,part (Content-Type . ,(or type (setq type "text/plain")))
              ,(and (not (string-match-p xsuff type))
                    '(Content-Transfer-Encoding . "base64"))))))

(defun nnatom--read-parts (article)
  "Return all parts contained in ARTICLE, or an empty HTML part with links."
  (let* ((summary (dom-child-by-tag article 'summary))
         (stype (cdr (assq 'type (dom-attributes summary))))
         (summary (nnatom--read-part summary stype))
         (content (dom-child-by-tag article 'content))
         (ctype (cdr (assq 'type (dom-attributes content))))
         (content (nnatom--read-part content ctype))
         (st (string= stype ctype))
         parts)
    (cond ((and summary content)
           (and st (push summary parts))
           (push (append content '(links)) parts)
           (or st (push summary parts))
           parts)
          ((setq parts (or summary content))
           `(,(append (or summary content) '(links))))
          (t '((nil (Content-Type . "text/html") links))))))

;;;; Feed I/O:

(defvoo nnatom-read-feed-function #'nnatom--read-feed
  "Function returning a Lisp object representing a feed (or part of it).
It should accept two arguments, the address of a feed and the name of
a group (or nil).
If a group name is supplied, it should return a representation of only
the group (as if it was extracted from the feed with
`nnatom-read-group-function').")

(defvoo nnatom-read-group-function #'nnatom--read-group
  "Function returning a cons cell of a group and remaining data from a feed.")

(defvoo nnatom-read-article-function #'nnatom--read-article
  "Function returning a cons cell of an article and remaining data from a group.
It should accept a two arguments, a Lisp object representing a feed,
and a flag indicating whether the last article was stale (not new or updated).")

(defvoo nnatom-read-title-function #'nnatom--read-title
  "Function returning the title of a group (a string).
It should accept a single argument, a Lisp object representing a group.")

(defvoo nnatom-read-description-function #'nnatom--read-description
  "Function returning the description of a group (a string).
It should accept a single argument, a Lisp object representing a group.")

(defvoo nnatom-read-group-author-function
    #'nnatom--read-article-or-group-authors
  "Function returning the author of a group (a string).
It should accept a single argument, a Lisp object representing a group.")

(defvoo nnatom-read-id-function #'nnatom--read-id
  "Function returning the ID of an article.
It should accept a single argument, a Lisp object representing an article.")

(defvoo nnatom-read-subject-function #'nnatom--read-subject
  "Function returning the subject of an article (a string).
It should accept a single argument, a Lisp object representing an article.")

(defvoo nnatom-read-publish-date-function #'nnatom--read-publish
  "Function returning the publish date of an article (a time value).
It should accept a single argument, a Lisp object representing an article.")

(defvoo nnatom-read-update-date-function #'nnatom--read-update
  "Function returning the update date of an article (a time value).
It should accept a single argument, a Lisp object representing an article.")

(defvoo nnatom-read-author-function #'nnatom--read-article-or-group-authors
  "Function returning the author of an article (a string).
It should accept a single argument, a Lisp object representing an article.")

(defvoo nnatom-read-headers-function #'ignore
  "Function returning an alist of article-wide MIME headers.
Each element of this alist maps a MIME header (a symbol,
i.e. `Content-Type') to its value.  As a special case, `:boundary'
maps to a string which will serve as the boundary between article
parts.  This must be supplied if a custom boundary is used in a
multipart content type header.  The default boundary is \"-_nnatom_-\",
and is automatically modified to match the name of the back end.
It should accept a single argument, a Lisp object representing an article.")

(defvoo nnatom-read-links-function #'nnatom--read-links
  "Function returning all links contained in an article.
For the default `nnatom-print-content-function', it should return a
list of links, where each link is an alist mapping MIME content types
to links formatted for display in a part of that type.  Each content
type may also be a list of content types.
Otherwise, it could return any Lisp object.
It should accept a single argument, a Lisp object representing an article.")

(defvoo nnatom-read-parts-function #'nnatom--read-parts
  "Function returning an alist associating parts of an article to their headers.
For the default `nnatom-print-content-function', each part should be a
string.  Otherwise, it can be any Lisp object.  The \"headers\" of
each part should be a list where each element is either a cons of a
MIME header (a symbol, i.e. `Content-Type') and its value (a string),
or any other Lisp object.  MIME headers will be printed, the rest will
be passed on to `nnatom-print-content-function', which recognizes the
following extra data by default:
- `links', if present, will cause links to be printed in the part.
It should accept a single argument, a Lisp object representing an article.")

(defvoo nnatom-servers (make-hash-table :test 'equal)
  "Hash table mapping known servers to their groups.

Each value in this table should itself be a hash table mapping known
group names to their data, which should be a vector of the form
[GROUP IDS ARTICLES MAX MIN DESCRIPTION], where:
- GROUP is the \"real\" group name (the name known to the server).
- IDS is a hash table mapping article IDs to their numbers.
- ARTICLES is a hash table mapping article numbers to articles and
  their attributes (see `nnatom-group-articles').
- MAX is the maximum article number.
- MIN is the minimum article number.
- DESCRIPTION is the group description.")

(defvoo nnatom-group-names (make-hash-table :test 'equal)
  "Hash table mapping real group names to their custom name.")

(defun nnatom--server-file (server)
  "Return the file containing data for SERVER."
  (expand-file-name (format "%s/%s.eld"
                            (string-trim (symbol-name nnatom-backend)
                                         "nn")
                            (gnus-newsgroup-savable-name server))
                    gnus-directory))

(defun nnatom--read-server (server)
  "Read SERVER's information from `nnatom-directory'."
  (if-let ((f (nnatom--server-file server))
           ((file-readable-p f)))
      (with-temp-buffer
        (insert-file-contents f)
        (goto-char (point-min))
        (puthash server (read (current-buffer)) nnatom-servers))
    (nnheader-report nnatom-backend "Can't read %s" server)))

(defun nnatom--write-server (server)
  "Write SERVER's information to `nnatom-directory'."
  (if-let ((f (nnatom--server-file server))
           ((file-writable-p f)))
      (if-let ((s (gethash server nnatom-servers))
               ((hash-table-p s)))
          (with-temp-file f
            (insert ";;;; -*- mode: lisp-data -*- DO NOT EDIT\n")
            (prin1 s (current-buffer))
            (insert "\n")
            t)
        t)
    (nnheader-report nnatom-backend "Can't write %s" f)))

(defun nnatom--server-address (server)
  (if (string-suffix-p "-ephemeral" server)
      (setq server (or (cadr (assq (nnoo-symbol nnatom-backend 'address)
                                   (cddr (gnus-server-to-method
                                          (concat
                                           (symbol-name nnatom-backend) ":"
                                           server)))))
                       server))
    server))

(defun nnatom--parse-feed (feed &optional group)
  "Parse FEED into a new or existing server.
Optionally, only parse GROUP."
  (let* ((feed (nnatom--server-address feed))
         (s (or (gethash feed nnatom-servers) (nnatom--read-server feed)))
         (g (or (and (hash-table-p s) (gethash group s)) `[,group]))
         (name group) ; (Maybe) fake name
         (group (or (aref g 0) name)) ; Real name
         data)
    (when (setq data (funcall nnatom-read-feed-function feed group)
                s (or (gethash feed nnatom-servers)
                      (make-hash-table :test 'equal)))
      (while-let ((cg (or (and name `(,data))
                          (funcall nnatom-read-group-function data)))
                  (cg (prog1 (car cg) (setq data (cdr cg)))))
        (let* ((name (funcall nnatom-read-title-function cg)) ; Real name
               (group (gethash name nnatom-group-names name)) ; (Maybe) fake name
               (info (gnus-get-info
                      (concat (symbol-name nnatom-backend) "+" feed ":" group)))
               (g (or (gethash group s)
                      `[ ,name ,(make-hash-table :test 'equal)
                         ,(make-hash-table :test 'eql) nil 1 ""]))
               (desc (funcall nnatom-read-description-function cg))
               (ids (aref g 1))
               (articles (aref g 2))
               (max (aref g 3))
               (max (if max max
                      (setq max 0) ; Find max article number
                      (dolist      ; remembered by Gnus.
                          ( r (cons (gnus-info-read info)
                                    (gnus-info-marks info))
                            max)
                        (mapc (lambda (x)
                                (let ((x (if (consp x)
                                             (if (< (car x) (cdr x))
                                                 (cdr x) (car x))
                                           x)))
                                  (when (< max x) (setq max x))))
                              (if (symbolp (car r)) (cdr r) r)))))
               (group-author (funcall nnatom-read-group-author-function cg))
               stale)
          (and desc (aset g 5 desc))
          (while-let ((article (funcall nnatom-read-article-function cg stale))
                      (article (prog1 (car article) (setq cg (cdr article)))))
            (when-let ((id (funcall nnatom-read-id-function article))
                       (id (format "<%s@%s.%s>" id name nnatom-backend)))
              (let* ((num (gethash id ids))
                     (update (funcall nnatom-read-update-date-function article))
                     (prev-update (aref (gethash num articles
                                                 '[nil nil nil nil nil])
                                        4)))
                (if (or (null num) ; New article ID.
                        (and (null prev-update) update)
                        (and prev-update update
                             (time-less-p prev-update update)))
                    (let* ((num (or num (aset g 3 (cl-incf max))))
                           (publish (funcall nnatom-read-publish-date-function
                                             article)))
                      (setf
                       (gethash id (aref g 1)) num
                       (gethash num (aref g 2))
                       `[ ,id
                          ,(or (funcall nnatom-read-author-function article)
                               group-author group)
                          ,(or (funcall nnatom-read-subject-function article)
                               "no subject")
                          ,(or publish update '(0 0)) ; published
                          ,(or update publish '(0 0)) ; updated
                          ,(funcall nnatom-read-links-function article)
                          ,(funcall nnatom-read-parts-function article)
                          ,(funcall nnatom-read-headers-function article)]
                       stale nil))
                  (setq stale t)))))
          (puthash group g s)))
      (puthash feed s nnatom-servers))))

;;;; Gnus backend functions:

(defvoo nnatom-group nil
  "Name of the current group.")

(defvoo nnatom-group-article-ids (make-hash-table :test 'equal)
  "Hash table mapping article IDs to their article number.")

(defvoo nnatom-group-articles (make-hash-table :test 'eql)
  "Hash table mapping article numbers to articles and their attributes.

Each value in this table should be a vector of the form
[ID FROM SUBJECT DATE UPDATED LINKS PARTS HEADERS], where:
- ID is the ID of the article.
- FROM is the author of the article or group.
- SUBJECT is the subject of the article.
- DATE is the date the article was published, or last updated (time value).
- UPDATE is the date the article was last updated, or published (time value).
- LINKS is a collection of links (any Lisp object).
- PARTS is an alist associating the content of each part of the
  article to its headers.
- HEADERS is an alist associating article-wide MIME headers to their value.")

(defvoo nnatom-group-article-max-num 0
  "Maximum article number for the current group.")

(defvoo nnatom-group-article-min-num 1
  "Minimum article number for the current group.")

(defvar nnatom-date-format "%F %X"
  "Format of displayed dates.")

(nnoo-define-basics nnatom)

(defun nnatom--current-server-no-prefix ()
  (string-remove-prefix (concat (symbol-name nnatom-backend) "+")
                        (nnoo-current-server nnatom-backend)))

(defun nnatom--group-data (group &optional server)
  (let ((s (gethash server nnatom-servers)) c)
    (or (and (hash-table-p s) (gethash group s))
        (and (setq c (nnatom--current-server-no-prefix))
             (setq s (gethash c nnatom-servers))
             (hash-table-p s) (gethash group s))
        (catch :stop (maphash (lambda (n s)
                                (or (string= n server)
                                    (string= n c)
                                    (when-let (((hash-table-p s))
                                               (g (gethash group s)))
                                      (throw :stop g))))
                              nnatom-servers)))))

(defun nnatom-retrieve-article (article group)
  (if-let ((a (gethash article (aref group 2))))
      (insert (format "221 %s Article retrieved.
From: %s\nSubject: %s\nDate: %s\nMessage-ID: %s\n.\n"
                      article
                      (aref a 1)
                      (aref a 2)
                      (format-time-string nnatom-date-format (aref a 3))
                      (aref a 0)))
    (insert "404 Article not found.\n.\n")))

(deffoo nnatom-retrieve-headers (articles &optional group server _fetch-old)
  (if-let ((server (or server (nnatom--current-server-no-prefix)))
           (g (or (nnatom--group-data group server)
                  `[ nil ,nnatom-group-article-ids ,nnatom-group-articles
                     nil nil nil])))
      (with-current-buffer nntp-server-buffer
        (erase-buffer)
        (or (and (stringp (car articles))
                 (mapc (lambda (a)
                         (nnatom-retrieve-article
                          (gethash a (aref g 2)) g))
                       articles))
            (and (numberp (car articles))
                 (range-map (lambda (a) (nnatom-retrieve-article a g))
                            articles)))
        'headers)
    (nnheader-report nnatom-backend "Group %s not found" (or group ""))))

(deffoo nnatom-open-server (server &optional defs backend)
  (let ((backend (or backend 'nnatom))
        (a (nnatom--server-address server))
        s)
    (nnoo-change-server backend server defs)
    (when (setq s (or (gethash server nnatom-servers)
                      (nnatom--read-server a)))
      (maphash (lambda (group g)
                 (setq g (aref g 0))
                 (unless (string= group g)
                   (puthash group g nnatom-group-names)))
               s))
    (or s (file-writable-p (nnatom--server-file a))
        (and (nnoo-close-server nnatom-backend server)
             (nnheader-report
              nnatom-backend "Server file %s not readable or writable"
              server)))))

(deffoo nnatom-request-close ()
  (maphash (lambda (server _)
             (nnatom--write-server
              (nnatom--server-address server)))
           nnatom-servers)
  (setq nnatom-servers (make-hash-table :test 'equal)
        nnatom-status-string nil)
  t)

(defun nnatom--print-content (content attributes links)
  "Return CONTENT formatted according to ATTRIBUTES, possibly with LINKS added."
  (let ((links (and (memq 'links attributes) links)))
    (when (or content links)
      (concat
       (and content (format "%s\n\n" content))
       (mapconcat (lambda (link)
                    (cdr (assoc (cdr (assq 'Content-Type attributes)) link
                                (lambda (types type)
                                  (if (stringp types) (string= types type)
                                    (member type types))))))
                  links)))))

(defvoo nnatom-print-content-function #'nnatom--print-content
  "Function returning a single piece of content (a string).
It should accept three arguments, a part and its attributes (as returned
by `nnatom-read-parts-function'), and links.")

(defun nnatom--print-part (content headers mime links)
  (concat
   (mapconcat (lambda (header)
                (when-let ((m (car-safe header))
                           ((member m mime)))
                  (format "%s: %s\n" m (cdr header))))
              headers)
   "\n"
   (funcall nnatom-print-content-function content headers links)))

(deffoo nnatom-request-article (article &optional group server to-buffer)
  (if-let ((server (or server (nnatom--current-server-no-prefix)))
           (g (or (nnatom--group-data group server)
                  (and (setq group nnatom-group)
                       `[ nil ,nnatom-group-article-ids
                          ,nnatom-group-articles
                          ,nnatom-group-article-max-num
                          ,nnatom-group-article-min-num nil])))
           (num (or (and (stringp article)
                         (gethash article (aref g 1)))
                    (and (numberp article) article)))
           ((and (<= num (aref g 3))
                 (>= num (aref g 4))))
           (a (gethash num (aref g 2))))
      (with-current-buffer (or to-buffer nntp-server-buffer)
        (erase-buffer)
        (let* ((links (aref a 5))
               (parts (aref a 6))
               (headers (aref a 7))
               (boundary (or (cdr (assq :boundary headers))
                             (format "-_%s_-" nnatom-backend)))
               (multi (length> parts 1))
               (mime '( Content-Type Content-Disposition
                        Content-Transfer-Encoding)))
          (insert (format
                   "Subject: %s\nFrom: %s\nDate: %s\nMessage-ID: %s\n"
                   (aref a 2) (aref a 1)
                   (format-time-string
                    nnatom-date-format (or (aref a 3) '(0 0)))
                   (aref a 0))
                  (if (assq 'MIME-Version headers) "" "MIME-Version: 1.0\n")
                  (mapconcat (lambda (header)
                               (unless (keywordp (car header))
                                 (format "%s: %s\n" (car header) (cdr header))))
                             headers)
                  (if multi
                      (if (assq 'Content-Type headers) ""
                        (format
                         "Content-Type: multipart/alternative; boundary=%s\n"
                         boundary))
                    (prog1 (nnatom--print-part
                            (caar parts) (cdar parts) mime links)
                      (setq parts nil)))
                  (mapconcat (lambda (part)
                               (format "--%s\n%s\n" boundary
                                       (nnatom--print-part
                                        (car part) (cdr part) mime links)))
                             parts)
                  (if multi (format "--%s--" boundary) "\n")))
        `(,group . ,num))
    (nnheader-report nnatom-backend "No such article")))

(deffoo nnatom-request-group (group &optional server fast _info)
  (with-current-buffer nntp-server-buffer
    (erase-buffer)
    (if-let ((server (or server (nnatom--current-server-no-prefix)))
             (g (or (if fast (nnatom--group-data group server)
                      (setq server (nnatom--parse-feed server group))
                      (and (hash-table-p server) (gethash group server)))
                    `[ ,group ,(make-hash-table :test 'equal)
                       ,(make-hash-table :test 'eql) 0 1 ""])))
        (progn
          (setq nnatom-group group
                nnatom-group-article-ids (aref g 1)
                nnatom-group-articles (aref g 2)
                nnatom-group-article-max-num (aref g 3)
                nnatom-group-article-min-num (aref g 4))
          (insert (format "211 %s %s %s \"%s\""
                          (hash-table-count nnatom-group-article-ids)
                          nnatom-group-article-min-num
                          nnatom-group-article-max-num group))
          t)
      (insert "404 group not found")
      (nnheader-report nnatom-backend "Group %s not found" group))))

(deffoo nnatom-close-group (group &optional server)
  (and (string= group nnatom-group)
       (setq nnatom-group nil
             nnatom-group-article-ids (make-hash-table :test 'equal)
             nnatom-group-articles (make-hash-table :test 'eql)
             nnatom-group-article-max-num 0
             nnatom-group-article-min-num 1))
  (setq server (or server (nnatom--current-server-no-prefix)))
  (nnatom--write-server server))

(deffoo nnatom-request-list (&optional server)
  (with-current-buffer nntp-server-buffer
    (erase-buffer)
    (when-let ((p (point))
               (s (nnatom--parse-feed
                   (or server (nnatom--current-server-no-prefix))))
               ((hash-table-p s)))
      (maphash (lambda (group g)
                 (insert (format "\"%s\" %s %s y\n"
                                 group (aref g 3) (aref g 4))))
               s)
      (not (= (point) p)))))

(deffoo nnatom-request-post (&optional _server)
  (nnheader-report nnatom-backend "%s is a read only backend" nnatom-backend))

;;;; Optional back end functions:

(deffoo nnatom-retrieve-groups (_groups &optional server)
  (nnatom-request-list (or server (nnatom--current-server-no-prefix)))
  'active)

(deffoo nnatom-request-type (_group &optional _article)
  'unknown)

(deffoo nnatom-request-group-description (group &optional server)
  (when-let ((server (or server (nnatom--current-server-no-prefix)))
             (g (nnatom--group-data group server)))
    (with-current-buffer nntp-server-buffer
      (erase-buffer)
      (insert group "	" (aref g 5) "\n"))))

(deffoo nnatom-request-list-newsgroups (&optional server)
  (when-let ((server (or server (nnatom--current-server-no-prefix)))
             (s (gethash server nnatom-servers))
             ((hash-table-p s)))
    (with-current-buffer nntp-server-buffer
      (erase-buffer)
      (maphash (lambda (group g)
                 (insert group "	" (aref g 5) "\n"))
               s))))

(deffoo nnatom-request-rename-group (group new-name &optional server)
  (when-let ((server (or server (nnatom--current-server-no-prefix)))
             (s (or (gethash server nnatom-servers)
                    (and ; Open the server to add it to `nnatom-servers'
                     (save-match-data
                       (nnatom-open-server
                        server
                        (cdr ; Get defs and backend.
                         (assoc server (cdr (assq 'nnatom nnoo-state-alist))
                                (lambda (car key)
                                  (and (stringp car)
                                       (string-match
                                        (concat
                                         "\\(\\(nn[[:alpha:]]+\\)\\+\\)?"
                                         "\\(" (regexp-quote key) "\\)")
                                        car)
                                       (setq server car)))))
                        (prog1 (if (stringp (match-string 1 server))
                                   (intern (match-string 2 server))
                                 'nnatom)
                          (setq server (match-string 3 server))))
                       (gethash server nnatom-servers)))))
             (g (or (nnatom--group-data group server)
                    `[ ,group ,(make-hash-table :test 'equal)
                       ,(make-hash-table :test 'eql) nil 1 ""])))
    (puthash new-name g s)
    (puthash group new-name nnatom-group-names)
    (remhash group s)
    (and (string= group nnatom-group)
         (setq nnatom-group new-name))
    t))

(gnus-declare-backend (symbol-name nnatom-backend) 'address)

;;;; Utilities:

(defmacro nnatom-define-basic-backend-interface (backend)
  "Define a basic set of functions and variables for BACKEND."
  `(progn
     (defvoo ,(nnoo-symbol backend 'backend) ',backend nil nnatom-backend)
     (defvoo ,(nnoo-symbol backend 'status-string)
         nil nil nnatom-status-string)
     (defvoo ,(nnoo-symbol backend 'group) nil nil nnatom-group)
     (defvoo ,(nnoo-symbol backend 'servers)
         (make-hash-table :test 'equal) nil nnatom-servers)
     (defvoo ,(nnoo-symbol backend 'group-article-ids)
         (make-hash-table :test 'equal) nil nnatom-group-article-ids)
     (defvoo ,(nnoo-symbol backend 'group-articles)
         (make-hash-table :test 'eql) nil nnatom-group-articles)
     (defvoo ,(nnoo-symbol backend 'group-article-max-num) 0 nil
             nnatom-group-article-max-num)
     (defvoo ,(nnoo-symbol backend 'group-article-mix-num) 1 nil
             nnatom-group-article-min-num)
     ,@(mapcar (lambda (fun)
                 `(deffoo ,(nnoo-symbol backend fun) (&optional server)
	            (,(nnoo-symbol 'nnoo fun) ',backend server)))
	       '(server-opened status-message))
     (deffoo ,(nnoo-symbol backend 'open-server) (server &optional defs)
       (nnatom-open-server server defs ',backend))
     (nnoo-import ,backend (nnatom))))

(provide 'nnatom)

;;; nnatom.el ends here

debug log:

solving e58f48bcf0e ...
found e58f48bcf0e in https://yhetil.org/emacs-bugs/87bkgehsmw.fsf@dsemy.com/

applying [1/1] https://yhetil.org/emacs-bugs/87bkgehsmw.fsf@dsemy.com/
diff --git a/lisp/gnus/nnatom.el b/lisp/gnus/nnatom.el
new file mode 100644
index 00000000000..e58f48bcf0e

Checking patch lisp/gnus/nnatom.el...
Applied patch lisp/gnus/nnatom.el cleanly.

index at:
100644 e58f48bcf0e11ebce7d2d8c68b51b6afb506af70	lisp/gnus/nnatom.el

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).