2021-05-01 23:26:48 +02:00
|
|
|
require "json"
|
|
|
|
|
|
|
|
class MediumClient
|
2021-05-15 23:05:28 +02:00
|
|
|
def self.post_data(post_id : String) : PostResponse::Root
|
2021-05-01 23:26:48 +02:00
|
|
|
client = HTTP::Client.new("medium.com", tls: true)
|
2021-05-15 23:05:28 +02:00
|
|
|
response = client.post("/_/graphql", headers: headers, body: body(post_id))
|
|
|
|
PostResponse::Root.from_json(response.body)
|
2021-05-01 23:26:48 +02:00
|
|
|
end
|
|
|
|
|
2021-05-15 23:05:28 +02:00
|
|
|
def self.media_data(media_id : String) : MediaResponse::Root
|
2021-05-01 23:26:48 +02:00
|
|
|
client = HTTP::Client.new("medium.com", tls: true)
|
|
|
|
response = client.get("/media/#{media_id}", headers: headers)
|
|
|
|
body = response.body.sub(JSON_HIJACK_STRING, nil)
|
|
|
|
MediaResponse::Root.from_json(body)
|
|
|
|
end
|
|
|
|
|
|
|
|
private def self.headers : HTTP::Headers
|
|
|
|
HTTP::Headers{
|
|
|
|
"Accept" => "application/json",
|
|
|
|
"Content-Type" => "application/json; charset=utf-8",
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
private def self.body(post_id : String) : String
|
|
|
|
query = <<-GRAPHQL
|
|
|
|
query {
|
|
|
|
post(id: "#{post_id}") {
|
|
|
|
title
|
|
|
|
creator {
|
|
|
|
id
|
|
|
|
name
|
|
|
|
}
|
|
|
|
content {
|
|
|
|
bodyModel {
|
|
|
|
paragraphs {
|
|
|
|
text
|
|
|
|
type
|
|
|
|
markups {
|
|
|
|
name
|
|
|
|
type
|
2021-07-04 23:06:17 +02:00
|
|
|
href
|
2021-07-04 23:37:45 +02:00
|
|
|
userId
|
2021-05-01 23:26:48 +02:00
|
|
|
start
|
|
|
|
end
|
|
|
|
}
|
|
|
|
href
|
|
|
|
iframe {
|
|
|
|
mediaResource {
|
|
|
|
id
|
|
|
|
}
|
|
|
|
}
|
|
|
|
metadata {
|
|
|
|
__typename
|
|
|
|
id
|
|
|
|
originalWidth
|
|
|
|
originalHeight
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
GRAPHQL
|
|
|
|
JSON.build do |json|
|
|
|
|
json.object do
|
|
|
|
json.field "query", query
|
|
|
|
json.field "variables", {} of String => String
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|