From 4c77f3376020ea13754b2f635ce07094cdc4a226 Mon Sep 17 00:00:00 2001 From: Andinus Date: Wed, 3 Mar 2021 23:13:35 +0530 Subject: Make class Puzzle, remove fancy chars, make module for get-puzzle - Puzzle is a class that provides the grids & gray-squares. - Fancy chars were removed for ASCII characters. - get-puzzle is now in its own module. --- lib/Octans/Puzzle/Get.rakumod | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 lib/Octans/Puzzle/Get.rakumod (limited to 'lib/Octans/Puzzle') diff --git a/lib/Octans/Puzzle/Get.rakumod b/lib/Octans/Puzzle/Get.rakumod new file mode 100644 index 0000000..1783796 --- /dev/null +++ b/lib/Octans/Puzzle/Get.rakumod @@ -0,0 +1,39 @@ +use WWW; +use Octans::Puzzle; + +# get-puzzle returns Puzzle.new() given input path. +sub get-puzzle ( + Str $path +) is export { + my @grids; + + # $url will hold the url that we'll call to get the toot data. + my Str $url; + + # User can pass 2 types of links, either it will be the one + # when they view it from their local instance or the one they + # get from Algot's profile. We set $url from it. + if $path.match("web/statuses") -> $match { + $url = $match.replace-with("api/v1/statuses"); + } else { + $url = "https://mastodon.art/api/v1/statuses/" ~ $path.split("/")[*-1]; + } + + # grids capture grids of a row. + my token grids { \S \*? } + # rows capture rows of the puzzle. + my token rows { ** 2..* % \h } + + # jget just get's the url & decodes the json. We access the + # description field of 1st media attachment. + if (jget($url)[0] ~~ + / \n\n + % \n / + ) -> $match { + for 0 .. $match.end -> $y { + for 0 .. $match[$y].end -> $x { + @grids[$y][$x] = $match[$y][$x].lc; + } + } + } + return Puzzle.new(grids => @grids); +} -- cgit 1.4.1-2-gfad0