f7f24dd5bf
git-svn-id: http://yolanda.mister-muffin.de/svn@26 7eef14d0-6ed0-489d-bf55-20463b2d70db
81 lines
1.9 KiB
Perl
81 lines
1.9 KiB
Perl
#!/usr/bin/perl
|
|
require "/var/www/perl/include.pl";
|
|
|
|
#get tags from database and fill $page with xml
|
|
sub fill_tagcloud {
|
|
#connect to db
|
|
my $dbh = DBI->connect("DBI:mysql:$database:$dbhost", $dbuser, $dbpass) or die $dbh->errstr;
|
|
|
|
#prepare query
|
|
my $sth = $dbh->prepare(qq{select text, count from tagcloud }) or die $dbh->errstr;
|
|
|
|
#execute it
|
|
$sth->execute() or die $dbh->errstr;
|
|
|
|
#get every returned value
|
|
while (my ($text, $count) = $sth->fetchrow_array())
|
|
{
|
|
#push the new value to the $page->tagcloud array
|
|
push @{ $page->{tagcloud}->{tag} }, { text => [$text], count => [$count] };
|
|
}
|
|
|
|
#finish query
|
|
$sth->finish() or die $dbh->errstr;
|
|
|
|
#close db
|
|
$dbh->disconnect() or die $dbh->errstr;
|
|
}
|
|
|
|
#return a username from passed session id
|
|
sub get_username_from_sid {
|
|
#get parameters
|
|
my ($sid) = @_;
|
|
|
|
#connect to db
|
|
my $dbh = DBI->connect("DBI:mysql:$database:$dbhost", $dbuser, $dbpass) or die $dbh->errstr;
|
|
|
|
#prepare query
|
|
my $sth = $dbh->prepare(qq{select username from users where sid = '$sid'}) or die $dbh->errstr;
|
|
|
|
#execute it
|
|
$sth->execute() or die $dbh->errstr;
|
|
|
|
#save the resulting username
|
|
my ($username) = $sth->fetchrow_array() or die $dbh->errstr;
|
|
|
|
#finish query
|
|
$sth->finish() or die $dbh->errstr;
|
|
|
|
#close db
|
|
$dbh->disconnect() or die $dbh->errstr;
|
|
|
|
#return
|
|
return $username;
|
|
}
|
|
|
|
#return a username from passed session id
|
|
sub get_userid_from_sid {
|
|
#get parameters
|
|
my ($sid) = @_;
|
|
|
|
#connect to db
|
|
my $dbh = DBI->connect("DBI:mysql:$database:$dbhost", $dbuser, $dbpass) or die $dbh->errstr;
|
|
|
|
#prepare query
|
|
my $sth = $dbh->prepare(qq{select id from users where sid = '$sid'}) or die $dbh->errstr;
|
|
|
|
#execute it
|
|
$sth->execute() or die $dbh->errstr;
|
|
|
|
#save the resulting username
|
|
my ($username) = $sth->fetchrow_array() or die $dbh->errstr;
|
|
|
|
#finish query
|
|
$sth->finish() or die $dbh->errstr;
|
|
|
|
#close db
|
|
$dbh->disconnect() or die $dbh->errstr;
|
|
|
|
#return
|
|
return $username;
|
|
}
|