X-Git-Url: https://thelambdalab.xyz/gitweb/index.cgi?p=scratchy.git;a=blobdiff_plain;f=examples%2Fbrowse-git.scm;h=9edd5855254336810b844496c18f17872198decb;hp=ec7ea421ee5cdf91d5c697a2ad4ee67b52e508c7;hb=3ae59eae730bb15ef86c1f64824a5f62ca1ee4a1;hpb=c5e4ec439dd641681fe72c5d7712fbf20f1200f0 diff --git a/examples/browse-git.scm b/examples/browse-git.scm index ec7ea42..9edd585 100644 --- a/examples/browse-git.scm +++ b/examples/browse-git.scm @@ -5,6 +5,9 @@ ;; repository REPO should then be reachable at the selector ;; browse-git.scm|REPO. ;; +;; A zip archive of the repository can be retrieved using +;; the selector browse-git.scm|REPO||zip. +;; ;; You may optionally include a file named project-description ;; in each repository, which will be displayed at the top ;; of the page when the repository tree is served. @@ -19,13 +22,13 @@ (chicken io) (chicken pathname) (chicken file) + (chicken port) srfi-13) (define git-base-url "git://MY.GIT.SERVER/") (define git-base-dir "/path/to/git/repositories/") - - (define (git . args) + (define (with-input-from-git args thunk) (let ((repo-pathname (make-pathname git-base-dir repo))) (if (not (string-prefix? git-base-dir (normalize-pathname repo-pathname))) (error "Invalid git repository.")) @@ -33,11 +36,25 @@ repo-pathname (lambda () (let-values (((in-port out-port id) (process "git" args))) - (let ((result (read-lines in-port))) + (let ((result (with-input-from-port in-port thunk))) (close-input-port in-port) (close-output-port out-port) result)))))) + (define (git . args) + (with-input-from-git args read-lines)) + + (define (git-dump . args) + (with-input-from-git + args + (lambda () + (let loop ((b (read-byte))) + (if (eof-object? b) + 'done + (begin + (write-byte b) + (loop (read-byte)))))))) + (define (serve-tree) (let ((entries (git "ls-tree" branch path)) (references (git "show-ref" "--heads")) @@ -96,9 +113,13 @@ (git "cat-file" "blob" (conc branch ":" path))) (print ".\r")) + (define (serve-zip) + (git-dump "archive" "--format=zip" branch)) + (let ((type (string->symbol type-str))) (case type ((tree) (serve-tree)) ((blob) (serve-blob)) + ((zip) (serve-zip)) (else (error "Unsupported git object."))))))