;;; emacsconf-publish.el --- Publishing -*- lexical-binding: t; -*- ;; Copyright (C) 2021 Sacha Chua ;; Author: Sacha Chua ;; Keywords: multimedia ;; 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 . ;;; Commentary: ;; ;;; Code: (require 'emacsconf-schedule) (defcustom emacsconf-media-base-url "https://media.emacsconf.org/" "Base URL for published media files." :type 'string :group 'emacsconf) (defcustom emacsconf-main-extensions '(".webm" "--main.webm" "--main.org" ".org" ".odp" ".pdf" ".el" "--compressed56.webm" "--main.vtt" "--main_fr.vtt" "--main_ja.vtt" "--chapters.vtt" "--main--chapters.vtt" "--script.fountain") "Extensions to list on public pages." :type '(repeat string) :group 'emacsconf) (defcustom emacsconf-backstage-extensions '(".en.srv2" ".srt") "Extensions to list in the staging area." :group 'emacsconf) (defcustom emacsconf-public-media-directory (concat "/ssh:orga@media.emacsconf.org:/var/www/media.emacsconf.org/" emacsconf-year "/") "Can be over TRAMP" :type 'string :group 'emacsconf) (defun emacsconf-publish-update-talk (talk) "Publish the schedule page and the page for this talk." (interactive (list (emacsconf-complete-talk-info))) (when (functionp 'emacsconf-upcoming-insert-or-update) (emacsconf-upcoming-insert-or-update)) (let ((info (emacsconf-get-talk-info))) (emacsconf-publish-before-page talk info) (emacsconf-publish-after-page talk info) (emacsconf-publish-schedule info))) (defun emacsconf-publish-add-talk () "Add the current talk to the wiki." (interactive) (emacsconf-publish-update-talk) (emacsconf-publish-info-pages) (emacsconf-publish-schedule) (magit-status-setup-buffer emacsconf-directory)) (defun emacsconf-update-conf-html () "Update the schedules and export the page so I can easily review it." (interactive) (cl-letf* ((new-org (>= (string-to-number (org-version)) 9.5)) ;; Fix bug probably introduced by org 9.5, but not investigated ;; thoroughly. ((symbol-function 'org-src-mode--maybe-disable-indent-tabs-mode) (eval `(lambda () (when (or ,(when new-org '(not org-src--tab-width)) (= org-src--tab-width 0)) (setq indent-tabs-mode nil)))))) (let ((org-confirm-babel-evaluate (or (null emacsconf-allow-dangerous-stuff) org-confirm-babel-evaluate))) (org-update-all-dblocks) (org-babel-execute-buffer) (org-html-export-to-html)))) (defun emacsconf-regenerate-wiki (&optional force) (interactive) (when (let ((info (emacsconf-get-talk-info)) (force (or force (yes-or-no-p "Overwrite existing talk pages? ")))) (emacsconf-publish-info-pages info) (emacsconf-publish-schedule info) (emacsconf-publish-talk-pages info force) (magit-status emacsconf-directory)))) (declare-function 'emacsconf-ical-generate-all "emacsconf-ical") (defun emacsconf-update-schedule () "Change times for talks." (interactive) (emacsconf-publish-with-wiki-change (emacsconf-publish-info-pages) (emacsconf-publish-schedule) (emacsconf-ical-generate-all) (emacsconf-publish-schedule-org-files) (emacsconf-publish-watch-pages) (when (functionp 'emacsconf-pentabarf-generate) (emacsconf-pentabarf-generate)))) (defun emacsconf-update-and-publish () (interactive) (with-current-buffer (find-file-noselect emacsconf-org-file) (emacsconf-update-schedules) (emacsconf-upcoming-update-file) (emacsconf-update-schedules-in-wiki) (emacsconf-update-conf-html) (setq emacsconf-info (emacsconf-get-talk-info)))) (defun emacsconf-update-media () (interactive) (emacsconf-publish-public-index-on-wiki) (when emacsconf-public-media-directory (emacsconf-publish-public-index (expand-file-name "index.html" emacsconf-public-media-directory)) (emacsconf-generate-playlist (expand-file-name "index.m3u" emacsconf-public-media-directory) (concat emacsconf-name emacsconf-year) (emacsconf-public-talks emacsconf-info) (format "https://media.emacsconf.org/%s/" emacsconf-year))) (when emacsconf-backstage-dir (emacsconf-publish-backstage-index (expand-file-name "index.html" emacsconf-backstage-dir))) (emacsconf-generate-playlist (expand-file-name "index.m3u" emacsconf-backstage-dir) (concat emacsconf-name emacsconf-year) (emacsconf-filter-talks emacsconf-info) (format "https://media.emacsconf.org/%s/backstage/" emacsconf-year))) (defun emacsconf-index-card (talk &optional extensions) "Format an HTML card for TALK, linking the files in EXTENSIONS." (let* ((video-slug (plist-get talk :video-slug)) (video-file (or (plist-get talk :video-file) (and video-slug (emacsconf-get-preferred-video (plist-get talk :video-slug) (plist-get talk :files))))) (video (and video-slug (emacsconf-index-card-video (or (plist-get talk :video-id) (concat (plist-get talk :slug) "-mainVideo")) video-file talk extensions)))) ;; Add extra information to the talk (setq talk (append talk (list :video-html (or (plist-get video :video) "") :chapter-list (or (plist-get video :chapter-list) "") :resources (or (plist-get video :resources) "") :extra (or (plist-get talk :extra) "") :speaker-info (or (plist-get talk :speakers-with-pronouns) "")))) (if (eq (plist-get talk :format) 'wiki) (plist-get talk :video-html) (emacsconf-replace-plist-in-string talk "
${video-html}
${extra}
${resources}${chapter-list}
")))) ;; (emacsconf-publish-format-track-as-org (car emacsconf-tracks) "US/Eastern") ;; (emacsconf-get-talk-info) (defun emacsconf-publish-format-track-as-org (track tz &optional info) (setq info (or info (emacsconf-prepare-for-display (emacsconf-get-talk-info)))) (concat "** " (plist-get track :name) " :" (plist-get track :id) ":\n:PROPERTIES:\n:CATEGORY: " (plist-get track :id) "\n:END:\n" (mapconcat (lambda (talk) (concat "*** " (plist-get talk :title) "\n" "<" (format-time-string (cdr org-time-stamp-formats) (plist-get talk :start-time) tz) ">\n" (emacsconf-surround "- " (plist-get talk :speakers-with-pronouns) "\n" "") (emacsconf-surround "- " (plist-get talk :absolute-url) "\n" "") (emacsconf-surround "- Etherpad: " (plist-get talk :pad-url) "\n" "") (emacsconf-surround "- Q&A: " (plist-get talk :qa-info) "\n" "") (emacsconf-surround "\n" (plist-get talk :intro-note) "\n" ""))) (emacsconf-filter-talks-by-track track info) "\n"))) (defun emacsconf-publish-schedule-org-for-timezone (timezone &optional info) (interactive (list (completing-read "Timezone: " emacsconf-timezones))) (let ((new-filename (expand-file-name (concat "schedule-" (replace-regexp-in-string "[^a-z]+" "-" (downcase timezone)) ".org") (expand-file-name "schedules" emacsconf-public-media-directory)))) (unless (file-directory-p (file-name-directory new-filename)) (make-directory (file-name-directory new-filename))) (with-temp-file new-filename (insert "* " emacsconf-name " " emacsconf-year "\n\nTimes are in " timezone " timezone. You can find this file and other calendars at " emacsconf-media-base-url emacsconf-year "/schedules/ .\n\n" (mapconcat (lambda (track) (emacsconf-publish-format-track-as-org track timezone info)) emacsconf-tracks "\n"))))) (defun emacsconf-publish-schedule-org-files (&optional info) (interactive) (setq info (or info (emacsconf-prepare-for-display (emacsconf-get-talk-info)))) (mapc (lambda (tz) (emacsconf-publish-schedule-org-for-timezone tz info)) emacsconf-timezones)) (defun emacsconf-publish-format-res-talks (info) (mapconcat (lambda (o) (concat "" (format "" (plist-get o :slug)) (plist-get o :qa-link) "" "" (if (plist-get o :pad-url) (format "Open pad" (plist-get o :pad-url)) "") "" "" (format "Open chat" (plist-get o :webchat-url)) "" "" "" (format-time-string "%-l:%M" (plist-get o :start-time) emacsconf-timezone) "" "" (or (plist-get o :slug) "") "" "" (or (plist-get o :title) "") "" "")) info "\n")) (defun emacsconf-publish-res-index () "Publish BBB room URLs and pad links for volunteer convenience." (interactive) (let ((emacsconf-use-absolute-url t) (emacsconf-base-url "") (info (mapcar (lambda (o) (append (list :url (concat "#" (plist-get o :slug))) (if (and (string-match "live" (or (plist-get o :q-and-a) "")) (plist-get o :bbb-room)) (append (list :qa-link (format "Join Q&A" (plist-get o :bbb-room))) o) o))) (emacsconf-prepare-for-display (emacsconf-get-talk-info))))) (mapc (lambda (track) (let* ((track-talks (seq-filter (lambda (o) (string= (plist-get o :track) (plist-get track :name))) info)) (result (concat "
" (with-temp-buffer (svg-print (emacsconf-schedule-svg 800 300 info)) (buffer-string)) "

" (plist-get track :name) "

" "" (emacsconf-publish-format-res-talks (emacsconf-prepare-for-display (emacsconf-filter-talks-by-time (format "2022-12-03T08:00:00%s" emacsconf-timezone-offset) (format "2022-12-03T18:00:00%s" emacsconf-timezone-offset) track-talks))) "" (emacsconf-publish-format-res-talks (emacsconf-prepare-for-display (emacsconf-filter-talks-by-time (format "2022-12-04T08:00:00%s" emacsconf-timezone-offset) (format "2022-12-04T18:00:00%s" emacsconf-timezone-offset) track-talks))) "
Saturday
Sunday
"))) (with-temp-file (expand-file-name (format "index-%s.html" (plist-get track :id)) emacsconf-res-dir) (insert result)) (with-temp-file (expand-file-name (format "index-%s.html" (plist-get track :id)) emacsconf-backstage-dir) (insert result)))) emacsconf-tracks))) (defun emacsconf-index-card-video (video-id video-file talk extensions) (let* ((video-base (and video-file (replace-regexp-in-string "reencoded\\|original" "main" (file-name-base video-file)))) (chapter-info (and video-file (emacsconf-make-chapter-strings (expand-file-name (concat video-base "--chapters.vtt") emacsconf-cache-dir) (plist-get talk :track-base-url) video-id))) (info (append (list :source-src (when video-file (if (plist-get talk :public) (format "%s%s/%s" emacsconf-media-base-url (plist-get talk :conf-year) (file-name-nondirectory video-file)) (file-name-nondirectory video-file))) :captions (and video-file (plist-get talk :captions-edited) (let ((tracks (emacsconf-video-subtitle-tracks (concat (replace-regexp-in-string "reencoded\\|original" "main" video-base) ".vtt") (or (plist-get talk :track-base-url) (plist-get talk :base-url)) (plist-get talk :files)))) (cond ((zerop (length tracks)) "") ((eq (plist-get talk :format) 'wiki) (format "captions=\"\"\"%s\"\"\"" tracks)) (t tracks)))) :chapter-track (or (plist-get chapter-info :track) "") :chapter-list (if chapter-info (if (eq (plist-get talk :format) 'wiki) (format "[[!template id=\"chapters\" vidid=\"%s\" data=\"\"\"\n%s\n\"\"\"]]" video-id (plist-get chapter-info :md)) (plist-get chapter-info :html)) "") :video-id video-id :video-file-size (if (and video-file (file-exists-p video-file)) (file-size-human-readable (file-attribute-size (file-attributes video-file)))) :other-files (mapconcat (lambda (s) (if (eq (plist-get talk :format) 'wiki) (concat s " \n") (concat "
  • " s "
  • "))) (emacsconf-link-file-formats-as-list talk (or extensions emacsconf-main-extensions)) "") :poster (and video-file (format "https://media.emacsconf.org/%s/%s.png" (plist-get talk :conf-year) (file-name-base video-file))) :toobnix-info (if (plist-get talk :toobnix-url) (format (if (eq (plist-get talk :format) 'wiki) "[View on Toobnix](%s) \n" "
  • View on Toobnix
  • ") (plist-get talk :toobnix-url)) "") :transcript-link (if (and (plist-get talk :public) (plist-get talk :captions-edited)) (format "[View transcript](%s#%s-transcript) \n" (plist-get talk :absolute-url) video-id) "")) talk))) (list :video (emacsconf-replace-plist-in-string info (if video-file (if (eq (plist-get talk :format) 'wiki) "[[!template id=\"vid\" vidid=\"${video-id}\" src=\"${source-src}\" poster=\"${poster}\" ${captions} size=\"${video-file-size}\" duration=\"${video-duration}\" other_resources=\"\"\"${other-files}${transcript-link}${toobnix-info}\"\"\"]] ${chapter-list} " "${chapter-list}") "The video for \"${title}\" will be posted here when available. You can also subscribe to the emacsconf-discuss mailing list for updates.")) :resources (emacsconf-replace-plist-in-string (append info (list :video-download (if video-file (emacsconf-replace-plist-in-string info "
  • Download video (${video-duration}, ${video-file-size}B)
  • ") ""))) "
      ${video-download}${other-files}${toobnix-info}
    ")))) (defun emacsconf-format-public-email (o &optional email) (format "[%s](mailto:%s?subject=%s)" (or email (plist-get o :public-email)) (or email (plist-get o :public-email)) (url-hexify-string (format "Comment for EmacsConf 2022 %s: %s" (plist-get o :slug) (plist-get o :title))))) (defun emacsconf-format-speaker-info (o) (let ((extra-info (mapconcat #'identity (delq nil (list (unless (string= (plist-get o :pronunciation) "nil") (plist-get o :pronunciation)) (when (plist-get o :irc) (format "IRC: %s" (plist-get o :irc))) (when (plist-get o :public-email) (format "" (plist-get o :public-email))))) ", "))) (concat (plist-get o :speakers-with-pronouns) (if (> (length extra-info) 0) (concat " - " extra-info) "")))) (defun emacsconf-publish-talk-page (o &optional force) "Draft the talk page for O unless the page already exists or FORCE is non-nil." (interactive (list (emacsconf-get-talk-info-for-subtree) (> (prefix-numeric-value current-prefix-arg) 1))) (let ((filename (expand-file-name (format "%s.md" (plist-get o :slug)) (expand-file-name "talks" (expand-file-name emacsconf-year emacsconf-directory))))) (unless (file-directory-p (expand-file-name "talks" (expand-file-name emacsconf-year emacsconf-directory))) (mkdir (expand-file-name "talks" (expand-file-name emacsconf-year emacsconf-directory)))) (when (or force (null (file-exists-p filename))) (with-temp-file filename (insert (emacsconf-replace-plist-in-string (emacsconf-convert-talk-abstract-to-markdown (append o (list :speaker-info (emacsconf-format-speaker-info o) :meta "!meta" :categories (if (plist-get o :categories) (mapconcat (lambda (o) (format "[[!taglink %s]]" o)) (plist-get o :categories) " ") "")))) "[[${meta} title=\"${title}\"]] [[${meta} copyright=\"Copyright © ${year} ${speakers}\"]] [[!inline pages=\"internal(${year}/info/${slug}-nav)\" raw=\"yes\"]] \n # ${title} ${speaker-info} [[!inline pages=\"internal(${year}/info/${slug}-before)\" raw=\"yes\"]] ${abstract-md} [[!inline pages=\"internal(${year}/info/${slug}-after)\" raw=\"yes\"]] [[!inline pages=\"internal(${year}/info/${slug}-nav)\" raw=\"yes\"]] ${categories} ")))))) (defun emacsconf-publish-talk-pages (emacsconf-info force) (interactive (list (emacsconf-get-talk-info) (> (prefix-numeric-value current-prefix-arg) 1))) "Populate year/talks/*.md files. These should include the nav and schedule files, which will be rewritten as needed. After they are generated, they should be all right to manually edit to include things like additional resources." (mapc (lambda (o) (emacsconf-publish-talk-page o force)) (emacsconf-filter-talks emacsconf-info))) (defun emacsconf-wiki-talk-resources (o) (setq o (append (list :format 'wiki :base-url (concat emacsconf-media-base-url (plist-get o :conf-year) "/") :track-base-url (format "/%s/captions/" (plist-get o :conf-year))) o)) (concat (if (plist-get o :qa-public) "# Talk\n\n" "") (emacsconf-index-card o emacsconf-main-extensions) (if (plist-get o :qa-public) (concat "\n\n# Q&A\n\n" (emacsconf-index-card (append (list :public 1 :video-id (concat (plist-get o :slug) "-qanda") :toobnix-url nil :video-file (expand-file-name (concat (file-name-sans-extension (plist-get o :video-slug)) "--answers.webm") emacsconf-cache-dir)) o) (list "--answers.vtt" "--answers--chapters.vtt" "--answers--compressed32.webm"))) ""))) (defun emacsconf-publish-webchat-link (o) (let ((track (emacsconf-get-track (plist-get o :track)))) (format "#emacsconf-%s" emacsconf-chat-base (plist-get track :id) (plist-get track :id)))) (defvar emacsconf-publish-include-pads t "When non-nil, include Etherpad info.") (defun emacsconf-format-talk-schedule-info (o) (let ((friendly (concat "/" emacsconf-year "/talks/" (plist-get o :slug) )) (timestamp (org-timestamp-from-string (plist-get o :scheduled)))) (emacsconf-replace-plist-in-string (append o (list :format (concat (or (plist-get o :video-duration) (concat (plist-get o :duration) "-min talk")) (if (plist-get o :q-and-a) (format " followed by %s Q&A (%s) " (plist-get o :q-and-a) (if (string-match "live" (plist-get o :q-and-a)) (if (eq 'after (emacsconf-bbb-status o)) "done" (format "" (plist-get o :slug))) (emacsconf-publish-webchat-link o))) "")) :pad-info (if emacsconf-publish-include-pads (format "Pad: \n" emacsconf-year (plist-get o :slug)) "") :status-info (if (member emacsconf-publishing-phase '(program schedule)) (format "Status: %s \n" (plist-get o :status-label)) "") :schedule-info (if (and (member emacsconf-publishing-phase '(program schedule)) (not (emacsconf-talk-all-done-p o)) (not (string= (plist-get o :status) "CANCELLED"))) (let ((start (org-timestamp-to-time (org-timestamp-split-range timestamp))) (end (org-timestamp-to-time (org-timestamp-split-range timestamp t)))) (format "
    Times in different timezones:
    %s
    %s
    " (format-time-string "%Y-%m-%dT%H:%M:%SZ" start t) (format-time-string "%Y-%m-%dT%H:%M:%SZ" end t) (emacsconf-timezone-string o emacsconf-timezone) (string-join (emacsconf-timezone-strings o (seq-filter (lambda (zone) (string= emacsconf-timezone zone)) emacsconf-timezones)) "
    ") emacsconf-year (plist-get (emacsconf-get-track (plist-get o :track)) :id))) ""))) (concat "[[!toc ]] Format: ${format} ${pad-info}${status-info}${schedule-info}\n" (if (plist-get o :alternate-apac) (format "[[!inline pages=\"internal(%s/inline-alternate)\" raw=\"yes\"]] \n" emacsconf-year) "") "\n" (if (plist-get o :public) (emacsconf-wiki-talk-resources o) "") "\n# Description\n")))) (defun emacsconf-format-email-questions-and-comments (talk) (format "Questions or comments? Please e-mail %s" (emacsconf-format-public-email talk (or (and (string= (plist-get talk :public-email) "t") (plist-get talk :email)) (plist-get talk :public-email) "emacsconf-org-private@gnu.org")))) (defun emacsconf-publish-captions-in-wiki (talk) "Copy the captions file." (interactive (list (emacsconf-complete-talk-info))) (unless (file-directory-p (expand-file-name "captions" (expand-file-name emacsconf-year emacsconf-directory))) (make-directory (expand-file-name "captions" (expand-file-name emacsconf-year emacsconf-directory)))) (let ((filename (expand-file-name (concat (plist-get talk :video-slug) "--main.vtt") (expand-file-name "captions" (expand-file-name emacsconf-year emacsconf-directory)))) (cached-file (expand-file-name (concat (plist-get talk :video-slug) "--main.vtt") emacsconf-cache-dir))) (when (and (file-exists-p cached-file) (or (not (file-exists-p filename)) (file-newer-than-file-p cached-file filename))) (copy-file cached-file filename t)))) (defun emacsconf-publish-before-page (talk &optional info) "Info included before the abstract." (interactive (list (emacsconf-complete-talk-info))) (setq info (or info (emacsconf-prepare-for-display (emacsconf-get-talk-info)))) (with-temp-file (expand-file-name (format "%s-before.md" (plist-get talk :slug)) (expand-file-name "info" (expand-file-name emacsconf-year emacsconf-directory))) (insert "\n") (insert (emacsconf-surround "" (plist-get talk :intro-note) "\n\n" "")) (let ((is-live (emacsconf-talk-live-p talk))) (when is-live (emacsconf-publish-captions-in-wiki talk)) (when (eq emacsconf-publishing-phase 'schedule) (insert "\n" (format "
    \n" (plist-get talk :slug)) (let* ((width 800) (height 150) (talk-date (format-time-string "%Y-%m-%d" (plist-get talk :start-time) emacsconf-timezone)) (start (date-to-time (concat talk-date "T" emacsconf-schedule-start-time emacsconf-timezone-offset))) (end (date-to-time (concat talk-date "T" emacsconf-schedule-end-time emacsconf-timezone-offset))) svg) (with-temp-buffer (setq svg (emacsconf-schedule-svg-day (svg-create width height) (format-time-string "%A" (plist-get talk :start-time) emacsconf-timezone) width height start end (emacsconf-by-track (seq-filter (lambda (o) (string= (format-time-string "%Y-%m-%d" (plist-get o :start-time) emacsconf-timezone) talk-date)) info)))) (mapc (lambda (node) (let ((rect (car (dom-by-tag node 'rect)))) (if (string= (dom-attr node 'data-slug) (plist-get talk :slug)) (progn (dom-set-attribute rect 'opacity "0.8") (dom-set-attribute rect 'stroke-width "3") (dom-set-attribute (car (dom-by-tag node 'text)) 'font-weight "bold")) (dom-set-attribute rect 'opacity "0.5")))) (dom-by-tag svg 'a)) (svg-print svg) (buffer-string))) "\n
    \n" "\n" (emacsconf-format-talk-schedule-info talk) "\n\n" ))) ;; Contact information ;; (insert "\n\n" (emacsconf-format-email-questions-and-comments talk) "\n") (insert ""))) (defun emacsconf-format-transcript-from-list (subtitles paragraphs video-id &optional lang) "Return subtitle directives for SUBTITLES split by PARAGRAPHS." (when (stringp subtitles) (setq subtitles (subed-parse-file subtitles))) (when (stringp paragraphs) (setq paragraphs (subed-parse-file paragraphs))) (mapconcat (lambda (sub) (let ((msecs (elt sub 1))) (format "[[!template %stext=\"%s\" start=\"%s\" video=\"%s\" id=\"subtitle\"%s]]" (if (and paragraphs (>= msecs (elt (car paragraphs) 1))) (progn (while (and paragraphs (>= (elt sub 1) (elt (car paragraphs) 1))) (setq paragraphs (cdr paragraphs))) "new=\"1\" ") "") (replace-regexp-in-string "\"" """ (elt sub 3)) (concat (format-seconds "%02h:%02m:%02s" (/ (floor msecs) 1000)) "." (format "%03d" (mod (floor msecs) 1000))) video-id (emacsconf-surround " lang=\"" lang "\"" "")))) subtitles "\n")) (defun emacsconf-format-transcript (talk &optional video-id) "Format the transcript for TALK, adding paragraph markers when possible." (require 'subed) (let* ((paragraphs (expand-file-name (concat (plist-get talk :video-slug) "--main--paragraphs.vtt") emacsconf-cache-dir)) (chapters (expand-file-name (concat (plist-get talk :video-slug) "--main--chapters.vtt") emacsconf-cache-dir)) (subtitles (subed-parse-file (expand-file-name (concat (plist-get talk :video-slug) "--main.vtt") emacsconf-cache-dir))) (pars (or (subed-parse-file paragraphs) (subed-parse-file chapters)))) (if subtitles (format " # Transcript %s " (plist-get talk :slug) (or video-id "mainVideo") (emacsconf-format-transcript-from-list subtitles pars (concat "mainVideo-" (plist-get talk :slug)))) ""))) (defun emacsconf-publish-after-page (talk &optional info) "Info included before the abstract." (interactive (list (emacsconf-complete-talk-info))) ;; Contact information (with-temp-file (expand-file-name (format "%s-after.md" (plist-get talk :slug)) (expand-file-name "info" (expand-file-name emacsconf-year emacsconf-directory))) (insert "\n" "\n\n" (if (and (plist-get talk :public) (plist-get talk :captions-edited)) (emacsconf-format-transcript talk) "") (emacsconf-format-email-questions-and-comments talk) "\n" "\n\n\n"))) (defun emacsconf-sort-by-track-then-schedule (a b) ;; Gen,Dev; then by time (cond ((string< (plist-get a :track) (plist-get b :track)) nil) ((string< (plist-get a :track) (plist-get b :track)) t) ((time-less-p (plist-get a :start-time) (plist-get b :start-time)) t) (t nil))) (defun emacsconf-generate-nav-pages (&optional talks) (interactive (list (emacsconf-active-talks (sort (emacsconf-filter-talks (emacsconf-get-talk-info)) (if (eq emacsconf-publishing-phase 'schedule) #'emacsconf-sort-by-scheduled #'emacsconf-sort-by-track-then-schedule))))) (let* ((next-talks (cdr talks)) (prev-talks (cons nil talks)) (label (if (eq emacsconf-publishing-phase 'schedule) "time" "track"))) (unless (file-directory-p (expand-file-name "info" (expand-file-name emacsconf-year emacsconf-directory))) (mkdir (expand-file-name "info" (expand-file-name emacsconf-year emacsconf-directory)))) (while talks (let* ((o (pop talks)) (next-talk (emacsconf-format-talk-link (pop next-talks))) (prev-talk (emacsconf-format-talk-link (pop prev-talks)))) (with-temp-file (expand-file-name (format "%s-nav.md" (plist-get o :slug)) (expand-file-name "info" (expand-file-name emacsconf-year emacsconf-directory))) (insert (concat "\n
    Back to the [[talks]] \n" (if prev-talk (format "Previous by %s: %s \n" label prev-talk) "") (if next-talk (format "Next by %s: %s \n" label next-talk) "") (if (plist-get o :track) ; tagging doesn't work here because ikiwiki will list the nav page (format "Track: %s \n" (plist-get o :track) (plist-get o :track)) "") "
    "))))))) (defun emacsconf-prepare-for-display (info) "Sort by scheduled and remove cancelled talks." (seq-remove (lambda (o) (string= (plist-get o :status) "CANCELLED")) (sort (emacsconf-filter-talks info) #'emacsconf-sort-by-scheduled))) (defun emacsconf-publish-info-pages (&optional info) "Populate year/info/*-nav, -before, and -after files." (interactive) (setq info (or info (emacsconf-get-talk-info))) (emacsconf-publish-with-wiki-change (let* ((talks (seq-remove (lambda (o) (string= (plist-get o :status) "CANCELLED")) (sort (emacsconf-filter-talks info) #'emacsconf-sort-by-scheduled)))) (emacsconf-generate-nav-pages talks) (mapc (lambda (o) (emacsconf-publish-before-page o talks) (emacsconf-publish-after-page o talks)) talks)))) (defun emacsconf-publish-before-pages (&optional info) "Populate -before files." (interactive) (setq info (or info (emacsconf-get-talk-info))) (setq info (seq-remove (lambda (o) (string= (plist-get o :status) "CANCELLED")) (sort (emacsconf-filter-talks info) #'emacsconf-sort-by-scheduled))) (emacsconf-publish-with-wiki-change (mapc (lambda (o) (emacsconf-publish-before-page o info)) info))) (defun emacsconf-publish-talks-page (emacsconf-info) (interactive "p") (let ((info emacsconf-info)) (with-temp-buffer (find-file "talk-details.md") (erase-buffer) (insert (format "%s
    DurationTitleSpeakers
    " (mapconcat (lambda (o) (if (null (plist-get o :slug)) (format "%s" (emacsconf-format-talk-link o)) (format "%s%s%s" (plist-get o :duration) (emacsconf-format-talk-link o) (plist-get o :speakers)))) info "\n"))) (save-buffer)))) (defun emacsconf-generate-main-schedule-with-tracks (&optional info) (interactive) (setq info (or info (emacsconf-schedule-inflate-sexp emacsconf-schedule-plan (emacsconf-get-talk-info)))) (with-temp-file (expand-file-name "schedule-details.md" (expand-file-name emacsconf-year emacsconf-directory)) ;; By track (let ((links (mapconcat (lambda (track) (concat (cadr track) ": " (mapconcat (lambda (sec) (format "%s" (car track) (car sec) (cadr sec))) '(("sat" "Saturday") ("sun" "Sunday")) " - "))) '(("gen" "General") ("dev" "Development")) " | "))) (insert (mapconcat (lambda (track) (let* ((id (elt track 0)) (label (elt track 1)) (start (elt track 2)) (end (elt track 3)) (sequence (emacsconf-schedule-get-subsequence info start end)) (sat (cdr (emacsconf-schedule-get-subsequence sequence "Saturday" "Sunday"))) (sun (cdr (emacsconf-schedule-get-subsequence sequence "Sunday")))) (format "\n\n\n
    ## %s\n\n%s\n
    \n" id label label (mapconcat (lambda (section) (let ((section-id (elt section 0)) (section-label (elt section 1)) (section-seq (caddr section))) (format "%s\n\n\n### %s track - %s\n%s\n" links id section-id label section-label (emacsconf-format-main-schedule section-seq)))) `(("sat" "Saturday, Dec 3" ,sat) ("sun" "Sunday, Dec 4" ,sun)) "\n\n") ))) '(("gen" "General" "^GEN Sat" "^DEV Sat") ("dev" "Development" "^DEV Sat")) "\n"))) (let ((by-day (sort (seq-remove (lambda (s) (string-match "^\\(GEN\\|DEV\\)" (plist-get s :title))) info) #'emacsconf-sort-by-scheduled))) (insert "\n\n\n# By day\n\n## Saturday\n" ;; Everything all together (emacsconf-format-main-schedule (emacsconf-schedule-get-subsequence by-day "Saturday opening remarks" "Saturday closing remarks")) "\n\n## Sunday\n" ;; Everything all together (emacsconf-format-main-schedule (emacsconf-schedule-get-subsequence by-day "Sunday opening remarks" "Sunday closing remarks")) )))) (defun emacsconf-publish-format-interleaved-schedule (&optional info) "Return a list with the schedule for INFO. Entries are sorted chronologically, with different tracks interleaved." (setq info (or info (emacsconf-get-talk-info))) (let* ((by-day (emacsconf-by-day (emacsconf-prepare-for-display info))) (cancelled (seq-filter (lambda (o) (string= (plist-get o :status) "CANCELLED")) info)) (dates (seq-map (lambda (o) (plist-get (cadr o) :start-time)) by-day)) (links (mapcar (lambda (o) (format "%s" (format-time-string "%Y-%m-%d" o emacsconf-timezone) (format-time-string "%a %b %-e" o emacsconf-timezone))) dates)) (height 150) (width 600)) (concat (mapconcat (lambda (day) (let ((day-start (date-to-time (concat (format-time-string "%Y-%m-%dT" (plist-get (cadr day) :start-time) emacsconf-timezone) emacsconf-schedule-start-time emacsconf-timezone-offset))) (day-end (date-to-time (concat (format-time-string "%Y-%m-%dT" (plist-get (cadr day) :start-time) emacsconf-timezone) emacsconf-schedule-end-time emacsconf-timezone-offset)))) (concat (if (> (length links) 1) (concat "Jump to: " (string-join links " - ")) "") (format "\n" (format-time-string "%Y-%m-%d" (plist-get (cadr day) :start-time) emacsconf-timezone)) (format-time-string "# %A %b %-e, %Y\n" (plist-get (cadr day) :start-time) emacsconf-timezone) (format "[[!inline pages=\"internal(%s/schedule-%s)\" raw=\"yes\"]]" emacsconf-year (car day)) "\n\n" (format "
    \n" (format-time-string "%FT%T%z" day-start t) (format-time-string "%FT%T%z" day-end t)) (emacsconf-format-main-schedule (cdr day)) "
    "))) by-day "\n\n") (if (> (length cancelled) 0) (format "
    Cancelled:
      %s
    " (mapconcat (lambda (talk) (format "
  • %s - %s
  • " (plist-get talk :title) (plist-get talk :speakers))) cancelled "\n")) "") ))) (defun emacsconf-publish-schedule (&optional info) (interactive) (emacsconf-publish-schedule-svg-snippets) (with-temp-file (expand-file-name "schedule-details.md" (expand-file-name emacsconf-year emacsconf-directory)) (insert (if (eq emacsconf-publishing-phase 'program) (let ((sorted (emacsconf-prepare-for-display (or info (emacsconf-get-talk-info))))) (concat "Jump to development talks\n\n

    General talks

    \n" (emacsconf-format-main-schedule (seq-filter (lambda (o) (string= (plist-get o :track) "General")) sorted)) "\n\n

    Development talks

    \n" (emacsconf-format-main-schedule (seq-filter (lambda (o) (string= (plist-get o :track) "Development")) sorted)))) (emacsconf-publish-format-interleaved-schedule info)))) (when (eq emacsconf-publishing-phase 'program) (with-temp-file (expand-file-name "draft-schedule.md" (expand-file-name emacsconf-year emacsconf-directory)) (insert "This is a *DRAFT* schedule.\n" (let ((emacsconf-publishing-phase 'schedule)) (emacsconf-publish-format-interleaved-schedule info)))))) (defun emacsconf-format-talk-link (talk) (and talk (if (plist-get talk :slug) (format "%s" (plist-get talk :url) (plist-get talk :title)) (plist-get talk :title)))) (defun emacsconf-summarize-caption-status (info) (let* ((talks (seq-filter (lambda (o) (and (not (string= (plist-get o :status) "CANCELLED")) (plist-get o :speakers))) (emacsconf-filter-talks info))) (captioned (seq-filter (lambda (o) (plist-get o :captioner)) talks)) (received (seq-remove (lambda (o) (plist-get o :captioner)) talks))) (format "
    %d talks total: %d captioned (%d min), %d waiting for captions (%d min)
    " (length talks) (length captioned) (apply '+ (mapcar (lambda (info) (string-to-number (plist-get info :duration))) captioned)) (length received) (apply '+ (mapcar (lambda (info) (string-to-number (plist-get info :duration))) received))))) (defun emacsconf-publish-sched-directive (o) (format "[[!template id=sched%s%s]]" (let ((result "") (attrs (append (list :title (plist-get o :title) :url (concat "/" (plist-get o :url)) :speakers (plist-get o :speakers) :q-and-a (plist-get o :q-and-a) :qa-link (plist-get o :qa-link) :note (string-join (delq nil (list (when (plist-get o :captions-edited) "captioned") (when (and (plist-get o :public) (or (plist-get o :toobnix-url) (plist-get o :video-file))) "video posted"))) ", ") :pad (plist-get o :pad-url)) (unless (eq emacsconf-publishing-phase 'program) (list :track (plist-get o :track) :slug (plist-get o :slug) :status (pcase (plist-get o :status) ("CAPTIONED" "captioned") ("PREREC_RECEIVED" "received") ("DONE" "done") ("STARTED" "now playing") (_ nil)) :time (plist-get o :time) :startutc (format-time-string "%FT%T%z" (plist-get o :start-time) t) :endutc (format-time-string "%FT%T%z" (plist-get o :end-time) t) :start (format-time-string "%-l:%M" (plist-get o :start-time) emacsconf-timezone) :end (format-time-string "%-l:%M" (plist-get o :end-time) emacsconf-timezone)))))) (while attrs (let ((field (pop attrs)) (val (pop attrs))) (when val (setq result (concat result " " (substring (symbol-name field) 1) "=\"\"\"" val "\"\"\""))))) result) (if (eq emacsconf-publishing-phase 'resources) (format" resources=\"\"\"\n%s\n\"\"\"" (mapconcat (lambda (s) (concat "
  • " s "
  • ")) (emacsconf-link-file-formats-as-list (append o (list :base-url (format "%s%s/" emacsconf-media-base-url emacsconf-year))) (append emacsconf-main-extensions '("--main.webm"))) "")) ""))) (defun emacsconf-format-main-schedule (info) (mapconcat #'emacsconf-publish-sched-directive (emacsconf-active-talks info) "\n")) (defun emacsconf-publish-talk-files (talk files) (seq-filter (lambda (o) (and (string-match (concat "^" (regexp-quote (plist-get talk :video-slug))) o) (not (string= (plist-get talk :video-file) o)))) files)) (defun emacsconf-sum (field talks) (apply '+ (seq-map (lambda (talk) (string-to-number (or (plist-get talk field) "0"))) talks))) (defun emacsconf-publish-backstage-org-on-state-change (talk) (save-window-excursion (emacsconf-with-talk-heading talk (when (and (member org-state '("PROCESSING" "TO_ASSIGN")) (not (plist-get talk :video-time))) (emacsconf-cache-video-data talk)) (when (member org-state '("TO_CAPTION")) (unless (or noninteractive (org-entry-get (point) "CAPTIONER")) (org-entry-put (point) "CAPTIONER" (assoc-default "CUSTOM_ID" (emacsconf-complete-volunteer))))) (when (member org-state '("WAITING_FOR_PREREC" "TO_ASSIGN" "TO_CAPTION" "TO_STREAM")) (emacsconf-publish-backstage-index))))) (defun emacsconf-publish-backstage-index (&optional filename) (interactive) (setq filename (or filename (expand-file-name "index.html" emacsconf-backstage-dir))) (let ((info (emacsconf-prepare-for-display (emacsconf-get-talk-info)))) (let ((emacsconf-schedule-svg-modify-functions '(emacsconf-schedule-svg-color-by-status))) (with-temp-file (expand-file-name "schedule.svg" emacsconf-backstage-dir) (svg-print (emacsconf-schedule-svg 800 200 info)))) (with-temp-file filename (let* ((talks (mapcar (lambda (o) (append (list :captions-edited t) o)) (seq-filter (lambda (o) (plist-get o :speakers)) (emacsconf-active-talks (emacsconf-filter-talks info))))) (by-status (seq-group-by (lambda (o) (plist-get o :status)) talks)) (files (directory-files emacsconf-backstage-dir))) (insert "" "

    Schedule by status: (gray: waiting, light yellow: processing, yellow: to assign, light green: captioning, green: captioned and ready)
    Updated by conf.org and the wiki repository
    " "

    " (format "

    Waiting for %d talks (~%d minutes) out of %d total

    " (length (assoc-default "WAITING_FOR_PREREC" by-status)) (emacsconf-sum :time (assoc-default "WAITING_FOR_PREREC" by-status)) (length talks)) "
      " (mapconcat (lambda (status) (concat "
    • " status ": " (mapconcat (lambda (o) (format "%s" (plist-get o :slug) (plist-get o :slug))) (assoc-default status by-status) ", ") "
    • ")) '("TO_PROCESS" "PROCESSING" "TO_ASSIGN" "TO_CAPTION" "TO_STREAM") "") "
    " (let ((list (append (assoc-default "TO_PROCESS" by-status) (assoc-default "PROCESSING" by-status) (assoc-default "TO_AUTOCAP" by-status)))) (format "

    %s talk(s) being processed (%d minutes)

    Not ready for captioning yet, but they will be eventually
      %s
    " (length list) (emacsconf-sum :video-time list) (mapconcat (lambda (f) (setq f (append f (list :extra (if (plist-get f :caption-note) (concat "
    " (plist-get f :caption-note) "
    ") "") :files (emacsconf-publish-talk-files f files)))) (format "
  • %s
    %s (id:%s)
    %s
  • " (plist-get f :slug) (plist-get f :absolute-url) (plist-get f :title) (plist-get f :speakers) (plist-get f :slug) (emacsconf-index-card f))) list "\n"))) (let ((list (assoc-default "TO_ASSIGN" by-status))) (format "

    %s talk(s) to be captioned (%d minutes)

    You can e-mail sacha@sachachua.com to call dibs on editing the captions for one of these talks. This year, we're experimenting with using OpenAI Whisper to provide auto-generated VTT that you can use as a starting point. If you're writing them from scratch, you can choose to include timing information, or we can probably figure them out afterwards with a forced alignment tool. More info: Editing captions, captioning tips

      %s
    " (length list) (emacsconf-sum :video-time list) (mapconcat (lambda (f) (setq f (append f (list :extra (if (plist-get f :caption-note) (concat "
    " (plist-get f :caption-note) "
    ") "") :files (emacsconf-publish-talk-files f files)))) (format "
  • %s
    %s (id:%s)
    %s
  • " (plist-get f :slug) (plist-get f :absolute-url) (plist-get f :title) (plist-get f :speakers) (plist-get f :slug) (emacsconf-index-card f))) list "\n"))) (format "

    %d talk(s) being captioned (%s minutes)

    People are working on these ones, yay!
      %s
    " (length (assoc-default "TO_CAPTION" by-status)) (emacsconf-sum :video-time (assoc-default "TO_CAPTION" by-status)) (mapconcat (lambda (f) (setq f (append f (list :extra (concat "
    " (emacsconf-surround "Being captioned by " (plist-get f :captioner) " " "") (emacsconf-surround "Note: " (plist-get f :caption-note) "" "") "
    ") :files (emacsconf-publish-talk-files f files)))) (format "
  • %s
    %s (id:%s)
    %s
  • " (plist-get f :slug) emacsconf-base-url (plist-get f :url) (plist-get f :title) (plist-get f :speakers-with-pronouns) (plist-get f :slug) (emacsconf-index-card f))) (assoc-default "TO_CAPTION" by-status) "\n")) (format "

    %d captioned talk(s) ready for enjoyment (%d minutes)

      %s
    " (length (assoc-default "TO_STREAM" by-status)) (emacsconf-sum :video-time (assoc-default "TO_STREAM" by-status)) (mapconcat (lambda (f) (format "
  • %s
    %s (id:%s)
    %s
  • " (plist-get f :slug) emacsconf-base-url (plist-get f :url) (plist-get f :title) (plist-get f :speakers-with-pronouns) (plist-get f :slug) (emacsconf-index-card (append f (list :extra (concat "Captioned by " (plist-get f :captioner)) :files (emacsconf-publish-talk-files f files))) emacsconf-main-extensions))) (assoc-default "TO_STREAM" by-status) "\n")) (if (file-exists-p (expand-file-name "include-in-index.html" emacsconf-cache-dir)) (with-temp-buffer (insert-file-contents (expand-file-name "include-in-index.html" emacsconf-cache-dir)) (buffer-string)) "") ""))))) (defun emacsconf-publish-filter-files (talk files extensions &optional selector) (when (plist-get talk :video-slug) (seq-filter (lambda (f) (string-match (concat (regexp-quote (plist-get talk :video-slug)) (if selector (concat "--" selector)) ".*" (regexp-opt extensions)) f)) files))) (defun emacsconf-publish-public-index (&optional filename) (interactive (list (expand-file-name "index.html" emacsconf-public-media-directory))) (setq filename (or filename (expand-file-name "index.html" emacsconf-public-media-directory))) (let ((files (directory-files emacsconf-public-media-directory))) (with-temp-file filename (insert "" "

    " emacsconf-name " " emacsconf-year "

    " "" "
      " (mapconcat (lambda (o) (format "
    1. %s
      %s
    2. %s" (plist-get o :absolute-url) (plist-get o :title) (plist-get o :speakers) (emacsconf-index-card (append (list :files (emacsconf-publish-filter-files o files emacsconf-main-extensions)) o) '(".org" ".pdf" "--main.vtt" "--compressed56.webm")) (if (member (concat (plist-get o :video-slug) "--answers.webm") files) (format "
    3. Q&A for %s
      %s
    4. " (plist-get o :title) (emacsconf-index-card (append (list :public 1 :video-id (concat "qanda-" (plist-get o :slug)) :toobnix-url nil :video-file (expand-file-name (concat (file-name-sans-extension (plist-get o :video-slug)) "--answers.webm") emacsconf-public-media-directory) :files (emacsconf-publish-filter-files o files emacsconf-main-extensions "answers")) o) (list "--answers.webm" "--answers.vtt" "--answers--chapters.vtt"))) ""))) (emacsconf-public-talks (emacsconf-get-talk-info)) "\n") "
    " (if (file-exists-p (expand-file-name "include-in-public-index.html" emacsconf-cache-dir)) (with-temp-buffer (insert-file-contents (expand-file-name "include-in-public-index.html" emacsconf-cache-dir)) (buffer-string)) "") "")))) (defun emacsconf-publish-public-index-on-wiki () (interactive) (let ((info (seq-filter (lambda (o) (not (string= (plist-get o :status) "CANCELLED"))) (emacsconf-filter-talks (emacsconf-get-talk-info)))) (files (directory-files emacsconf-public-media-directory))) (with-temp-file (expand-file-name "all-include.md" (expand-file-name emacsconf-year emacsconf-directory)) (insert "
      " (mapconcat (lambda (f) (format "
    1. %s
      %s%s
    2. " (plist-get f :absolute-url) (plist-get f :title) (or (plist-get f :speakers) "") (if (plist-get f :public) (emacsconf-index-card (append (list :base-url (concat emacsconf-media-base-url (plist-get f :conf-year) "/") :track-base-url (format "/%s/captions/" (plist-get f :conf-year)) :files (emacsconf-publish-filter-files f files emacsconf-main-extensions)) f) emacsconf-main-extensions) "") (if (plist-get f :qa-public) (emacsconf-index-card (append (list :public 1 :base-url (concat emacsconf-media-base-url (plist-get f :conf-year) "/") :video-id (concat "qanda-" (plist-get f :slug)) :track-base-url (format "/%s/captions/" (plist-get f :conf-year)) :video-file (expand-file-name (concat (file-name-sans-extension (plist-get f :video-slug)) "--answers.webm") emacsconf-cache-dir)) f) (list "--answers.vtt" "--answers--chapters.vtt")) ""))) info "\n")) "
    "))) (defun emacsconf-make-chapter-strings (filename track-base-url &optional target) (let ((chapters (subed-parse-file filename))) (when chapters (list :track (format "" (concat (or track-base-url "") (file-name-nondirectory filename))) :md (mapconcat (lambda (chapter) (concat (format-seconds "%.2h:%z%.2m:%.2s" (floor (/ (elt chapter 1) 1000))) (format ".%03d" (mod (elt chapter 1) 1000)) " " (elt chapter 3) "\n")) chapters "") :html (format "
    \n%s\n
    " (or target "") (mapconcat (lambda (chapter) (format "%s.%03d %s" (format-seconds "%.2h:%z%.2m:%.2s" (floor (/ (elt chapter 1) 1000))) (mod (elt chapter 1) 1000) (elt chapter 3))) chapters "\n")))))) (defun emacsconf-video-subtitle-tracks (filename track-base-url &optional files) (setq files (or files (directory-files emacsconf-cache-dir))) (concat (if (member filename files) (format "" (concat (or track-base-url "") (file-name-nondirectory filename))) "") (mapconcat (lambda (lang) (let ((lang-file (concat (file-name-sans-extension filename) "_" (car lang) "." (file-name-extension filename)))) (if (member lang-file files) (format "" (cdr lang) (car lang) (concat (or track-base-url "") (file-name-nondirectory lang-file)))) "")) '(("fr" . "French") ("ja" . "Japanese")) ""))) (defun emacsconf-link-file-formats (video-slug extensions) (string-join (emacsconf-link-file-formats-as-list video-slug extensions) " ")) (defun emacsconf-link-file-formats-as-list (talk extensions) (if (plist-get talk :files) (seq-map (lambda (file) (if (eq (plist-get talk :format) 'wiki) (format "[Download %s](%s%s)" (replace-regexp-in-string (concat "^" (regexp-quote (plist-get talk :video-slug))) "" file) (or (plist-get talk :base-url) "") file) (format "Download %s" (or (plist-get talk :base-url) "") file (replace-regexp-in-string (concat "^" (regexp-quote (plist-get talk :video-slug))) "" file)))) (plist-get talk :files)) (let ((video-slug (plist-get talk :video-slug))) (delq nil (seq-map (lambda (ext) (let ((file (expand-file-name (concat video-slug ext) emacsconf-cache-dir)) size) (when (file-exists-p file) (setq size (if (> (file-attribute-size (file-attributes file)) 1000000) (format " (%sB)" (file-size-human-readable (file-attribute-size (file-attributes file)))) "")) (if (eq (plist-get talk :format) 'wiki) (format "[Download %s%s](%s%s)" ext size (or (plist-get talk :base-url) "") (concat video-slug ext)) (format "Download %s%s" (or (plist-get talk :base-url) "") (concat video-slug ext) ext size))))) extensions))))) (defun emacsconf-talks-csv () "Make a CSV of the talks. Columns are: slug,title,speakers,talk page url,video url,duration,sha." (interactive) (require 'org-table) (require 'compile-media) (with-temp-file (expand-file-name "talks.csv" emacsconf-public-media-directory) (let ((results (delq nil (seq-mapcat (lambda (o) (let ((date (format-time-string "%Y-%m-%d" (plist-get o :start-time) emacsconf-timezone)) (main-video (expand-file-name (concat (plist-get o :video-slug) "--main.webm") emacsconf-cache-dir)) (qa-video (expand-file-name (concat (plist-get o :video-slug) "--answers.webm") emacsconf-cache-dir)) (talk-page-url (plist-get o :url)) (speakers (or (plist-get o :speakers) ""))) (delq nil (list (list (concat emacsconf-name " " emacsconf-year) (plist-get o :slug) (plist-get o :title) speakers talk-page-url (format "%s%s/%s--main.webm" emacsconf-media-base-url (plist-get o :conf-year) (plist-get o :video-slug)) date (format-seconds "%02h:%z%02m:%02s" (/ (compile-media-get-file-duration-ms main-video) 1000)) (if (file-exists-p main-video) (string-trim (shell-command-to-string (concat "sha1sum -b " (shell-quote-argument main-video) " | cut -d ' ' -f 1"))) "") (or (plist-get o :youtube-url) "") (or (plist-get o :toobnix-url) "")) (if (plist-get o :qa-public) (list (concat emacsconf-name " " emacsconf-year) (format "%s-qa" (plist-get o :slug)) (format "Q&A for %s" (plist-get o :title)) speakers talk-page-url (format "%s%s/%s--answers.webm" emacsconf-media-base-url (plist-get o :conf-year) (plist-get o :video-slug)) date (format-seconds "%02h:%z%02m:%02s" (/ (compile-media-get-file-duration-ms qa-video) 1000)) (if (file-exists-p qa-video) (string-trim (shell-command-to-string (concat "sha1sum -b " (shell-quote-argument qa-video) " | cut -d ' ' -f 1"))) "") (or (plist-get o :qa-youtube) "") (or (plist-get o :qa-toobnix) ""))))))) (emacsconf-public-talks (emacsconf-get-talk-info)))))) (insert (orgtbl-to-csv (cons '("Conference" "Slug" "Title" "Speakers" "Talk page URL" "Video URL" "Date" "Duration" "SHA" "Youtube URL" "Toobnix URL") results) nil))))) (defun emacsconf-generate-pad-template (emacsconf-info) "Generate a template for copying and pasting into the pad. Writes it to pad-template.html." (interactive (list (emacsconf-get-talk-info))) (let* ((talks (emacsconf-filter-talks emacsconf-info)) (text (concat "

    Conference info, how to watch/participate: https://emacsconf.org/2021/
    Guidelines for conduct: https://emacsconf.org/conduct/

    Except where otherwise noted, the material on the EmacsConf pad are dual-licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 International Public License ; and the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) an later version. Copies of these two licenses are included in the EmacsConf wiki repository, in the COPYING.GPL and COPYING.CC-BY-SA files (https://emacsconf.org/COPYING/).

    By contributing to this pad, you agree to make your contributions available under the above licenses. You are also promising that you are the author of your changes, or that you copied them from a work in the public domain or a work released under a free license that is compatible with the above two licenses. DO NOT SUBMIT COPYRIGHTED WORK WITHOUT PERMISSION.

    This pad is here to be curated by everybody and its rough structure is like this:

    1. General info and license
    2. A section for each talk -> please do add questions and notes
    3. A general feedback section

    " (mapconcat (lambda (o) (let ((url (format "https://emacsconf.org/%s/talks/%s" emacsconf-year (plist-get o :slug)))) (format "-------------------------------------------------------------------------------------------------
    Talk%s: %s
    Speaker(s): %s
    Talk page: %s
    Actual start of talk EST:   ;   Start of Q&A:    End of Q&A:   
    Questions: Speakers may answer in any order or skip questions. As much as possible, put your questions at the top level instead of under another question. If adding an answer, please indicate [speaker] or your nick accordingly. Volunteers, please add new slots as ones get filled.
    • Q1:  ;
      • A: 
    • Q2:  ;
      • A: 
    • Q3:  ;
      • A: 
    • Q4:  ;
      • A: 
    Links and other notes:
    • sample text
    • sample text
    • sample text
    • sample text
    " (plist-get o :slug) (plist-get o :title) (plist-get o :speakers) url url))) talks "

    \n") "

    -------------------------------------------------------------------------------------------------
    General Feedback: What went well?

    • sample text
    • sample text
    • sample text
    • sample text


    -------------------------------------------------------------------------------------------------
    General Feedback: What to improve?

    • sample text
    • sample text
    • sample text
    • sample text


    -------------------------------------------------------------------------------------------------
    Colophon:
      "))) (with-current-buffer (find-file "pad-template.html") (erase-buffer) (insert text) (save-buffer))) (browse-url-of-file "pad-template.html")) (defun emacsconf-generate-playlist (filename playlist-name talks &optional base-url) (with-temp-file filename (insert (format "#EXTM3U\n#PLAYLIST: %s\n#EXTALB: %s\n#EXTGENRE: Speech\n%s" playlist-name playlist-name (mapconcat (lambda (talk) (let* ((slug (plist-get talk :video-slug)) (filename (concat (plist-get talk :video-slug) "--main.webm"))) (if (and slug (file-exists-p (expand-file-name filename emacsconf-cache-dir))) (format "#EXTINF:-1,%s - %s\n%s%s\n" (plist-get talk :title) (plist-get talk :speakers) base-url filename) ""))) talks ""))))) (defun emacsconf-get-preferred-video (video-slug &optional files) (or (car (mapcar (lambda (suffix) (seq-find (lambda (s) (string-match (concat (regexp-quote (if suffix (concat video-slug "--" suffix) video-slug)) "\\." (regexp-opt emacsconf-media-extensions)) s)) files)) '("main" "captioned" "normalized" "reencoded" "compressed" "original" nil))) (seq-find 'file-exists-p (seq-map (lambda (suffix) (expand-file-name (concat video-slug "--" suffix ".webm") emacsconf-cache-dir)) '("main" "captioned" "normalized" "reencoded" "compressed" "original"))) (car (directory-files emacsconf-cache-dir nil (concat (regexp-quote video-slug) ".*\\." (regexp-opt emacsconf-media-extensions)))))) (defun emacsconf-check-video-formats () (interactive) (with-current-buffer (get-buffer-create "*Video check*") (erase-buffer) (mapc (lambda (filename) (insert "* " (if (string-match "--\\(main\\|compressed\\|normalized\\|captioned\\)\\.webm$" filename) (match-string 1 filename) "") ": " filename "\n" (shell-command-to-string (format "ffprobe %s 2>&1 | grep -E '(Duration|Stream)'" (shell-quote-argument filename))) "\n")) (delq nil (mapcar (lambda (talk) (emacsconf-get-preferred-video (plist-get talk :video-slug))) emacsconf-info))) (switch-to-buffer (current-buffer)))) ;;; Video services (autoload 'subed-parse-file "subed-common") (defun emacsconf-publish-video-description (talk &optional copy) (interactive (list (emacsconf-complete-talk-info) t)) (let ((chapters (subed-parse-file (expand-file-name (concat (file-name-base (plist-get talk :video-slug)) "--main--chapters.vtt") emacsconf-cache-dir))) result) (setq result (emacsconf-replace-plist-in-string (append (list :conf-name emacsconf-name :year emacsconf-year :chapters (if chapters (concat (mapconcat (lambda (chapter) (format "%s.%03d %s" (format-seconds "%.2h:%z%.2m:%.2s" (floor (/ (elt chapter 1) 1000))) (mod (elt chapter 1) 1000) (elt chapter 3))) chapters "\n") "\n") "")) talk) "${conf-name} ${year}: ${title} ${speakers-with-pronouns} ${absolute-url} ${chapters}You can view this and other resources using free/libre software at ${absolute-url}. This video is available under the terms of the Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.")) (if copy (kill-new result)) result)) ;; (emacsconf-publish-video-description (emacsconf-find-talk-info "async") t) (defun emacsconf-cache-all-video-data (&optional force) (interactive (list current-prefix-arg)) (mapc (lambda (talk) (when (and (plist-get talk :video-slug) (or force (null (plist-get talk :video-file-size)))) (emacsconf-cache-video-data talk))) (emacsconf-get-talk-info))) ;; (emacsconf-cache-all-video-data t) (defvar emacsconf-cache-dir (expand-file-name "cache" (file-name-directory emacsconf-org-file))) (defun emacsconf-cache-video-data (talk) (interactive (list (emacsconf-complete-talk-info))) (let ((main (expand-file-name (concat (plist-get talk :video-slug) "--main.webm") emacsconf-cache-dir))) (emacsconf-with-talk-heading talk (let* ((video-file-name (emacsconf-get-preferred-video (org-entry-get (point) "VIDEO_SLUG"))) (video-file (and video-file-name (expand-file-name video-file-name emacsconf-cache-dir))) duration) (unless (file-exists-p main) (setq main video-file-name)) (when video-file (org-entry-put (point) "VIDEO_FILE" (file-name-nondirectory video-file)) (org-entry-put (point) "VIDEO_FILE_SIZE" (file-size-human-readable (file-attribute-size (file-attributes video-file)))) (unless (plist-get talk :captions-edited) (let ((caption-file (expand-file-name (concat (plist-get talk :video-slug) "--main.vtt") emacsconf-cache-dir))) (when (emacsconf-captions-edited-p caption-file) (org-entry-put (point) "CAPTIONS_EDITED" "1")))) (unless (plist-get talk :video-duration) (setq duration (/ (compile-media-get-file-duration-ms video-file) 1000)) (org-entry-put (point) "VIDEO_DURATION" (format-seconds "%m:%.2s" duration)) (org-entry-put (point) "VIDEO_TIME" (number-to-string (ceiling (/ duration 60)))))))))) (defvar emacsconf-youtube-channel-id "UCwuyodzTl_KdEKNuJmeo99A") (defun emacsconf-youtube-edit () (interactive) (let ((url (org-entry-get (point) "YOUTUBE_URL"))) (if url (when (or (string-match "youtu\\.be/\\([-A-Za-z0-9_]+\\)" url) (string-match "watch\\?v=\\([-A-Za-z0-9_]+\\)" url)) (browse-url (format "https://studio.youtube.com/video/%s/edit" (match-string 1 url)))) (browse-url (concat "https://studio.youtube.com/channel/" emacsconf-youtube-channel-id))))) (defun emacsconf-toobnix-edit () (interactive) (let ((url (org-entry-get (point) "TOOBNIX_URL"))) (if url (when (string-match "/w/\\([A-Za-z0-9]+\\)" url) (browse-url (format "https://toobnix.org/videos/update/%s" (match-string 1 url)))) (when (> (length (org-entry-get (point) "VIDEO_SLUG")) 80) (copy-file (expand-file-name (concat (org-entry-get (point) "VIDEO_SLUG") "--main.webm") emacsconf-cache-dir) (expand-file-name (concat "emacsconf-" emacsconf-year "-" (org-entry-get (point) "SLUG") ".webm") emacsconf-cache-dir) t)) (browse-url "https://toobnix.org/videos/upload#upload")))) (defun emacsconf-publish-files () (interactive) (let* ((slug (org-entry-get (point) "VIDEO_SLUG")) (video-file (emacsconf-get-preferred-video slug)) (wiki-captions-directory (expand-file-name "captions" (expand-file-name emacsconf-year emacsconf-directory))) (new-captions-file (expand-file-name (concat slug "--main.vtt") wiki-captions-directory))) (org-entry-put (point) "PUBLIC" "1") (when (file-exists-p video-file) (emacsconf-youtube-edit) (emacsconf-toobnix-edit) (emacsconf-cache-video-data-for-entry) (emacsconf-update-talk) (when (file-exists-p (expand-file-name (concat slug ".md") wiki-captions-directory)) (with-current-buffer (find-file-noselect (file-exists (expand-file-name (concat slug ".md") wiki-captions-directory))) (magit-stage-file (buffer-file-name)))) (mapc (lambda (suffix) (when (file-exists-p (expand-file-name (concat slug suffix) emacsconf-cache-dir)) (copy-file (expand-file-name (concat slug suffix) emacsconf-cache-dir) (expand-file-name (concat slug suffix) wiki-captions-directory)t) (with-current-buffer (find-file-noselect (expand-file-name (concat slug suffix) wiki-captions-directory)) (magit-stage-file (buffer-file-name))))) '("--main.vtt" "--chapters.vtt" "--main_ja.vtt" "--main_fr.vtt")) (magit-status-setup-buffer emacsconf-directory) (when (and emacsconf-public-media-directory slug (> (length (string-trim slug)) 0) ;; TODO: make this customizable (shell-command (format "ssh media.emacsconf.org -- 'rm /var/www/media.emacsconf.org/%s/%s* ; cp -n -l /var/www/media.emacsconf.org/%s/backstage/%s* /var/www/media.emacsconf.org/%s/; chmod ugo+r /var/www/media.emacsconf.org/%s/ -R'" emacsconf-year slug emacsconf-year slug emacsconf-year emacsconf-year))) (when emacsconf-public-media-directory (emacsconf-publish-public-index (expand-file-name "index.html" emacsconf-public-media-directory)) (emacsconf-generate-playlist (expand-file-name "index.m3u" emacsconf-public-media-directory) "EmacsConf 2021" (emacsconf-public-talks (emacsconf-get-talk-info)))))) ;; (copy-file (emacsconf-get-preferred-video slug) emacsconf-public-media-directory t) ;; (mapc (lambda (ext) ;; (when (file-exists-p (expand-file-name (concat slug ext) emacsconf-cache-dir)) ;; (copy-file (expand-file-name (concat slug ext) emacsconf-cache-dir) ;; emacsconf-public-media-directory ;; t))) ;; emacsconf-published-extensions) )) (defmacro emacsconf-publish-with-wiki-change (&rest body) (declare (indent 0) (debug t)) `(progn ,@body (let ((default-directory emacsconf-directory)) (if (featurep 'magit) (progn (magit-with-toplevel (magit-stage-1 "-u" magit-buffer-diff-files)) (magit-status-setup-buffer)) (shell-command "git add -u")) ;; (when noninteractive ;; (call-process "git" nil nil nil "commit" "-m" (if (stringp (car body)) ;; (car body) ;; "Automated commit")) ;; (call-process "git" nil nil nil "commit" "-m" (if (stringp (car body)) ;; (car body) ;; "Automated commit"))) ))) (defun emacsconf-publish-schedule-svg-snippets () (interactive) (let* ((info (emacsconf-prepare-for-display (emacsconf-get-talk-info))) (by-day (emacsconf-by-day info)) (year-dir (expand-file-name emacsconf-year emacsconf-directory)) (width 800) (height 300)) (emacsconf-publish-with-wiki-change (with-temp-file (expand-file-name "schedule-image.md" year-dir) (insert "
      ") (svg-print (emacsconf-schedule-svg 800 300 info)) (insert "
      ")) (mapc (lambda (day) (let ((start (date-to-time (concat (car day) "T" emacsconf-schedule-start-time emacsconf-timezone-offset))) (end (date-to-time (concat (car day) "T" emacsconf-schedule-end-time emacsconf-timezone-offset)))) (with-temp-file (expand-file-name (concat "schedule-" (car day) ".md") year-dir) (insert "
      ") (svg-print (emacsconf-schedule-svg-day (svg-create width (/ height (length by-day))) (format-time-string "%A" (plist-get (cadr day) :start-time) emacsconf-timezone) width (/ height (length by-day)) start end (emacsconf-by-track (cdr day)))) (insert "
      ")))) by-day)))) (defvar emacsconf-publish-watch-directory "/ssh:orga@front0.emacsconf.org:/var/www/live.emacsconf.org/") (defun emacsconf-publish-format-watch-index (info) (concat "\n

      Tracks

      " "\n" (mapconcat (lambda (track) (emacsconf-replace-plist-in-string track "")) emacsconf-tracks "\n") "
      Watch pageIRC channel (libera.chat)Alternative for streaming playerLow res
      ${name}${channel}${stream}${id}-480p.webm
      \n\n" (with-temp-buffer (svg-print (emacsconf-schedule-svg 800 300 info)) (buffer-string)))) (defun emacsconf-publish-schedule-line (talk) (setq talk (append talk (list :startutc (format-time-string "%FT%T%z" (plist-get talk :start-time) t) :endutc (format-time-string "%FT%T%z" (plist-get talk :end-time) t) :start (format-time-string "%-l:%M" (plist-get talk :start-time) emacsconf-timezone) :end (format-time-string "%-l:%M" (plist-get talk :end-time) emacsconf-timezone) :base-url emacsconf-base-url))) (emacsconf-replace-plist-in-string (append talk (list :start-info (emacsconf-surround "" (plist-get talk :start) "" "") :end-info(emacsconf-surround " - " (plist-get talk :end) "" "") :track-info (emacsconf-surround (format " " (or (plist-get talk :track) "")) (plist-get talk :track) "" "") :q-info (emacsconf-surround " Q&A: " (plist-get talk :q-and-a) "; " "") :pad-info (emacsconf-surround " Etherpad; " "") :slug-info (emacsconf-surround " id:" (plist-get talk :slug) "" "") :speaker-info (emacsconf-surround "
      " (plist-get talk :speakers-with-pronouns) "
      " "") :resources-info (emacsconf-surround "
        " (plist-get talk :resources) "
      " ""))) "
      ${start-info}${end-info}${track-info}${pad-info}${q-info}${slug-info}
      ${speaker-info} ${resources-info}
      ")) (defun emacsconf-publish-schedule-short (info) (mapconcat (lambda (o) (emacsconf-replace-plist-in-string (append o (list :base-url emacsconf-base-url)) "${slug} (pad, ${qa-link})")) info " - ")) (defun emacsconf-publish-page-nav (nav &optional current sep) (concat (if current (format "" current) "") (mapconcat (lambda (n) (if (string= current (car n)) (concat "" (cdr n) "") (concat "" (cdr n) ""))) nav (or sep " - ")))) (defun emacsconf-publish-format-watch-track (track info) (let ((nav '(("watch" . "Watch") ("links" . "Pad and Q&A links") ("chat" . "Chat") ("sched" . "Schedule"))) (track-talks (seq-filter (lambda (o) (string= (plist-get o :track) (plist-get track :name))) info)) ) (emacsconf-replace-plist-in-string (append (list :links (concat "Watch - Pad and Q&A links - Chat - View schedule - \nStreams: " ) :sched (with-temp-buffer (svg-print (emacsconf-schedule-svg 800 300 info)) (buffer-string)) :title-info (emacsconf-surround "

      " (plist-get track :title) "

      " "") :year emacsconf-year :brief (emacsconf-publish-schedule-short track-talks) :stream-nav (concat "Tracks: " (mapconcat (lambda (tr) (if (string= (plist-get tr :name) (plist-get track :name)) (format "%s" (plist-get track :name)) (format "%s" emacsconf-year (plist-get tr :id) (plist-get tr :name)))) emacsconf-tracks " - ")) :talks (mapconcat (lambda (entry) (format "

      %s

      \n%s\n" (car entry) (mapconcat #'emacsconf-publish-schedule-line (cdr entry) "\n"))) (seq-group-by (lambda (o) (format-time-string "%A, %b %-e, %Y" (plist-get o :start-time) emacsconf-timezone)) track-talks) "")) track) (concat " ${title-info}
      " (emacsconf-publish-page-nav nav "watch") " | ${stream-nav}
      Alternatively, load ${stream-hires} or ${480p} (low-res) in a streaming media player such as MPV.

      " (emacsconf-publish-page-nav nav "links") " | ${stream-nav}
      " "
      ${brief}

      " (emacsconf-publish-page-nav nav "chat") " | ${stream-nav}
      " "
      Chat: ${channel} on libera.chat

      " (emacsconf-publish-page-nav nav "sched") " | ${stream-nav}
      " "
      ${sched}
      ${talks}
      ")))) (defun emacsconf-publish-watch-pages () "Update /year/watch pages." (interactive) (mapc (lambda (track) (plist-put track :year emacsconf-year) (plist-put track :stream (concat emacsconf-stream-base (plist-get track :id) ".webm")) (plist-put track :stream-hires (concat emacsconf-stream-base (plist-get track :id) ".webm")) (plist-put track :480p (concat emacsconf-stream-base (plist-get track :id) "-480p.webm")) (plist-put track :webchat-channels (concat "emacsconf,emacsconf-" (plist-get track :id))) (plist-put track :webchat (concat emacsconf-chat-base "?join=" (plist-get track :webchat-channels))) (plist-put track :channel (concat "#emacsconf-" (plist-get track :id)))) emacsconf-tracks) (let* ((info (emacsconf-prepare-for-display (emacsconf-get-talk-info))) (emacsconf-publishing-phase 'schedule) (emacsconf-use-absolute-url t)) (when emacsconf-directory (emacsconf-publish-with-wiki-change (make-directory (expand-file-name "watch" (expand-file-name emacsconf-year emacsconf-directory)) t) (with-temp-file (expand-file-name "watch/info.md" (expand-file-name emacsconf-year emacsconf-directory)) (insert "[[!sidebar content=\"\"]]" (emacsconf-publish-format-watch-index info))) (mapc (lambda (track) (with-temp-file (expand-file-name (format "%s/watch/%s.md" emacsconf-year (plist-get track :id)) emacsconf-directory) (insert (emacsconf-publish-format-watch-track (append track (list :title "")) info)))) emacsconf-tracks))) ;; Update live.emacsconf.org (when emacsconf-publish-watch-directory (make-directory (expand-file-name "watch" (expand-file-name emacsconf-year emacsconf-publish-watch-directory)) t) (with-temp-file (expand-file-name "watch/index.html" (expand-file-name emacsconf-year emacsconf-publish-watch-directory)) (insert "Watch EmacsConf" (emacsconf-publish-format-watch-index info) "

      Depending on which media player you use, you may enter the stream address in a graphical user interface or provide it as an argument to the program when launching it from the terminal.

      Examples:

      mpv https://live0.emacsconf.org:9001/emacsconf/gen.webm
      vlc https://live0.emacsconf.org:9001/emacsconf/gen.webm
      ffplay https://live0.emacsconf.org:9001/emacsconf/gen.webm
      

      If you experience any disruptions, try reloading the page you're using to watch the video. If that still doesn't work, please check our status page at https://status.emacsconf.org for updates on the status of various parts of our infrastructure, and instructions on how to get in touch with us about disruptions.

      If you prefer, you can watch the livestream via Toobnix: General track, Development track. Pre-recorded videos and replays will also be available on Toobnix in the EmacsConf channel.

      To participate in the Q&A, please check the talk page for the Q&A details, including the Etherpad link, IRC channel, and optionally a BigBlueButton room (BBB) for Q&A. If you plan to participate in Q&A in the BigBlueButton room, please use headphones or earphones in order to minimize audio feedback. The link on the talk page will take you to a waiting room that will automatically refresh when the host has opened the Q&A.

      " "")) (mapc (lambda (track) (make-directory (expand-file-name (format "%s/watch/%s" emacsconf-year (plist-get track :id)) emacsconf-publish-watch-directory) t) (make-directory (expand-file-name (format "%s/watch/%s-480p" emacsconf-year (plist-get track :id)) emacsconf-publish-watch-directory) t) (with-temp-file (expand-file-name (format "%s/watch/%s/index.html" emacsconf-year (plist-get track :id)) emacsconf-publish-watch-directory) (insert (emacsconf-replace-plist-in-string track "Watch EmacsConf ${name} track") (emacsconf-publish-format-watch-track (append track (list :title (emacsconf-replace-plist-in-string track "EmacsConf ${year}: ${name} track"))) info) "")) (with-temp-file (expand-file-name (format "%s/watch/%s-480p/index.html" emacsconf-year (plist-get track :id)) emacsconf-publish-watch-directory) (insert (emacsconf-replace-plist-in-string track "Watch EmacsConf ${name} track (low-res)") (emacsconf-publish-format-watch-track (append (list :stream (plist-get track :480p) :title (emacsconf-replace-plist-in-string track "EmacsConf ${year}: ${name} track (low-res)")) track) info) ""))) emacsconf-tracks)))) (defvar emacsconf-publish-current-dir "/ssh:orga@media.emacsconf.org:/var/www/media.emacsconf.org/2022/current" "Directory to publish BBB redirects and current information to.") ;; (assert (eq (emacsconf-get-bbb-state '(:status "OPEN_Q")) 'open)) ;; (assert (eq (emacsconf-get-bbb-state '(:status "TO_ARCHIVE")) 'after)) (defun emacsconf-publish-bbb-static-redirects () "Create emergency redirects that can be copied over the right location." (mapc (lambda (state) (let ((emacsconf-publish-current-dir (expand-file-name state (expand-file-name "redirects" emacsconf-stream-asset-dir)))) (unless (file-directory-p emacsconf-publish-current-dir) (make-directory emacsconf-publish-current-dir t)) (mapc (lambda (talk) (emacsconf-publish-bbb-redirect talk (intern state))) (emacsconf-prepare-for-display (emacsconf-get-talk-info))))) '("before" "open" "after"))) (defun emacsconf-publish-bbb-redirect (talk &optional status) (interactive (list (emacsconf-complete-talk-info))) (let ((bbb-filename (expand-file-name (format "bbb-%s.html" (plist-get talk :slug)) emacsconf-publish-current-dir)) (bbb-redirect-url (concat "https://media.emacsconf.org/" emacsconf-year "/current/bbb-" (plist-get talk :slug) ".html")) (status (or status (emacsconf-bbb-status (if (boundp 'org-state) (append (list :status org-state) talk) talk))))) (with-temp-file bbb-filename (insert (emacsconf-replace-plist-in-string (append talk (list :base-url emacsconf-base-url :bbb-redirect-url bbb-redirect-url)) (pcase status ('open " The live Q&A room for ${title} is now open. You should be redirected to ${bbb-room} automatically, but if not, please visit the URL manually to join the Q&A.") ('before " The Q&A room for ${title} is not yet open. This page will refresh every 5 seconds until the BBB room is marked as open, or you can refresh it manually.") ('after " The Q&A room for ${title} has finished. You can find more information about the talk at ${base-url}${url}.") (_ " There is no live Q&A room for ${title}. You can find more information about the talk at ${base-url}${url}." ) )))))) (defun emacsconf-publish-media-files-on-change (talk) "Publish the files and update the index." (interactive (list (emacsconf-complete-talk-info))) (let ((org-state (if (boundp 'org-state) org-state (plist-get talk :status)))) (when (or (string= org-state "PLAYING") (string= org-state "TO_STREAM")) (if (plist-get talk :public) ;; Copy main extension files from backstage to public (let ((files (directory-files emacsconf-backstage-dir nil (concat "^" (regexp-quote (plist-get talk :video-slug)) (regexp-opt emacsconf-main-extensions))))) (mapc (lambda (file) (copy-file (expand-file-name file emacsconf-backstage-dir) (expand-file-name file emacsconf-public-media-directory) t)) files)) ;; Remove files from public (let ((files (directory-files emacsconf-public-media-directory nil (concat "^" (regexp-quote (plist-get talk :video-slug) ))))) (mapc (lambda (file) (delete-file (expand-file-name file emacsconf-public-media-directory))) files))) (emacsconf-publish-public-index)))) (defun emacsconf-publish-bbb-redirect-all () (interactive) (unless (file-directory-p emacsconf-publish-current-dir) (make-directory emacsconf-publish-current-dir)) (mapc #'emacsconf-publish-bbb-redirect (emacsconf-filter-talks (emacsconf-get-talk-info)))) ;; (emacsconf-publish-bbb-redirect '(:slug "test" :status "TO_STREAM" :bbb-room "https://bbb.emacsverse.org/b/sac-fwh-pnz-ogz" :title "Test room" :q-and-a "live" :url "2022/talks/test")) ;; (emacsconf-publish-bbb-redirect '(:slug "test" :status "CLOSED_Q" :bbb-room "https://bbb.emacsverse.org/b/sac-fwh-pnz-ogz" :title "Test room" :q-and-a "live" :url "2022/talks/test")) ;; (emacsconf-publish-bbb-redirect '(:slug "test" :status "OPEN_Q" :bbb-room "https://bbb.emacsverse.org/b/sac-fwh-pnz-ogz" :title "Test room" :q-and-a "live" :url "2022/talks/test")) ;; (emacsconf-publish-bbb-redirect '(:slug "test" :status "UNSTREAMED_Q" :bbb-room "https://bbb.emacsverse.org/b/sac-fwh-pnz-ogz" :title "Test room" :q-and-a "live" :url "2022/talks/test")) ;; (emacsconf-publish-bbb-redirect '(:slug "test" :status "TO_ARCHIVE" :bbb-room "https://bbb.emacsverse.org/b/sac-fwh-pnz-ogz" :title "Test room" :q-and-a "live" :url "2022/talks/test")) (provide 'emacsconf-publish)