factor/extra/mason/docs/docs.factor

34 lines
816 B
Factor
Raw Normal View History

2010-09-07 00:43:51 -04:00
! Copyright (C) 2008, 2010 Slava Pestov.
! See http://factorcode.org/license.txt for BSD license.
2014-11-15 19:20:49 -05:00
USING: hashtables http.client io.files.temp io.pathnames kernel
mason.common mason.config namespaces sequences ;
2010-09-07 00:43:51 -04:00
IN: mason.docs
2010-09-07 00:43:51 -04:00
: make-docs-archive ( -- )
[
{ "tar" "cfz" }
"docs.tar.gz" temp-file suffix
"docs" suffix
short-running-process
] with-cache-directory ;
2010-09-07 00:43:51 -04:00
: upload-docs-archive ( -- )
"docs.tar.gz" temp-file
2010-09-07 00:43:51 -04:00
docs-username get
docs-host get
docs-directory get "docs.tar.gz" append-path
upload-safely ;
2010-09-07 00:43:51 -04:00
: notify-docs ( -- )
status-secret get "secret" associate
docs-update-url get
http-post
2drop ;
: upload-docs ( -- )
upload-docs? get [
make-docs-archive
upload-docs-archive
notify-docs
] when ;