[vhffs-dev] [1798] No more HTML::Template in repository/list

[ Thread Index | Date Index | More vhffs.org/vhffs-dev Archives ]


Revision: 1798
Author:   beuss
Date:     2011-05-24 07:52:10 +0200 (Tue, 24 May 2011)
Log Message:
-----------
No more HTML::Template in repository/list

Modified Paths:
--------------
    trunk/vhffs-api/src/Vhffs/Panel/Repository.pm
    trunk/vhffs-panel/admin/repository/list.pl
    trunk/vhffs-panel/templates/Makefile.am

Removed Paths:
-------------
    trunk/vhffs-panel/templates/admin/repository/part.tmpl

Modified: trunk/vhffs-api/src/Vhffs/Panel/Repository.pm
===================================================================
--- trunk/vhffs-api/src/Vhffs/Panel/Repository.pm	2011-05-24 05:52:02 UTC (rev 1797)
+++ trunk/vhffs-api/src/Vhffs/Panel/Repository.pm	2011-05-24 05:52:10 UTC (rev 1798)
@@ -36,7 +36,6 @@
 
 use DBI;
 use POSIX qw(locale_h);
-use HTML::Template;
 use locale;
 use Locale::gettext;
 use CGI;
@@ -80,28 +79,22 @@
 sub search {
     my ($main, $name) = @_;
 
-    my $sql;
     my @params;
-    my $reps = [];
+    my $sql = 'SELECT r.name as label, g.groupname as owner_group, o.state, u.username as owner_user '.
+        'FROM vhffs_repository r '.
+        'INNER JOIN vhffs_object o ON (o.object_id = r.object_id) '.
+        'INNER JOIN vhffs_groups g ON (g.gid = o.owner_gid) '.
+        'INNER JOIN vhffs_users u ON (u.uid = o.owner_uid) ';
 
 	if( defined $name ) {
-        $sql = 'SELECT r.name, g.groupname, o.state FROM vhffs_repository r INNER JOIN vhffs_object o ON o.object_id=r.object_id INNER JOIN vhffs_groups g ON g.gid = o.owner_gid WHERE r.name LIKE ?';
+        $sql .= 'WHERE r.name LIKE ? ';
         push(@params, '%'.lc($name).'%');
-    } else {
-         $sql = 'SELECT r.name, g.groupname, o.state FROM vhffs_repository r INNER JOIN vhffs_object o ON o.object_id=r.object_id INNER JOIN vhffs_groups g ON g.gid = o.owner_gid';
     }
-    
-    my $dbh = $main->get_db_object();
-    my $sth = $dbh->prepare($sql) or return undef;
 
-    return undef unless($sth->execute(@params));
+    $sql .= 'ORDER BY label';
 
-    while(my $r = $sth->fetchrow_hashref('NAME_lc')) {
-        $r->{state} = Vhffs::Functions::status_string_from_status_id($r->{state});
-        push(@$reps, $r);
-    }
-
-    return $reps;
+    my $dbh = $main->get_db_object();
+    return $dbh->selectall_arrayref($sql, { Slice => {} }, @params);
 }
 
 

Modified: trunk/vhffs-panel/admin/repository/list.pl
===================================================================
--- trunk/vhffs-panel/admin/repository/list.pl	2011-05-24 05:52:02 UTC (rev 1797)
+++ trunk/vhffs-panel/admin/repository/list.pl	2011-05-24 05:52:10 UTC (rev 1798)
@@ -32,63 +32,31 @@
 use strict;
 use utf8;
 use POSIX qw(locale_h);
-use HTML::Template;
 use locale;
 use Locale::gettext;
 use CGI;
 use CGI::Session;
 
 use lib '%VHFFS_LIB_DIR%';
-use Vhffs::Panel::Main;
+use Vhffs::Panel::Admin;
 use Vhffs::Panel::Repository;
 
-my $panel = new Vhffs::Panel::Main();
-exit 0 unless $panel;
-my $session = $panel->get_session;
-exit 0 unless $session;
+my $panel = new Vhffs::Panel::Admin();
 
 my $vhffs = $panel->{'vhffs'};
