Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…

(ns feedeen-stat.core | |
(:gen-class) | |
(:require [clj-http.client :as client] | |
[buddy.sign.jwt :as jwt] | |
[clj-time.core :refer [now plus hours minutes]] | |
[clj-time.coerce :refer [to-epoch]] | |
[clojure.data.json :as json])) | |
(defn feedeen-api-url | |
[path] | |
(str | |
; "http://localhost:8000/api" | |
"https://www.feedeen.com/api" | |
path)) | |
(defn make-claim | |
[dev-client-id] | |
{:iss dev-client-id | |
:aud (feedeen-api-url "/auth") | |
:exp (-> (now) (plus (hours 1)))}) | |
(defn make-jwt-token | |
[claim dev-secret] | |
(-> claim (jwt/sign dev-secret {:alg :hs256}))) | |
(defn get-access-token | |
[jwt-token] | |
(-> | |
"/auth" | |
feedeen-api-url | |
(client/post | |
{:as :x-www-form-urlencoded | |
:form-params {:grant_type "urn:ietf:params:oauth:grant-type:jwt-bearer" | |
:assertion jwt-token}}) | |
:body | |
(json/read-str :key-fn keyword) | |
:access_token)) | |
(defn api-request | |
[access-token path] | |
(-> path | |
feedeen-api-url | |
(client/get | |
{:headers {:Authorization (str "Bearer " access-token)}}) | |
:body | |
(json/read-str :key-fn keyword))) | |
(defn get-feeds | |
[access-token] | |
(api-request access-token "/api/feeds")) | |
(defn get-items-count | |
[access-token & {:keys [mode] :or {mode "default"}}] | |
(api-request access-token | |
(str "/items/count?mode=" mode))) | |
(defn -main | |
"main" | |
([] | |
(println "Usage: $0 <CLIENT_ID> <SECRET>") | |
(System/exit 1)) | |
([dev-client-id dev-secret] | |
(let [access-token (-> (make-claim dev-client-id) (make-jwt-token dev-secret) get-access-token) | |
total (-> (get-items-count access-token :mode "total") :total)] | |
(println total)))) |