aboutsummaryrefslogtreecommitdiffstats
path: root/yeetube-buffer.el
blob: c50c874554342a50f73d01c83d3a91a91e1bddd3 (plain)
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
;;; yeetube.el --- Yeetube Buffer  -*- lexical-binding: t; -*-

;; Copyright (C) 2023  Thanos Apollo

;; Author: Thanos Apollo <[email protected]>
;; Keywords: extensions youtube videos
;; URL: https://git.thanosapollo.com/yeetube
;; Version: 0.0.1

;; Package-Requires: ((emacs "27.2"))

;; 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 <https://www.gnu.org/licenses/>.

;;; Commentary:

;; This package provides yeetube-buffer functionality

;; TODO: Fix titles with emojis (ruin formatting)
;;; Code:

(require 'yeetube)

(defun yeetube-buffer-fix-title (title)
  "Adjust TITLE."
  (let ((replacements '(("&amp;" . "&")
                        ("&quot;" . "\"")
                        ("&#39;" . "'")
			("u0026" . "&")
			("\\\\" . ""))))
    (mapc (lambda (replacement)
            (setf title (replace-regexp-in-string (car replacement) (cdr replacement) title)))
          replacements)
    title))

(defun yeetube-buffer-fix-view-count (view-count)
  "Fix VIEW-COUNT display issues."
  (replace-regexp-in-string "[^0-9]" "" view-count))

(defun yeetube-buffer-view-count-add-commas (string)
  "Add commas for STRING."
  (let ((result "")
        (len (length string)))
    (dotimes (i len)
      (setf result (concat (substring string (- len i 1) (- len i)) result))
      (when (and (> (- len (1+ i)) 0)
                 (= (% (1+ i) 3) 0))
        (setf result (concat "," result))))
    result))

(defun yeetube-buffer-render-header (query)
  "Render header for *yeetube* buffer for QUERY."
  (header-line-indent-mode)
  (setf header-line-format
	(concat
	 (format "Yeetube Search: %s" (propertize query 'face 'message-header-subject)))))

;; Inspired from ytel
(defun yeetube--format-title (title)
  "Format a video TITLE to be inserted in the *yeetube* buffer."
  (let* ((n (string-width title))
	 (extra-chars (- n 60))
	 (formatted-string (if (<= extra-chars 0)
			       (concat title
				       (make-string (abs extra-chars) ?\ )
				       " ")
			     (concat (seq-subseq title 0 60)
				     " "))))
    formatted-string))

(defun yeetube--format-view-count (view-count)
  "Format a video VIEW-COUNT to be inserted in the *yeetube* buffer."
  (let* ((n (string-width view-count))
	 (extra-chars (- n 20))
	 (formatted-string (if (<= extra-chars 0)
			       (concat view-count
				       (make-string (abs extra-chars) ?\ )
				       " ")
			     (concat (seq-subseq view-count 0 20)
				     "..."))))
    (propertize formatted-string 'face 'message-header-name)))

(defun yeetube--format-video-duration (video-duration)
  "Format a video VIDEO-DURATION to be inserted in the *yeetube* buffer."
  (let* ((n (string-width video-duration))
	 (extra-chars (- n 20))
	 (formatted-string (if (<= extra-chars 0)
			       (concat video-duration
				       (make-string (abs extra-chars) ?\ )
				       " ")
			     (concat (seq-subseq video-duration 0 20)
				     "..."))))
    (propertize formatted-string 'face 'message-header-xheader)))

(defun yeetube-buffer-create (query content buffer-mode)
  "Create *yeetube* buffer with MODE for QUERY, displaying CONTENT."
  (with-current-buffer
      (switch-to-buffer (get-buffer-create "*yeetube*")
			(funcall buffer-mode))
    (erase-buffer)
    (pop content) ;; Remove filtes
    (yeetube-buffer-render-header query)
    (dolist (info (reverse content))
		  (let ((title (yeetube-buffer-fix-title (car info)))
			(view-count (caddr info))
			(video-duration (cadddr info)))
		    (insert (yeetube--format-title
			     (format "%s "
				    (propertize title 'face 'message-header-subject))))
		    ;; Add commas, using this in yeetube-buffer-fix-view-count
		    ;; causes display issues with unicode characters
		    (end-of-line)
		    (insert  (format "| %s"
			     (yeetube--format-view-count
				    (if (< (length view-count) 20)
					 (yeetube-buffer-view-count-add-commas
					  (yeetube-buffer-fix-view-count view-count))
				      "nil")))
			     (format "%s\n"
				     (yeetube--format-video-duration
				      (if (string-match-p "^[0-9:]+$" video-duration)
					  video-duration
					"nil"))))))))

(provide 'yeetube-buffer)
;;; yeetube-buffer.el ends here