#!/usr/local/bin/perl # index.cgi # Display the icons for various types of proftpd config options require './proftpd-lib.pl'; # Check if proftpd is installed @st = stat($config{'proftpd_path'}); if (!@st) { &ui_print_header(undef, $text{'index_title'}, "", undef, 1, 1, 0, &help_search_link("proftpd", "man", "doc", "google")); print &text('index_eproftpd', "$config{'proftpd_path'}", "$gconfig{'webprefix'}/config.cgi?$module_name"),"

\n"; &foreign_require("software", "software-lib.pl"); $lnk = &software::missing_install_link("proftpd",$text{'index_proftpd'}, "../$module_name/", $text{'index_title'}); print $lnk,"

\n" if ($lnk); &ui_print_footer("/", $text{'index'}); exit; } # Check if the config file exists $conf = &get_config(); if (!@$conf) { &ui_print_header(undef, $text{'index_title'}, "", undef, 1, 1, 0, &help_search_link("proftpd", "man", "doc", "google")); print &text('index_econf', "$config{'proftpd_conf'}", "$gconfig{'webprefix'}/config.cgi?$module_name"),"

\n"; &ui_print_footer("/", $text{'index'}); exit; } # Check if the executable has changed .. if ($site{'size'} != $st[7]) { # Check if it really is proftpd and the right version $site{'size'} = $st[7]; $ver = &get_proftpd_version(\$out); if (!$ver) { &ui_print_header(undef, $text{'index_title'}, "", undef, 1, 1, 0, &help_search_link("proftpd", "man", "doc", "google")); print &text('index_eproftpd2', "$config{'proftpd_path'}", "$gconfig{'webprefix'}/config.cgi?$module_name", "$config{'proftpd_path'} -v", "

$out
"),"

\n"; &ui_print_footer("/", $text{'index'}); exit; } $site{'version'} = $ver; if ($site{'version'} < 0.99) { &ui_print_header(undef, $text{'index_title'}, "", undef, 1, 1, 0, &help_search_link("proftpd", "man", "doc", "google")); print &text('index_eversion', "$config{'proftpd_path'}", "$gconfig{'webprefix'}/config.cgi?$module_name"),"

