ea19f658b9
git-svn-id: http://yolanda.mister-muffin.de/svn@165 7eef14d0-6ed0-489d-bf55-20463b2d70db
97 lines
2.5 KiB
Perl
97 lines
2.5 KiB
Perl
#!/usr/bin/perl
|
|
require "include.pl";
|
|
require "functions.pl";
|
|
|
|
#initialize session data
|
|
CGI::Session->name($session_name);
|
|
$query = new CGI;
|
|
$session = new CGI::Session;
|
|
|
|
@userinfo = get_userinfo_from_sid($session->id);
|
|
|
|
@page = get_page_array(@userinfo);
|
|
|
|
if($userinfo->{'username'})
|
|
{
|
|
if($query->param('show') eq 'settings')
|
|
{
|
|
$page->{'account'}->{'show'} = 'settings';
|
|
#results per page
|
|
#language
|
|
#cortado or plugin
|
|
}
|
|
elsif($query->param('show') eq 'bookmarks')
|
|
{
|
|
$page->{'account'}->{'show'} = 'bookmarks';
|
|
}
|
|
elsif($query->param('show') eq 'uploads')
|
|
{
|
|
$page->{'account'}->{'show'} = 'uploads';
|
|
$page->{'results'}->{'scriptname'} = 'account.pl';
|
|
$page->{'results'}->{'argument'} = 'show';
|
|
$page->{'results'}->{'value'} = 'uploads';
|
|
$page->{'results'}->{'orderby'} = $query->param('orderby');
|
|
$page->{'results'}->{'sort'} = $query->param('sort');
|
|
|
|
#build mysql query
|
|
$dbquery = "(select v.id, v.title, v.description, u.username, from_unixtime( v.timestamp ) as timestamp,
|
|
v.creator, v.subject, v.contributor, v.source, v.language, v.coverage, v.rights,
|
|
v.license, filesize, duration, width, height, fps, viewcount, downloadcount
|
|
from videos as v, users as u where v.userid = u.id and u.sid = ?)
|
|
union
|
|
(select v.id, v.title, '', u.username, from_unixtime( v.timestamp ) as timestamp,
|
|
v.creator, v.subject, v.contributor, v.source, v.language, v.coverage, v.rights,
|
|
v.license, 0, 0, 0, 0, 0, 0, 0
|
|
from uploaded as v, users as u where v.userid = u.id and u.sid = ?)";
|
|
|
|
if($query->param('orderby'))
|
|
{
|
|
if($query->param('orderby') eq 'filesize')
|
|
{
|
|
$dbquery .= " order by filesize";
|
|
}
|
|
elsif($query->param('orderby') eq 'duration')
|
|
{
|
|
$dbquery .= " order by duration";
|
|
}
|
|
elsif($query->param('orderby') eq 'viewcount')
|
|
{
|
|
$dbquery .= " order by viewcount";
|
|
}
|
|
elsif($query->param('orderby') eq 'timestamp')
|
|
{
|
|
$dbquery .= " order by timestamp";
|
|
}
|
|
else
|
|
{
|
|
$dbquery .= " order by id";
|
|
}
|
|
|
|
if($query->param('sort') eq "asc")
|
|
{
|
|
$dbquery .= " asc"
|
|
}
|
|
else
|
|
{
|
|
$dbquery .= " desc"
|
|
}
|
|
}
|
|
|
|
fill_results($session->id, $session->id);
|
|
}
|
|
else
|
|
{
|
|
$page->{'account'} = [''];
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$page->{'message'}->{'type'} = "error";
|
|
$page->{'message'}->{'text'} = "error_202c";
|
|
}
|
|
|
|
#print xml http header along with session cookie
|
|
print $session->header(-type=>'text/xml', -charset=>'UTF-8');
|
|
|
|
#print xml
|
|
print XMLout($page, KeyAttr => {}, XMLDecl => $XMLDecl, RootName => 'page', AttrIndent => '1');
|