-
-
Save randylien/7019b1952f15d5c3245341f9e332672c to your computer and use it in GitHub Desktop.
Fetch & write a binary file using Clojure and clj-http
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns the-namespace.core | |
(:require [clj-http.client :as client] | |
[clojure.java.io :as io])) | |
(defn- fetch-photo! | |
"makes an HTTP request and fetches the binary object" | |
[url] | |
(let [req (client/get url {:as :byte-array :throw-exceptions false})] | |
(if (= (:status req) 200) | |
(:body req)))) | |
(defn- save-photo! | |
"downloads and stores the photo on disk" | |
[photo] | |
(let [p (fetch-photo! (:url photo))] | |
(if (not (nil? p)) | |
(with-open [w (io/output-stream (str "photos/" (:id photo) ".jpg"))] | |
(.write w p))))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment