X-Git-Url: http://gitweb.michael.orlitzky.com/?p=dead%2Flwn-epub.git;a=blobdiff_plain;f=src%2FMain.hs;fp=src%2FMain.hs;h=a1230d60e836c08e849f9c40e78b34e6c4925151;hp=88ba39c5ff493cd9b3b0acafc9992738d080138f;hb=fc0052e451aa03675ebd9a128dfa46573b9357d7;hpb=aad40cd8e1e8c84c5fc294674a7159bb40838440 diff --git a/src/Main.hs b/src/Main.hs index 88ba39c..a1230d6 100644 --- a/src/Main.hs +++ b/src/Main.hs @@ -2,6 +2,7 @@ module Main where +import System.Directory (doesFileExist) import System.IO ( Handle, IOMode (WriteMode), @@ -10,6 +11,8 @@ import System.IO ( import CommandLine (show_help) import Configuration (Cfg(..), get_cfg) +import LWN.Article (real_article_path) +import LWN.HTTP (get_login_cookie) import LWN.Page (epublish, page_from_url) @@ -24,9 +27,18 @@ get_output_handle path = openBinaryFile path WriteMode +argument_is_file :: Cfg -> IO Bool +argument_is_file cfg = do + path <- real_article_path (article cfg) + doesFileExist path + main :: IO () main = do - cfg <- get_cfg + cfg' <- get_cfg + aif <- argument_is_file cfg' + cfg <- case aif of + False -> get_login_cookie cfg' + True -> return cfg' page <- page_from_url cfg (article cfg) case page of Just p -> do