]> ruin.nu Git - ndwebbie.git/blob - lib/NDWeb/Include.pm
Login/Logout and session support with roles + convert to html 4.01.
[ndwebbie.git] / lib / NDWeb / Include.pm
1 #**************************************************************************
2 #   Copyright (C) 2006 by Michael Andreen <harvATruinDOTnu>               *
3 #                                                                         *
4 #   This program is free software; you can redistribute it and/or modify  *
5 #   it under the terms of the GNU General Public License as published by  *
6 #   the Free Software Foundation; either version 2 of the License, or     *
7 #   (at your option) any later version.                                   *
8 #                                                                         *
9 #   This program is distributed in the hope that it will be useful,       *
10 #   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12 #   GNU General Public License for more details.                          *
13 #                                                                         *
14 #   You should have received a copy of the GNU General Public License     *
15 #   along with this program; if not, write to the                         *
16 #   Free Software Foundation, Inc.,                                       *
17 #   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
18 #**************************************************************************/
19
20 package NDWeb::Include;
21 use strict;
22 use warnings;
23 require Exporter;
24 use BBCode::Parser;
25
26 our @ISA = qw/Exporter/;
27
28 our @EXPORT = qw/parseMarkup min max
29         alliances intelquery /;
30
31 sub parseMarkup ($) {
32         my ($text) = @_;
33
34         #$text =~ s{\n}{\n<br/>}g;
35         #$text =~ s{\[B\](.*?)\[/B\]}{<b>$1</b>}gi;
36         #$text =~ s{\[I\](.*?)\[/I\]}{<i>$1</i>}gi;
37         #$text =~ s{\[url\](.*?)\[/url\]}{<a href="$1">$1</a>}gi;
38         #$text =~ s{\[PRE\](.*?)\[/PRE\]}{<pre>$1</pre>}sgi;
39         #$text =~ s{\[PRE\](.*?)\[/PRE\]}{<pre>$1</pre>}sgi;
40         #$1 =~ s{<br/>}{}g;
41
42         eval{
43                 my $tree = BBCode::Parser->DEFAULT->parse($text);
44                 $text = $tree->toHTML;
45         };
46         $text =~ s/\x{3}\d\d?//g; #mirc color TODO: possibly match until \x{0F} and change to [color] block
47         $text =~ s/[^\x{9}\x{A}\x{D}\x{20}-\x{D7FF}\x{E000}-\x{FFFD}\x{10000}-\x{10FFFF}]//g;
48         return $text;
49 }
50
51
52 sub min {
53     my ($x,$y) = @_;
54     return ($x > $y ? $y : $x);
55 }
56
57 sub max {
58     my ($x,$y) = @_;
59     return ($x < $y ? $y : $x);
60 }
61
62
63 sub alliances {
64         my ($alliance) = @_;
65         my @alliances;
66         $alliance = -1 unless defined $alliance;
67         push @alliances,{Id => -1, Name => '', Selected => not $alliance};
68         my $query = $ND::DBH->prepare(q{SELECT id,name FROM alliances ORDER BY LOWER(name)});
69         $query->execute;        
70         while (my $ally = $query->fetchrow_hashref){
71                 push @alliances,{Id => $ally->{id}, Name => $ally->{name}, Selected => $alliance == $ally->{id}};
72         }
73         return @alliances;
74 }
75
76 sub intelquery {
77         my ($columns,$where) = @_;
78         return qq{
79 SELECT $columns, i.mission, i.tick AS landingtick,MIN(i.eta) AS eta, i.amount, i.ingal, u.username
80 FROM (fleets i NATURAL JOIN users u)
81         JOIN current_planet_stats t ON i.target = t.id
82         JOIN current_planet_stats o ON i.sender = o.id
83 WHERE $where 
84 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
85 ORDER BY i.tick DESC, i.mission};
86 }
87
88
89
90 1;