r2676: Auto commit for Debian build
[lml.git] / downloads.cl
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          downloads.cl
6 ;;;; Purpose:       Generate downloads page
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Aug 2002
9 ;;;;
10 ;;;; $Id: downloads.cl,v 1.3 2002/09/16 03:16:09 kevin Exp $
11 ;;;;
12 ;;;; This file, part of LML, is Copyright (c) 2002 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; LML users are granted the rights to distribute and use this software
15 ;;;; as governed by the terms of the GNU General Public License v2
16 ;;;; (http://www.gnu.org/licenses/gpl.html)
17 ;;;; *************************************************************************
18
19 (declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0)))
20 (in-package :lml)
21
22
23 (defvar *ftp-base*)
24 (defvar *ftp-url*)
25 (defvar *base-name*)
26 (defvar *section-indent* 0)
27 (defvar *signed* nil)
28
29 (defun list-files (files)
30   "List files in a directory for downloading"
31   ;;files.sort()
32   (mapcar #'print-file files))
33
34 (defun strip-ftp-base (file)
35   (let ((fdir (pathname-directory file))
36         (bdir (pathname-directory *ftp-base*)))
37     (make-pathname
38      :name (pathname-name file)
39      :type (pathname-type file)
40      :directory 
41      (when (> (length bdir) (length fdir))
42        (append '(:absolute) 
43                (subseq (length bdir) (length fdir) fdir))))))
44      
45 (defun print-file (file)
46   (let ((size 0)
47         (modtime (date-string (file-write-date file)))
48         (basename (namestring
49                    (make-pathname :name (pathname-name file)
50                                   :type (pathname-type file))))
51         (ftp-name (strip-ftp-base file))
52         (sig-path 
53          (make-pathname :defaults file
54                         :type 
55                         (concatenate 'string
56                                      (pathname-type file) ".asc"))))
57     (with-open-file (strm file :direction :input)
58       (setq size (round (/ (file-length strm) 1024))))
59     (lml-print "<a href=\"~A~A\">~A</a>" *ftp-url* ftp-name basename)
60     (lml-print "<span class=\"modtime\">")
61     (lml-print " (~A, <b>~:D <span style=\"font-size:90%;\">KB</span></b>)</span>" modtime size)
62     (when (probe-file sig-path)
63       (setq *signed* t)
64       (lml-print " [<a href=\"~A~A.asc\">Signature</a>]" *ftp-url* ftp-name))
65      (br)))
66
67 (defun display-header (name url)
68   (lml-print "<h1>Download</h1>")
69   (lml-print "<div class=\"mainbody\">")
70   (lml-print "<h3>Browse ~A FTP Site</h3>" name)
71   (lml-print "<a style=\"padding-left:20pt;\" href=\"~A\">~A</a>" url url))
72
73 (defun display-footer ()
74   (when *signed*
75     (lml-print "<h3>GPG Public Key</h3>")
76     (lml-print "Use this <a href=\"https://www.b9.com/key.asc\">key</a> to verify file signtatures"))
77   (lml-print "</div>"))
78   
79 (defun print-sect-title (title)
80   (lml-print "<h~D>~A</h~D>" *section-indent* title *section-indent*))
81   
82 (defun filter-against-base (files)
83   (let ((filtered '()))
84     (dolist (f files)
85       (let ((name (pathname-name f)))
86         (when
87             (block search
88               (dotimes (i (length *base-name*))
89                 (declare (fixnum i))
90                 (unless (char= (char *base-name* i)
91                                (char name i))
92                   (return-from search nil)))
93               t)
94           (push f filtered))))
95     (when filtered
96       (sort filtered #'(lambda (a b) (when (and a b)
97                                        (string<
98                                         (namestring a)
99                                         (namestring b))))))))
100
101 (defun display-one-section (title pat)
102   (let ((files (filter-against-base (directory pat))))
103     (when files
104       (print-sect-title title)
105       (lml-print "<div style=\"padding-left: 20pt;\">")
106       (list-files files)
107       (lml-print"</div>"))))
108
109
110 (defun display-sections (sects)
111   (when sects
112     (let ((title (car sects))
113           (value (cadr sects)))
114       (if (consp title)
115           (mapcar #'display-sections sects)
116         (if (consp  value)
117             (progn
118               (print-sect-title title)
119               (incf *section-indent*)
120               (display-sections value)
121               (decf *section-indent*))
122           (display-one-section title value))))))
123       
124 (defun display-page (pkg-name pkg-base ftp-base ftp-url sects)
125   (let ((*section-indent* 3)
126         (*ftp-base* ftp-base)
127         (*ftp-url* ftp-url)
128         (*base-name* pkg-base)
129         (*signed* nil))
130     (display-header pkg-name ftp-url)
131     (mapcar #'display-sections sects)
132     (display-footer)))
133
134 (defun std-dl-page (pkg-name pkg-base ftp-base ftp-url)
135   (let ((base (parse-namestring ftp-base)))
136     (let ((tgz-path (make-pathname :defaults base :type "gz" :name :wild))
137           (zip-path (make-pathname :defaults base :type "zip" :name :wild))
138           (doc-path (make-pathname :defaults base :type "pdf" :name :wild)))
139       (display-page pkg-name pkg-base ftp-base ftp-url
140                     `(("Manual" ,doc-path)
141                       ("Source Code"
142                        (("Unix (.tar.gz)" ,tgz-path)
143                         ("Windows (.zip)" ,zip-path))))))))
144   
145 (defun full-dl-page (pkg-name pkg-base ftp-base ftp-url)
146   (let ((base (parse-namestring ftp-base)))
147     (let ((tgz-path (make-pathname :defaults base :type "gz" :name :wild))
148           (zip-path (make-pathname :defaults base :type "zip" :name :wild))
149           (doc-path (make-pathname :defaults base :type "pdf" :name :wild))
150           (deb-path (merge-pathnames
151                      (make-pathname :directory '(:relative "linux-debian")
152                                     :type :wild :name :wild)
153                      base))
154           (rpm-path (merge-pathnames
155                      (make-pathname :directory '(:relative "linux-rpm")
156                                     :type :wild :name :wild)
157                      base))
158           (w32-path (merge-pathnames
159                      (make-pathname :directory '(:relative "w32")
160                                     :type :wild :name :wild)
161                      base)))
162       (display-page pkg-name pkg-base ftp-base ftp-url
163                     `(("Manual" ,doc-path)
164                       ("Source Code"
165                        (("Unix (.tar.gz)" ,tgz-path)
166                         ("Windows (.zip)" ,zip-path)))
167                       ("Binaries" 
168                        (("Linux Binaries"
169                          (("Debian Linux" ,deb-path)
170                           ("RedHat Linux" ,rpm-path)))
171                         ("Windows Binaries" ,w32-path))))))))