aboutsummaryrefslogtreecommitdiff
path: root/src/indrajith-dev-crystal.cr
diff options
context:
space:
mode:
Diffstat (limited to 'src/indrajith-dev-crystal.cr')
-rw-r--r--src/indrajith-dev-crystal.cr71
1 files changed, 70 insertions, 1 deletions
diff --git a/src/indrajith-dev-crystal.cr b/src/indrajith-dev-crystal.cr
index ca600f1..74fecc2 100644
--- a/src/indrajith-dev-crystal.cr
+++ b/src/indrajith-dev-crystal.cr
@@ -1,4 +1,11 @@
require "kemal"
+require "crest"
+require "json"
+require "dotenv"
+
+Dotenv.load
+
+TOKEN = ENV["TOKEN"]
module Indrajith::Dev::Crystal
VERSION = "0.1.0"
@@ -8,6 +15,11 @@ module Indrajith::Dev::Crystal
render "src/views/#{{{filename}}}.ecr", "src/views/layout.ecr"
end
+ macro render_404()
+ page_renderer "404", "The VOID"
+ end
+
+
get "/" do |context|
context.response.content_type = "text/html"
page_renderer "home", "Home"
@@ -28,9 +40,66 @@ module Indrajith::Dev::Crystal
page_renderer "contact", "Contact"
end
+ get "/posts" do |context|
+ begin
+ site = Crest::Resource.new("http://localhost:1337")
+
+ response = site.get("/api/posts",
+ params: {
+ "fields[0]" => "post_title",
+ "fields[1]" => "slug",
+ "pagination[pageSize]" => 3,
+ },
+ headers: {"Authorization" => "Bearer #{TOKEN}"}
+ )
+
+ json_data = JSON.parse(response.body)
+ data = json_data["data"].as_a
+ html_string = ""
+ data.each do |item|
+ attributes = item["attributes"]
+ # puts attributes["post_title"]
+ html_string += "
+ <li>
+ <p><a href='/post/#{attributes["slug"]}'>#{attributes["post_title"]}</a></p>
+ </li>"
+ end
+ html_string
+ rescue ex : Crest::NotFound
+ puts ex.response
+ render_404
+ end
+ end
+
+ get "/post/:slug" do |context|
+ begin
+ slug = context.params.url["slug"]
+ site = Crest::Resource.new("http://localhost:1337")
+
+ response = site.get("/api/posts",
+ params: {
+ "filters[slug][$eq]" => "#{slug}",
+ },
+ headers: {"Authorization" => "Bearer #{TOKEN}"}
+ )
+
+ json_data = JSON.parse(response.body)
+ data = json_data["data"].as_a
+
+ post_item = data[0]
+ post_attribute = post_item["attributes"]
+ content = post_attribute["post_content"]
+ page_title = post_attribute["post_title"]
+ render "src/views/layout.ecr"
+ rescue ex
+ puts ex
+ render_404
+ end
+ end
+
error 404 do |context|
context.response.content_type = "text/html"
- page_renderer "404", "The VOID"
+ render_404
end
Kemal.run