blob: 751e1b115a89f7384e31c634a4c4423789a1969b (
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
|
;;;; vampire.lisp
(in-package #:vampire)
;;; SYSTEM CONFIG COMPONENT
(defvar *config* nil)
(defclass/std config ()
((datastore-directory :ir :std #P"/srv/vampire/store/")
(static-directory :ir :std #P"/srv/vampire/static/")
(swank-port :std nil :doc "If set, swank is started on this port.")
(host :std "0.0.0.0")
(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)))
;;; MAIN
(defun main (body)
(if (session-user body)
(setf (url (location body)) "/home")
(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 redirect-to-root (body)
(setf (url (location body)) "/"))
(defun when-logged-in? (fn)
(<?> 'session-user fn 'redirect-to-root))
(defun start-vampire (config)
(setf *config* config)
(initialize-database config )
(start-downloader-service config)
(clog:initialize 'main
:port (port config)
:host (host config)
:extended-routing t
:static-root (static-directory config))
(set-on-new-window (when-logged-in? 'user-home-page) :path "/home")
(set-on-new-window (when-logged-in? 'user-listing-page) :path "/user")
(set-on-new-window 'login-page :path "/login")
(set-on-new-window (when-logged-in? 'playlist-page) :path "/playlist")
(set-on-new-window 'new-accout-page :path "/new-account")
(set-on-new-window (when-logged-in? 'explore-page) :path "/explore")
(when (swank-port config)
(swank:create-server :port (swank-port config))))
(defun hacking-start ()
(start-vampire (make-instance
'config
:static-directory (merge-pathnames "vampire-static/" (user-homedir-pathname))
:datastore-directory (merge-pathnames "vampire-store/" (user-homedir-pathname))))
(clog:open-browser))
|