aboutsummaryrefslogtreecommitdiffhomepage
path: root/vampire.lisp
blob: 8669da7c3211e5c1b70e7fa698756793659513db (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
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
;;;; vampire.lisp

(in-package #:vampire)

;;; SYSTEM CONFIG COMPONENT

(defvar *config* nil)

(defclass/std config ()
  ((datastore-directory :ir :std #P"/srv/parasite/store/")
   (static-directory :ir :std #P"/srv/parasite/static/")
   (port :ir :std 4919)
   (downloader-threads :ir :std 5)))

(defun config-from-file (path)
  "PATH should be a path to a file containing a PLIST suitable for
   passing as the keyword arguments to (MAKE-INSTANCE 'CONFIG ...)"
  (apply #'make-instance 'config (read-from-file path)))

;;; RESOURCE MODEL

(defclass/bknr keyed ()
  ((key
    :r :std (nuid)
    :index-type string-unique-index
    :index-reader object-with-key)))

(defclass/bknr playlist (keyed)
  ((title :with :std (default-name "playlist"))
   (tracks editors :with :std (list))
   (cover-image :with :std nil :doc "A url to the cover of this album.")
   (user :with
         :std (error "A USER is required to have created the content."))))

(defmethod initialize-instance :after ((pl playlist) &key)
  (pushnew pl (user-playlists (playlist-user pl)) :test #'eq))

(defclass/bknr track (keyed)
  ((source file title artist album thumb-url duration codec :with)
   (playlists :with :std (list) :doc "A list of playlists in which this track appears")))

(defclass/bknr user (keyed)
  ((name :with :std "")
   (playlists :with :std (list))
   (pw pwhash :with)))

;;; RESOURCE ACCESS OPERATIONS 

(defun playlist-duration (pl)
  (reduce #'+
          (playlist-tracks pl)
          :key 'track-duration 
          :initial-value 0))

(defun add-track (tr pl &optional (n -1))
  (setf (playlist-tracks pl)
        (insert-nth tr n (playlist-tracks pl))))

(defun remove-nth-from-playlist (pl n)
  (multiple-value-bind (newlist track)
      (remove-nth n (playlist-tracks pl) t) 
    (setf (playlist-tracks pl) newlist
          (track-playlists track) (delete pl (track-playlists track)
                                          :test #'eq :count 1))))

;;; TRANSACTIONS

(defun append-track (pl tr)
  (with-transaction ()
    (add-track tr pl)))

(defun new-user (&key name)
  (with-transaction ()
    (make-instance 'user :name name)))

(defun new-playlist (user &key title)
  (with-transaction ()
    (make-instance 'playlist :title title :user user)))

(defun new-track (file trackinfo)
  "Trackinfo is a plist containing information about the track to create."
  (with-transaction ()
    (let ((track (apply #'make-instance 'track trackinfo)))
      (setf (track-file track) (namestring file))
      track)))

;;; CLIENT

(defparameter +user-key+ "vampire.userkey")

(defun user-key (window)
  (jonathan:parse (storage-element window :local +user-key+)))

(defun (setf user-key) (val window)
  (setf (storage-element window :local +user-key+) (jonathan:to-json val)))

(defun session-user (clog-obj)
  (object-with-key (user-key (window (connection-body clog-obj)))))

(defun create-new-playlist-form (parent &rest args)
  (declare (ignorable args))
  (with-clog-create parent
      (div ()
           (section (:h2 :content "Create New Playlist"))
           (label (:content "Playlist Title:"))
           (form-element (:text :bind pl-title))
           (button (:content "Create" :bind btn)))
    (set-on-click
     btn
     (alambda
       (new-playlist (session-user parent) :title (value pl-title))
       (reload (location (connection-body parent)))))))

(defun url-to-playlist (pl location)
  (format nil "~a//~a/playlist/~a"
          (protocol location)
          (host location)
          (key pl)))

(defun create-playlist-listing (parent &rest args)
  (declare (ignorable args))
  (dolist (pl (user-playlists (session-user parent)))
    (let ((url
            (url-to-playlist pl (location (connection-body parent)))))
      (with-clog-create parent
          (div ()
               (section (:h4)
                        (a (:link url :content (playlist-title pl) :bind pl-link))))
        (set-on-click
         pl-link
         (alambda
           (setf (url (location (connection-body parent)))
                 url)))))))

(defun media-url-path (track)
  (format nil "/media/~a.~a"
          (pathname-name (track-file track))
          (pathname-type (track-file track))))

(defun track-listing-line (track)
  (with-slots (artist title) track
    (with-output-to-string (out)
      (when artist
        (princ artist out)
        (princ " - " out))
      (princ title out))))


;;; PLAYLIST CONTROL

(defclass/std playlist/ctl ()
  ((playlist track-display audio->track now-playing :std nil)))

(defclass/std track-display ()
  ((title-elem
    thumb-elem
    artist-elem
    time-elem
    duration-elem)))

(defun get-audio-track (ctl audio)
  (cdr (assoc audio (audio->track ctl))))

(defun get-next-audio-track (ctl &optional audio)
  (with-slots (audio->track) ctl
   (if (null audio)
       (first audio->track)
       (let ((pos
               (position audio audio->track :key #'car)))
         (assert pos () "Audio element ~a not found in this playlist control." audio)
         (nth (1+ pos) audio->track)))))

(defun stop-playback (ctl)
  (with-slots (now-playing) ctl
    (when now-playing
      (pause-media now-playing)
      (setf (media-position now-playing) 0
            now-playing nil))))

(defun pause-playback (ctl)
  (when-let  (audio (now-playing ctl))
    (pause-media audio)))

(defun start-playback (ctl)
  (when-let (audio (now-playing ctl))
    (play-media audio)))

(defun load-track-display (ctl)
  (when-let (track (get-audio-track ctl (now-playing ctl)))
    (with-slots
          (title-elem thumb-elem artist-elem
           time-elem duration-elem)
        (track-display ctl)
      (with-slots (title artist thumb-url duration) track
        (setf (text title-elem) title
              (text duration-elem) (secs-to-hms duration)
              (text time-elem) (secs-to-hms 0)
              (url-src thumb-elem) thumb-url)))))

(defun initialize-playlist/ctl (body)
  (let ((ctl (playlist/ctl body)))
    (setf now-playing (car (first (audio->track ctl))))
    (load-track-display ctl)))

(defun playlist/ctl (obj)
  (connection-data-item obj "playlist/ctl"))

(defun install-playlist/ctl (playlist obj)
  (setf (connection-data-item obj "playlist/ctl")
        (make-instance 'playlist/ctl :playlist playlist)))

(defun install-track-display (thumb title artist time dur)
  (let ((ctl (playlist/ctl thumb)))
    (setf (track-display ctl)
          (make-instance 'track-display
                         :duration-elem dur
                         :time-elem time
                         :artist-elem artist
                         :thumb-elem thumb
                         :title-elem title))))

(defun install-audio-track (audio track &optional (position -1))
  (when-let (ctl (playlist/ctl audio))
    (setf (audio->track ctl)
          (insert-nth (cons audio track) position (audio->track ctl)))))

(defun ctl/now-playing (elem)
  (when-let (ctl (playlist/ctl elem))
    (now-playing ctl)))

(defun ctl/pause (elem)
  (when-let (ctl (playlist/ctl elem))
    (pause-playback ctl)))

(defun ctl/stop (elem)
  (when-let (ctl (playlist/ctl elem))
    (stop-playback ctl)))

(defun ctl/play-audio (audio)
  (when-let (ctl (playlist/ctl audio))
    (stop-playback ctl)
    (setf (now-playing ctl) audio)
    (start-playback ctl)
    (load-track-display ctl)))

(defun ctl/toggle-play (elem)
  (if-let (now (ctl/now-playing elem))
    (if (pausedp now) (play-media now) (pause-media now))
    (ctl/next-track elem)))

(defun ctl/next-track (elem)
  (when-let (ctl (playlist/ctl elem))
    (let ((next
            (get-next-audio-track ctl (now-playing ctl))))
      (stop-playback ctl)
      (when next
        (setf (now-playing ctl) (car next))
        (start-playback ctl)
        (load-track-display ctl)))))

(defun ctl/update-playback-time (audio)
  (when-let (ctl (playlist/ctl audio))
    (setf (text (time-elem (track-display ctl)))
          (secs-to-hms (media-position audio)))))

;;; 

(defun create-track-list-item (parent track)
  (with-clog-create parent
      (div ()
           (p ()
              (button (:content "⏵" :bind btn))
              (span (:content (track-listing-line track)))
              (span (:content (secs-to-hms (or (track-duration track) 0)))))
           (audio (:source (media-url-path track) :controls nil :bind audio)))
    (install-audio-track audio track)
    (set-on-time-update 
     audio
     'ctl/update-playback-time)
    (set-on-ended
     audio
     (alambda (ctl/next-track audio)))
    (set-on-click
     btn
     (alambda
         (ctl/play-audio audio)))))

(defun create-track-listing (parent playlist &rest args)
  (declare (ignorable args))
  (let ((list (create-ordered-list parent))) 
    (dolist (track (playlist-tracks playlist))
      (with-clog-create list
          (list-item () 
                     (track-list-item (track)))))))

(defun create-track-form (parent playlist &rest args)
  (declare (ignorable args))
  (with-clog-create parent
      (div ()
           (section (:h3 :content "Add Track"))
           (label (:content "Paste URL: " :bind url-label))
           (form-element (:text :bind url-input))
           (button (:content "Fetch Track" :bind submit-button))
           (div (:bind notice-area)))
    (label-for url-label url-input)
    (setf (place-holder url-input) "https://www.youtube.com/watch?v=dQw4w9WgXcQ")
    (set-on-click
     submit-button
     (alambda
         (let* ((url
                  (value url-input))
                (notice
                  (create-p notice-area :content (format nil "... Fetching ~a" url))))
           (setf (value url-input) "")
           (add-fetch-track-job
            url
            (lambda (track)
              (append-track playlist track)
              (reload (location (connection-body parent))))
            (lambda (err)
              (remove-from-dom notice)
              (format t "Error: ~a~%" err)
              (alert (window (connection-body parent))
                     (format nil "Error whiel fetching track at: ~a~%"
                             url)))))))))

(defun playlist-key-from-url (url)
  (first (last (ppcre:split "/" (nth 4 (multiple-value-list (quri:parse-uri url)))))))

(defun create-track-display (obj)
  (with-clog-create obj
      (div ()
           (section (:h3 :content "Now Playing"))
           (img (:bind thumb-elem))
           (p (:bind title-elem))
           (p (:bind artist-elem :hidden t))
           (p ()
              (span (:bind time-elem))
              (span (:content "/"))
              (span (:bind duration-elem)))
           (button (:bind stop-button :content "⏹"))
           (button (:bind next-button :content "⏭"))
           (button (:bind pause/play-button :content "⏯")))
    (setf (height thumb-elem) 120)
    (set-on-click stop-button 'ctl/stop)
    (set-on-click next-button 'ctl/next-track)
    (set-on-click pause/play-button 'ctl/toggle-play)
    (install-track-display thumb-elem title-elem artist-elem time-elem duration-elem)))

(defun playlist-page (body)
  (when-let* ((listid
               (playlist-key-from-url (url (location body))))
              (playlist
               (object-with-key listid)))
    (install-playlist/ctl playlist body)
    (with-clog-create body
        (div ()
             (section (:h2 :content (format nil "~a -- ~a"
                                            (playlist-title playlist)
                                            (secs-to-hms (playlist-duration playlist)))))
             (track-display ())
             (div () (track-listing (playlist)))
             (track-form (playlist))))))

(defun user-page (body)
  (if-let (user (session-user body)) 
    (with-clog-create body
        (div ()
             (p (:content (format nil "Welcome ~a" (user-name user))))
             (new-playlist-form ())
             (playlist-listing ())))
    (setf (url (location body)) "/")))

(defun login-page (body)
  (with-clog-create body
      (div ()
           (p (:content "LOGIN"))
           (form-element (:text :bind name))
           (button (:bind btn :content "Click here to log in")))
    (set-on-click
     btn
     (lambda (obj)
       (declare (ignore obj))
       (let ((u (new-user :name (value name))))
         (setf (user-key (window body)) (key u))
         (setf (url (location body)) "/"))))))

(defun main (body)
  (if (session-user body)
      (setf (url (location body)) "/user")
      (setf (url (location body)) "/login")))

;;; STARTUP

(defun initialize-database (config)
  (ensure-directories-exist (datastore-directory config))
  (make-instance
   'bknr.datastore:mp-store
   :directory (datastore-directory config)
   :subsystems (list (make-instance 'bknr.datastore:store-object-subsystem))))

(defun start (config)
  (setf *config* config)
  (initialize-database config )
  (start-downloader-service config)
  (initialize 'main
              :extended-routing t
              :static-root (static-directory config))
  (set-on-new-window 'user-page :path "/user")
  (set-on-new-window 'login-page :path "/login")
  (set-on-new-window 'playlist-page :path "/playlist")
  (open-browser))

(defun hacking-start ()
  (start (make-instance
          'config
          :static-directory (merge-pathnames "vampire-static/" (user-homedir-pathname))
          :datastore-directory (merge-pathnames "vampire-store/" (user-homedir-pathname)))))