refactor publish and modify scripts to share utils

This commit is contained in:
sorrel 2024-01-18 12:38:14 -05:00
parent 7b9e5d2d18
commit 145127b430
4 changed files with 89 additions and 26 deletions

View file

@ -1,3 +1,9 @@
2024/01/17
- add html cache directories to build script
TODO:
- putting content in atom will require changing csv parsing;
that's for v2
2024/01/15 2024/01/15
- cache static logic - cache static logic
- START HERE: - START HERE:

View file

@ -8,7 +8,7 @@
(only-in racket/function thunk identity) (only-in racket/function thunk identity)
(only-in csv-reading csv->list) (only-in csv-reading csv->list)
(only-in xml read-xml) (only-in xml read-xml)
(only-in "./tool/utils.rkt" list->csv resource-link atom-table-entry add-atom-entry (only-in "./utils.rkt" list->csv resource-link atom-table-entry add-atom-entry
make-feed archive-file)) make-feed archive-file))
(define-namespace-anchor anc) (define-namespace-anchor anc)
@ -327,7 +327,7 @@
[desc (third res-row)] [desc (third res-row)]
[publish-time (hash-ref accumulator 'publish-time)] [publish-time (hash-ref accumulator 'publish-time)]
[new-table (add-atom-entry old-table [new-table (add-atom-entry old-table
(atom-table-entry l-head res-link desc publish-time update-time))]) (atom-table-entry l-head res-link desc publish-time #:update-time update-time))])
(hash-remove (hash-remove
(hash-remove (hash-remove
(hash-update (hash-update
@ -394,9 +394,4 @@
(displayln "modify was successful"))))) (displayln "modify was successful")))))
;(run modify) (run modify)
(run modify #("-i" "in-progress/now.txt"
"-l" "now"
"-r" "root"
"-x"))

View file