-my $user = $panel->{'user'};
 my $cgi = $panel->{'cgi'};
-my $templatedir = $panel->{'templatedir'};
-my $template;
+my $name = $cgi->param('NAME');
 
-if( ($user->is_moderator != 1 ) && ( $user->is_admin != 1 ) )
-{
-	$template = new HTML::Template( filename => $templatedir.'/panel/misc/simplemsg.tmpl' );
-	$template->param( MESSAGE => gettext('You are not allowed to see it') );
-}
-else
-{
-	$template = new HTML::Template( filename => $templatedir.'/panel/admin/misc/list.tmpl' );
+my $vars = {
+    type => 'repository'
+};
 
-	my $name = $cgi->param('NAME');
-	if( defined( $name ) )
-	{
-		$template->param( TITLE => gettext('Search result for Download repository').': '.$name );
-	}
-	else
-	{
-		$template->param( TITLE => gettext('List of all Download repositories') );
-	}
-
-	$template->param( TEXT_TITLE1 => gettext('Repository Name') );
-	$template->param( TEXT_TITLE2 => gettext('Group') );
-	$template->param( TEXT_TITLE3 => gettext('State') );
-
-	my $repos = Vhffs::Panel::Repository::search( $vhffs, $name );
-	if( defined $repos )
-	{
-		my $subtemplate = new HTML::Template( filename => $templatedir.'/panel/admin/repository/part.tmpl', global_vars => 1 );
-		if( $user->is_admin == 1 )  {
-			$subtemplate->param( ACTION => gettext('Modify') );
-		}  else  {
-			$subtemplate->param( ACTION => gettext('Show') );
-		}
-		$subtemplate->param( REPOSITORIES => $repos );
-		$template->param( LIST => $subtemplate->output );
-	}
+if(defined $name) {
+    $vars->{list_title} = sprintf( gettext('Search result for download repository %s'), $name );
+} else {
+    $vars->{list_title} = gettext('List of all Download repositories');
 }
 
-$panel->build( $template );
-$panel->display;
+$vars->{label_title} = gettext('Repository Name');
+$vars->{list} =Vhffs::Panel::Repository::search( $vhffs, $name );
+$panel->render('admin/misc/list.tt', $vars);

Modified: trunk/vhffs-panel/templates/Makefile.am
===================================================================
--- trunk/vhffs-panel/templates/Makefile.am	2011-05-24 05:52:02 UTC (rev 1797)
+++ trunk/vhffs-panel/templates/Makefile.am	2011-05-24 05:52:10 UTC (rev 1798)
@@ -34,7 +34,6 @@
 	admin/object/search.tmpl \
 	admin/pgsql/part.tmpl \
 	admin/pgsql/search.tmpl \
-	admin/repository/part.tmpl \
 	admin/repository/search.tmpl \
 	admin/svn/search.tmpl \
 	admin/tag/create.tmpl \

Deleted: trunk/vhffs-panel/templates/admin/repository/part.tmpl
===================================================================
--- trunk/vhffs-panel/templates/admin/repository/part.tmpl	2011-05-24 05:52:02 UTC (rev 1797)
+++ trunk/vhffs-panel/templates/admin/repository/part.tmpl	2011-05-24 05:52:10 UTC (rev 1798)
@@ -1,16 +0,0 @@
-<TMPL_LOOP NAME="REPOSITORIES">
-<tr>
-	<td>
-		<TMPL_VAR ESCAPE=1 NAME="NAME">
-	</td>
-	<td>
-		<TMPL_VAR ESCAPE=1 NAME="GROUPNAME"> 
-	</td>
-	<td>
-		<TMPL_VAR ESCAPE=1 NAME="STATE"> 
-	</td>
-	<td>
-		<a href="/repository/prefs.pl?admin_menu=1&amp;name=<TMPL_VAR ESCAPE=1 NAME="NAME">"><TMPL_VAR ESCAPE=1 NAME="ACTION"></a>
-	</td>
-</tr>
-</TMPL_LOOP>


Mail converted by MHonArc 2.6.19+ http://listengine.tuxfamily.org/