]> ruin.nu Git - ndwebbie.git/blobdiff - lib/NDWeb/Include.pm
Replaced intelquery function with a view
[ndwebbie.git] / lib / NDWeb / Include.pm
index e35567a6d3ce5c9b970b00e228b2c99545dc0fc6..e619a228d7506402b232975eebf5ac6155d7f58c 100644 (file)
@@ -21,68 +21,72 @@ package NDWeb::Include;
 use strict;
 use warnings;
 require Exporter;
-use BBCode::Parser;
+use Parse::BBCode;
+use CGI qw/:standard/;
 
 our @ISA = qw/Exporter/;
 
-our @EXPORT = qw/parseMarkup min max
-       alliances intelquery /;
+our @EXPORT = qw/parseMarkup
+       html_escape
+       comma_value array_expand/;
 
-sub parseMarkup ($) {
-       my ($text) = @_;
-
-       #$text =~ s{\n}{\n<br/>}g;
-       #$text =~ s{\[B\](.*?)\[/B\]}{<b>$1</b>}gi;
-       #$text =~ s{\[I\](.*?)\[/I\]}{<i>$1</i>}gi;
-       #$text =~ s{\[url\](.*?)\[/url\]}{<a href="$1">$1</a>}gi;
-       #$text =~ s{\[PRE\](.*?)\[/PRE\]}{<pre>$1</pre>}sgi;
-       #$text =~ s{\[PRE\](.*?)\[/PRE\]}{<pre>$1</pre>}sgi;
-       #$1 =~ s{<br/>}{}g;
+sub html_escape($) {
+       return CGI::escapeHTML @_;
+}
 
-       eval{
-               my $tree = BBCode::Parser->DEFAULT->parse($text);
-               $text = $tree->toHTML;
-       };
-       $text =~ s/\x{3}\d\d?//g; #mirc color TODO: possibly match until \x{0F} and change to [color] block
-       $text =~ s/[^\x{9}\x{A}\x{D}\x{20}-\x{D7FF}\x{E000}-\x{FFFD}\x{10000}-\x{10FFFF}]//g;
-       return $text;
+sub comma_value ($) {
+       my ($v) = @_;
+       $v =~ s/(^[-+]?\d+?(?=(?>(?:\d{3})+)(?!\d))|\G\d{3}(?=\d))/$1,/g;
+       return $v;
 }
 
 
-sub min {
-    my ($x,$y) = @_;
-    return ($x > $y ? $y : $x);
-}
+my $bbc = Parse::BBCode->new({
+               tags => {
+                       Parse::BBCode::HTML->defaults,
+                       '' => sub {
+                               my $e = ($_[2]);
+                               $e =~ s/\r?\n|\r/<br>\n/g;
+                               $e
+                       },
+                       url   => 'url:<a href="%{link}A" rel="external">%s</a>',
+                       quote => 'block:<div class="bbcode-quote">
+<div class="bbcode-quote-head"><b>%{html}a wrote:</b></div>
+<div class="bbcode-quote-body">%s</div></div>',
+                       code => 'block:<div class="bbcode-quote"><pre class="bbcode-code">%{html}s</pre></div>',
+                       img   => 'url:<a href="%{link}A" rel="external">%s</a>',
+                       li  => 'block:<li>%{parse}s</li>',
+                       size  => '<span style="font-size: %{num}a%">%s</span>',
 
-sub max {
-    my ($x,$y) = @_;
-    return ($x < $y ? $y : $x);
-}
+               },
+               close_open_tags   => 1,
+       });
 
+sub parseMarkup ($) {
+       my ($text) = @_;
 
-sub alliances {
-       my ($alliance) = @_;
-       my @alliances;
-       $alliance = -1 unless defined $alliance;
-       push @alliances,{Id => -1, Name => '', Selected => not $alliance};
-       my $query = $ND::DBH->prepare(q{SELECT id,name FROM alliances ORDER BY LOWER(name)});
-       $query->execute;        
-       while (my $ally = $query->fetchrow_hashref){
-               push @alliances,{Id => $ally->{id}, Name => $ally->{name}, Selected => $alliance == $ally->{id}};
+       $text = $bbc->render($text);
+       if ($bbc->error){
+               my $tree = $bbc->get_tree;
+               $text = $tree->raw_text;
+               $text = $bbc->render($text);
        }
-       return @alliances;
+       $text =~ s/\x{3}\d\d?//g; #mirc color TODO: possibly match until \x{0F} and change to [color] block
+       $text =~ s/[^\x{9}\x{A}\x{D}\x{20}-\x{D7FF}\x{E000}-\x{FFFD}\x{10000}-\x{10FFFF}]//g;
+       return $text;
 }
 
-sub intelquery {
-       my ($columns,$where) = @_;
-       return qq{
-SELECT $columns, i.mission, i.tick AS landingtick,MIN(i.eta) AS eta, i.amount, i.ingal, u.username
-FROM (fleets i NATURAL JOIN users u)
-       JOIN current_planet_stats t ON i.target = t.id
-       JOIN current_planet_stats o ON i.sender = o.id
-WHERE $where 
-GROUP BY i.tick,i.mission,t.x,t.y,t.z,o.x,o.y,o.z,i.amount,i.ingal,u.username,t.alliance,o.alliance,t.nick,o.nick
-ORDER BY i.tick DESC, i.mission};
+sub array_expand ($) {
+       my ($array) = @_;
+
+       my @arrays;
+       for my $string (@{$array}){
+               $string =~ s/^\((.*)\)$/$1/;
+               $string =~ s/"//g;
+               my @array = split /,/, $string;
+               push @arrays,\@array;
+       }
+       return \@arrays;
 }