]> ruin.nu Git - ndwebbie.git/blob - ND/Include.pm
moved functions to include file
[ndwebbie.git] / ND / 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 ND::Include;
21 use strict;
22 use warnings;
23 use CGI qw{:standard};
24 require Exporter;
25
26 our @ISA = qw/Exporter/;
27
28 our @EXPORT = qw/min max parseValue prettyValue log_message intel_log unread_query/;
29
30 sub min {
31     my ($x,$y) = @_;
32     return ($x > $y ? $y : $x);
33 }
34
35 sub max {
36     my ($x,$y) = @_;
37     return ($x < $y ? $y : $x);
38 }
39
40
41 sub parseValue {
42         if (defined $_[0] && $_[0] =~ /^(-?\d+(?:\.\d+)?)([khMG])?$/){
43                 return $1 unless defined $2;
44                 return $1*100 if $2 eq 'h';
45                 return $1*1000 if $2 eq 'k';
46                 return $1*1000000 if $2 eq 'M';
47                 return $1*1000000000 if $2 eq 'G';
48         }
49         return $_[0];
50 }
51
52 sub prettyValue {
53         my ($value) = @_;
54         my $unit = '';
55         my @units = ('k','M','G','T');
56         for (my $i = 0; $value >= 1000;$i++){
57                 $value /= 1000;
58                 $unit = $units[$i];
59         }
60         return sprintf('%.2f%s', $value,$unit);
61 }
62
63
64 sub log_message {
65         my ($uid, $message) = @_;
66         my $log = $ND::DBH->prepare_cached(q{INSERT INTO forum_posts (ftid,uid,message) VALUES(
67                 (SELECT ftid FROM users WHERE uid = $1),$1,$2)});
68         $log->execute($uid,$message) or $ND::ERROR .= p($ND::DBH->errstr);
69 }
70
71 sub intel_log {
72         my ($uid,$planet, $message) = @_;
73         my $log = $ND::DBH->prepare_cached(q{INSERT INTO forum_posts (ftid,uid,message) VALUES(
74                 (SELECT ftid FROM planets WHERE id = $3),$1,$2)});
75         $log->execute($uid,$message,$planet) or $ND::ERROR .= p($ND::DBH->errstr);
76 }
77
78 sub unread_query {
79         return $ND::DBH->prepare_cached(q{
80                         SELECT count(*) AS unread, count(NULLIF(fp.time > $2,FALSE)) AS new
81 FROM forum_boards fb NATURAL JOIN forum_threads ft 
82         JOIN forum_posts fp USING (ftid) LEFT OUTER JOIN 
83                 (SELECT * FROM forum_thread_visits WHERE uid = $1) ftv ON ftv.ftid = ft.ftid
84 WHERE (ftv.time IS NULL OR fp.time > ftv.time) AND fbid > 0 AND
85         fbid IN (SELECT fbid FROM forum_access WHERE gid IN (SELECT groups($1)))
86                 });
87 }
88
89 1;