2020-04-25 11:42:54 +00:00
|
|
|
; Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
; or more contributor license agreements. See the NOTICE file
|
|
|
|
; distributed with this work for additional information
|
|
|
|
; regarding copyright ownership. The ASF licenses this file
|
|
|
|
; to you under the Apache License, Version 2.0 (the
|
|
|
|
; "License"); you may not use this file except in compliance
|
|
|
|
; with the License. You may obtain a copy of the License at
|
|
|
|
;
|
|
|
|
; http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
;
|
|
|
|
; Unless required by applicable law or agreed to in writing, software
|
|
|
|
; distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
; See the License for the specific language governing permissions and
|
|
|
|
; limitations under the License.
|
|
|
|
(ns dda.masto-embed.api
|
|
|
|
(:require
|
|
|
|
["mastodon-api" :as Mastodon]
|
2020-06-19 15:26:34 +00:00
|
|
|
[dda.masto-embed.infra :as infra]
|
2020-06-24 17:53:04 +00:00
|
|
|
[cljs-time.format :as t]
|
2020-04-25 11:42:54 +00:00
|
|
|
[clojure.spec.alpha :as s]
|
2020-06-19 15:31:30 +00:00
|
|
|
[orchestra.core :refer-macros [defn-spec]]))
|
2020-04-30 07:17:48 +00:00
|
|
|
|
2020-04-25 11:42:54 +00:00
|
|
|
(s/def ::account-id string?)
|
|
|
|
(s/def ::host-url string?)
|
|
|
|
|
2020-06-23 18:09:00 +00:00
|
|
|
(defn mastojs->edn [response]
|
2020-06-19 15:26:34 +00:00
|
|
|
(-> response .-data infra/js->edn))
|
2020-04-25 11:42:54 +00:00
|
|
|
|
2020-06-24 17:53:04 +00:00
|
|
|
(defn mastocard->html [card]
|
|
|
|
(when (some? card)
|
|
|
|
(let [{:keys [title description image url]} card]
|
|
|
|
[:div {:class "card" :url url}
|
|
|
|
(when (some? image)
|
2020-07-08 07:23:28 +00:00
|
|
|
[:img {:class "card-img-top" :src image}])
|
|
|
|
[:h3 {:class "card-title"} title]
|
|
|
|
[:p {:class "card-body"} description]])))
|
2020-06-24 17:53:04 +00:00
|
|
|
|
|
|
|
(defn masto->html [statuses]
|
2020-07-08 07:23:28 +00:00
|
|
|
[:ul {:class "list-group"}
|
2020-06-24 17:53:04 +00:00
|
|
|
(map (fn [status]
|
|
|
|
(let [{:keys [created_at card]} status
|
|
|
|
date (t/parse created_at)]
|
2020-07-08 07:23:28 +00:00
|
|
|
[:li {:class "list-group-item, card"}
|
|
|
|
[:div {:class "card-body"}
|
|
|
|
[:h2 {:class "card-title"}
|
|
|
|
[:a {:href (get-in status [:account :url])}
|
|
|
|
(t/unparse (t/formatters :date) date) " "
|
|
|
|
(t/unparse (t/formatters :hour-minute-second) date)]]
|
|
|
|
[:p {:class "card-text"}
|
|
|
|
(:content status)
|
|
|
|
(mastocard->html card)]]]))
|
2020-06-24 17:53:04 +00:00
|
|
|
statuses)])
|
2020-06-23 18:09:00 +00:00
|
|
|
|
|
|
|
|
2020-04-26 16:35:09 +00:00
|
|
|
(defn-spec mastodon-client any?
|
|
|
|
[host-url ::host-url]
|
|
|
|
(let [mastodon-config
|
|
|
|
{:access_token "unused"
|
|
|
|
:api_url (str host-url "/api/v1/")}]
|
|
|
|
(some-> mastodon-config clj->js Mastodon.)))
|
|
|
|
|
|
|
|
(defn-spec get-account-statuses any?
|
|
|
|
[host-url ::host-url
|
2020-06-19 15:26:34 +00:00
|
|
|
account-id ::account-id]
|
|
|
|
(.get (mastodon-client host-url)
|
|
|
|
(str "accounts/" account-id "/statuses")
|
|
|
|
#js {}))
|
2020-06-19 09:05:45 +00:00
|
|
|
|
2020-06-19 12:58:59 +00:00
|
|
|
(defn-spec get-directory any?
|
2020-06-19 09:05:45 +00:00
|
|
|
[host-url ::host-url]
|
2020-06-19 15:26:34 +00:00
|
|
|
(.get (mastodon-client host-url)
|
|
|
|
(str "directory?local=true")
|
|
|
|
#js {}))
|