@ -5,7 +5,7 @@
(only-in racket/format ~a) (only-in racket/format ~a)
(only-in racket/list append* first second third fourth fifth rest flatten add-between take) (only-in racket/list append* first second third fourth fifth rest flatten add-between take)
(only-in xml xexpr->string) (only-in xml xexpr->string)
(only-in "./tool/utils.rkt" homepage list->csv add-atom-entry archive-file) (only-in "./utils.rkt" homepage list->csv add-atom-entry atom-table-entry make-feed archive-file)
csv-reading) csv-reading)
(define-namespace-anchor anc) (define-namespace-anchor anc)
@ -254,6 +254,7 @@
;; update tag table ;; update tag table
(displayln "updating tag table")
(define tag-table (csv->list (open-input-file (define tag-table (csv->list (open-input-file
(if x "publish-test/data/tagged.csv" "data/tagged.csv")))) (if x "publish-test/data/tagged.csv" "data/tagged.csv"))))
(define new-tag-table (write-new-tag-table tag-table t r res-id)) (define new-tag-table (write-new-tag-table tag-table t r res-id))
@ -263,11 +264,11 @@
(if x (if x
(write-new-tagged/index new-tag-table #:test #t) (write-new-tagged/index new-tag-table #:test #t)
(write-new-tagged/index new-tag-table))) (write-new-tagged/index new-tag-table)))
; (displayln new-tag-table)
(write-csv-to-file (list->csv new-tag-table) (write-csv-to-file (list->csv new-tag-table)
(if x "publish-test/data/tagged.csv" "data/tagged.csv")) (if x "publish-test/data/tagged.csv" "data/tagged.csv"))
(displayln "updating tagged/'tag")
;; update tagged/'tag for each tag ;; update tagged/'tag for each tag
(for-each (for-each
(lambda (tt-row) (lambda (tt-row)
@ -282,7 +283,7 @@
'()))) '())))
new-tag-table) new-tag-table)
(displayln "writing resource to file")
;; write to file ;; write to file
(if (port-try-file-lock? out 'exclusive) (if (port-try-file-lock? out 'exclusive)
(begin (begin
@ -292,9 +293,13 @@
(error "couldn't obtain file lock on ~a" out)) (error "couldn't obtain file lock on ~a" out))
;; update 'resource/index ;; update 'resource/index
(write-new-resource/index r new-res-table #:test (if x #t #f)) (if (equal? r "root")
(displayln "skipping resource/index")
(begin
(displayln "updating resource/index")
(write-new-resource/index r new-res-table #:test (if x #t #f))))
(displayln "updating feed table")
;; update feed table ;; update feed table
(define atom-table (csv->list (define atom-table (csv->list
(open-input-file (open-input-file
@ -304,20 +309,14 @@
(build-path "data" "atom")) (build-path "data" "atom"))
#".csv")))) #".csv"))))
(define new-atom-table (define new-atom-table
(add-atom-entry atom-table (list l (~a res-link) d publish-time))) (add-atom-entry atom-table (atom-table-entry l (~a res-link) d publish-time)))
(write-csv-to-file (list->csv new-atom-table) (write-csv-to-file (list->csv new-atom-table)
(if x "publish-test/data/atom.csv" "data/atom.csv")) (if x "publish-test/data/atom.csv" "data/atom.csv"))
;; update feed.atom ;; update feed.atom
;; for now, this does not include the html for the post, only a link ;; for now, this does not include the html for the post, only a link
(define feed ((eval (read (open-input-file (if x (displayln "updating feed")
"publish-test/data/make-atom.txt"
"data/make-atom.txt"))) ns)
"https://oxaliq.net/feed.atom"
publish-time
homepage
(rest new-atom-table)))
(define feed-out (define feed-out
(open-output-file (if x "publish-test/source/feed.atom" (open-output-file (if x "publish-test/source/feed.atom"
"source/feed.atom") "source/feed.atom")
@ -325,10 +324,14 @@
#:exists (if x 'replace 'error))) #:exists (if x 'replace 'error)))
(if (port-try-file-lock? feed-out 'exclusive) (if (port-try-file-lock? feed-out 'exclusive)
(begin (begin
(display (display
(string-append "<?xml version=\"1.0\" encoding=\"utf-8\"?>" (make-feed ns (open-input-file
(xexpr->string feed)) (if x
feed-out) "publish-test/data/make-atom.txt"
"data/make-atom.txt"))
new-atom-table
publish-time)
feed-out)
(port-file-unlock feed-out) (port-file-unlock feed-out)
(close-output-port feed-out)) (close-output-port feed-out))
(error "couldn't obtain file lock on ~a" feed-out)) (error "couldn't obtain file lock on ~a" feed-out))

59
utils.rkt Normal file
View file

@ -0,0 +1,59 @@
#lang racket
(provide (all-defined-out))
(require (only-in racket/list flatten add-between)
(only-in xml xexpr->string))
(define homepage "https://oxaliq.net")
;; takes a parsed table as a list of lists and formats for writing as a .csv file
(define (list->csv l)
(foldl (lambda (i res)
(string-append res i))
""
(flatten
(add-between (map (lambda (row)
(add-between row ","))
l)
"\n"))))
;; construct resource-link for use in atom feed
(define (resource-link resource-type resource-id #:homepage (hp homepage))
(if (equal? resource-type "root")
(build-path hp (~a resource-id))
(build-path hp resource-type (~a resource-id))))
(define (archive-file input-file test)
(if test
(copy-file input-file (string-replace input-file "in-progress" "publish-test/archive") #t)
(rename-file-or-directory input-file (string-replace input-file "in-progress" "archive"))))
;; atom-table utils
;; ----------------
;; atom-table-entry constructs new row to pass to add-atom-entry
(define (atom-table-entry headline resource-link desc publish-time #:update-time (update-time ""))
(list headline (~a resource-link) desc publish-time update-time))
;; add-atom-entry takes old atom table and new row, constructing new
;; atom table with only first 21 rows (or all rows)
(define (add-atom-entry atom-table new-row)
;; insert new-row after header
(let ([out-length (min (+ 1 (length atom-table)) 21)]
[header (first atom-table)]
[old-content (rest atom-table)])
(take (append (list header new-row) old-content)
out-length)))
;; ----------------
;; atom-feed utils
;; ---------------
(define (make-feed ns make-atom-input-port atom-table publish-time #:homepage (hp homepage))
(string-append "<?xml version=\"1.0\" encoding=\"utf-8\"?>"
(xexpr->string ((eval (read make-atom-input-port) ns)
"https://oxaliq.net/feed.atom"
publish-time
hp
(rest atom-table)))))
;; ---------------