about summary refs log blame commit diff stats
path: root/lib/Octans/Puzzle.rakumod
blob: a35c40913d7ef35295fd46429614e94511ed53aa (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
pre { line-height: 125%; }
td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
.highlight .hll { background-color: #ffffcc }
.highlight .c { color: #888888 } /* Comment */
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
.highlight .k { color: #008800; font-weight: bold } /* Keyword */
.highlight .ch { color: #888888 } /* Comment.Hashbang */
.highlight .cm { color: #888888 } /* Comment.Multiline */
.highlight .cp { color: #cc0000; font-weight: bold } /* Comment.Preproc */
.highlight .cpf { color: #888888 } /* Comment.PreprocFile */
.highlight .c1 { color: #888888 } /* Comment.Single */
unit module Octans::Puzzle;

use WWW;

# get-puzzle returns the @puzzle along with it's @gray-squares.
sub get-puzzle (
    Str $url,

    # @puzzle will hold the puzzle grid.
    @puzzle,

    # @gray-squares will hold the position of gray squares. Algot
    # marks them with an asterisk ("*") after the character.
    @gray-squares
) is export {
    # $toot_url will hold the url that we'll call to get the toot data.
    my Str $toot_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 $toot_url from it.
    if $url.match("web/statuses") -> $match {
        $toot_url = $match.replace-with("api/v1/statuses");
    } else {
        $toot_url = "https://mastodon.art/api/v1/statuses/" ~ $url.split("/")[*-1];
    }

    # @gray-squares should be empty.
    @gray-squares = ();

    # jget just get's the url & decodes the json. We access the
    # description field of 1st media attachment.
    if (jget($toot_url)<media_attachments>[0]<description> ~~

        # This regex gets the puzzle in $match.
        / [[(\w [\*]?) \s*] ** 4] ** 4 $/) -> $match {

        # We have each character of the puzzle stored in $match. It's
        # assumed that it'll be a 4x4 grid.
        for 0 .. 3 -> $y {
            for 0 .. 3 -> $x {
                with $match[0][($y * 4) + $x].Str.lc -> $char {

                    # If it ends with an asterisk then we push the
                    # position to @gray-squares.
                    if $char.ends-with("*") {
                        @puzzle[$y][$x] = $char.comb[0];
                        push @gray-squares, [$y, $x];
                    } else {
                        @puzzle[$y][$x] = $char;
                    }
                }
            }
        }
    }
}