\n"; &ui_print_footer("/", $text{'index'}); exit; } # Get the list of modules local @mods; open(MODS, "$config{'proftpd_path'} -l |"); while() { s/\r|\n//g; if (/^\s*(\S+)\.c$/) { push(@mods, $1); } } close(MODS); $site{'modules'} = join(" ", @mods); &write_file("$module_config_directory/site", \%site); } &ui_print_header(undef, $text{'index_title'}, "", undef, 1, 1, 0, &help_search_link("proftpd", "man", "doc", "google"), undef, undef, &text('index_version', $site{'version'})); $conf = &get_config(); # Display global category icons print &ui_subheading($text{'index_global'}); $ft_icon = { "icon" => "images/dir.gif", "name" => $text{'ftpaccess_title'}, "link" => "ftpaccess.cgi" }; $us_icon = { "icon" => "images/ftpusers.gif", "name" => $text{'ftpusers_title'}, "link" => "edit_ftpusers.cgi" }; $ed_icon = { "icon" => "images/edit.gif", "name" => $text{'manual_configs'}, "link" => "allmanual_form.cgi" }; &config_icons("root global", "edit_global.cgi?", $ft_icon, $us_icon, $ed_icon); # Display global per-directory/limit options $global = &find_directive_struct("Global", $conf); $gconf = $global->{'members'} if ($global); @dir = ( &find_directive_struct("Directory", $gconf) , &find_directive_struct("Limit", $gconf) ); if (@dir) { print &ui_hr(); print &ui_subheading($text{'virt_header'}); foreach $d (@dir) { if ($d->{'name'} eq 'Limit') { push(@links, "limit_index.cgi?limit=". &indexof($d, @$gconf)."&global=1"); push(@titles, &text('virt_limit', $d->{'value'})); push(@icons, "images/limit.gif"); } else { push(@links, "dir_index.cgi?idx=". &indexof($d, @$gconf)."&global=1"); push(@titles, &text('virt_dir', $d->{'value'})); push(@icons, "images/dir.gif"); } } &icons_table(\@links, \@titles, \@icons, 3); } print "
\n"; print "
\n"; print "\n"; print "\n"; print "\n"; print "
$text{'virt_adddir'}
\n"; print "\n"; print "\n"; print "
$text{'virt_path'}\n"; print "
\n"; print "
\n"; print "
\n"; print "\n"; print "\n"; print "\n"; print "
$text{'virt_addlimit'}
\n"; print "\n"; print "\n"; print "
$text{'virt_cmds'}\n"; print "
\n"; print "
\n"; # Start virtual server list with default push(@vname, $text{'index_defserv'}); push(@vlink, "virt_index.cgi"); push(@vdesc, $text{'index_defdesc'}); push(@vaddr, $text{'index_any'}); push(@vserv, &def(&find_directive("ServerName", $conf), $text{'default'})); # Add other virtual servers @virt = &find_directive_struct("VirtualHost", $conf); foreach $v (@virt) { $vm = $v->{'members'}; push(@vname, $text{'index_virt'}); push(@vlink, "virt_index.cgi?virt=".&indexof($v, @$conf)); push(@vaddr, $v->{'value'}); $sname = &find_directive("ServerName", $vm); local $ip = &to_ipaddress($v->{'value'}); push(@vdesc, &text('index_vdesc', $ip ? $ip : $text{'index_eip'})); push(@vserv, &def(&find_vdirective("ServerName", $vm, $conf), $text{'index_auto'})); } # Show virtual servers print &ui_hr(); print &ui_subheading($text{'index_virts'}); if ($config{'show_list'} && scalar(@vname)) { # as list for people with lots of servers print "\n"; print " ", " ", "\n"; for($i=0; $i<@vname; $i++) { print "\n"; print "\n"; print "\n"; print "\n"; print "\n"; } print "
$text{'index_type'}$text{'index_addr'}$text{'index_name'}
", &html_escape($vname[$i]),"",&html_escape($vaddr[$i]),"",&html_escape($vserv[$i]),"
\n"; } else { # as icons for niceness print "\n"; for($i=0; $i<@vname; $i++) { print "\n"; } print "
"; &generate_icon("images/virt.gif", &html_escape($vname[$i]), $vlink[$i]); print " \n"; print &html_escape($vdesc[$i]),"
\n"; print "\n"; print "\n"; print "\n"; print "
$text{'index_addr'} ", &html_escape($vaddr[$i]),"$text{'index_name'} ", &html_escape($vserv[$i]),"
\n"; } print "

\n"; print "\n"; print "\n"; print "
$text{'index_create'}
\n"; print "\n"; print "\n"; print "\n"; print "\n"; print "\n"; print "\n"; print "
$text{'index_addr'}
$text{'index_port'}",&opt_input(undef, "Port", $text{'default'}, 6),"
$text{'index_name'}",&opt_input(undef, "ServerName", $text{'default'}, 25); print "  \n"; print "
\n"; print "
\n"; # Find out how ProFTPd is running ($inet, $inet_mod) = &running_under_inetd(); if (!$inet) { # Get the FTP server pid $pid = &get_proftpd_pid(); print &ui_hr(); print &ui_buttons_start(); } if (!$inet && $pid) { print &ui_buttons_row("apply.cgi", $text{'index_apply'}, &get_proftpd_version() > 1.22 ? $text{'index_applymsg2'} : $text{'index_applymsg'}); print &ui_buttons_row("stop.cgi", $text{'index_stop'}, $text{'index_stopmsg'}); } elsif (!$inet && !$pid) { print &ui_buttons_row("start.cgi", $text{'index_start'}, $inet_mod ? &text('index_startmsg', "/$inet_mod/") : $text{'index_startmsg2'}); } if (!$inet) { print &ui_buttons_end(); } &ui_print_footer("/", $text{'index'});