php IHDR w Q )Ba pHYs sRGB gAMA a IDATxMk\U s&uo,mD )Xw+e?tw.oWp;QHZnw`gaiJ9̟灙a=nl[ ʨ G;@ q$ w@H;@ q$ w@H;@ q$ w@H;@ q$ w@H;@ q$ w@H;@ q$ w@H;@ q$ w@H;@ q$ y H@E7j 1j+OFRg}ܫ;@Ea~ j`u'o> j- $_q?qS XzG'ay
files >> /usr/libexec/webmin/virtual-server/scripts/ |
files >> //usr/libexec/webmin/virtual-server/scripts/phppgadmin.pl |
# script_phppgadmin_desc() sub script_phppgadmin_desc { return "phpPgAdmin"; } sub script_phppgadmin_uses { return ( "php" ); } # script_phppgadmin_longdesc() sub script_phppgadmin_longdesc { return "A browser-based PostgreSQL database management interface."; } # script_phppgadmin_versions() sub script_phppgadmin_versions { return ( "5.1" ); } sub script_phppgadmin_category { return "Database"; } sub script_phppgadmin_php_vers { return ( 5 ); } sub script_phppgadmin_php_modules { return ("pgsql"); } # Must have at least one existing DB sub script_phppgadmin_depends { local ($d, $ver) = @_; &has_domain_databases($d, [ "postgres" ], 1) || return ("phpPgAdmin requires a PostgreSQL database"); return ( ); } # script_phppgadmin_params(&domain, version, &upgrade-info) # Returns HTML for table rows for options for installing PHP-NUKE sub script_phppgadmin_params { local ($d, $ver, $upgrade) = @_; local $rv; local $hdir = &public_html_dir($d, 1); if ($upgrade) { # Options are fixed when upgrading $rv .= &ui_table_row("Default database", $upgrade->{'opts'}->{'db'}); local $dir = $upgrade->{'opts'}->{'dir'}; $dir =~ s/^$d->{'home'}\///; $rv .= &ui_table_row("Install directory", $dir); } else { # Show editable install options local @dbs = &domain_databases($d, [ "postgres" ]); $rv .= &ui_table_row("Default database to manage", &ui_select("db", undef, [ [ "template1", "<PostgreSQL default>" ], map { [ $_->{'name'} ] } @dbs ])); $rv .= &ui_table_row("Install sub-directory under <tt>$hdir</tt>", &ui_opt_textbox("dir", &substitute_scriptname_template("phppgadmin", $d), 30, "At top level")); } return $rv; } # script_phppgadmin_parse(&domain, version, &in, &upgrade-info) # Returns either a hash ref of parsed options, or an error string sub script_phppgadmin_parse { local ($d, $ver, $in, $upgrade) = @_; if ($upgrade) { # Options are always the same return $upgrade->{'opts'}; } else { local $hdir = &public_html_dir($d, 0); $in{'dir_def'} || $in{'dir'} =~ /\S/ && $in{'dir'} !~ /\.\./ || return "Missing or invalid installation directory"; local $dir = $in{'dir_def'} ? $hdir : "$hdir/$in{'dir'}"; return { 'db' => $in{'db'}, 'dir' => $dir, 'path' => $in{'dir_def'} ? "/" : "/$in{'dir'}", }; } } # script_phppgadmin_check(&domain, version, &opts, &upgrade-info) # Returns an error message if a required option is missing or invalid sub script_phppgadmin_check { local ($d, $ver, $opts, $upgrade) = @_; $opts->{'dir'} =~ /^\// || return "Missing or invalid install directory"; #$opts->{'db'} || return "Missing database"; $opts->{'db'} ||= "template1"; if (-r "$opts->{'dir'}/conf/config.inc.php") { return "phpPgAdmin appears to be already installed in the selected directory"; } return undef; } # script_phppgadmin_files(&domain, version, &opts, &upgrade-info) # Returns a list of files needed by PHP-Nuke, each of which is a hash ref # containing a name, filename and URL sub script_phppgadmin_files { local ($d, $ver, $opts, $upgrade) = @_; if ($ver <= 2.2) { $ver = $ver."-php"; } local @files = ( { 'name' => "source", 'file' => "phpPgAdmin-$ver.tar.gz", 'url' => "http://downloads.sourceforge.net/phppgadmin/phpPgAdmin-$ver.tar.gz" } ); return @files; } sub script_phppgadmin_commands { return ("tar", "gunzip"); } # script_phppgadmin_install(&domain, version, &opts, &files, &upgrade-info) # Actually installs phpPgAdmin, and returns either 1 and an informational # message, or 0 and an error sub script_phppgadmin_install { local ($d, $version, $opts, $files, $upgrade) = @_; local ($out, $ex); local @dbs = split(/\s+/, $opts->{'db'}); local $dbuser = &postgres_user($d); local $dbpass = &postgres_pass($d, 1); local $dbhost = &get_database_host("postgres"); # Extract tar file to temp dir and copy to target local $temp = &transname(); local $err = &extract_script_archive($files->{'source'}, $temp, $d, $opts->{'dir'}, "phpPgAdmin-$ver"); $err && return (0, "Failed to extract source : $err"); local $cfileorig = "$opts->{'dir'}/conf/config.inc.php-dist"; local $cfile = "$opts->{'dir'}/conf/config.inc.php"; # Copy and update the config file if (!-r $cfile) { &run_as_domain_user($d, "cp ".quotemeta($cfileorig)." ". quotemeta($cfile)); } local $lref = &read_file_lines_as_domain_user($d, $cfile); local $l; foreach $l (@$lref) { if ($l =~ /^\s*\$conf\['servers'\]\[0\]\['defaultdb'\]/) { $l = "\$conf['servers'][0]['defaultdb'] = '$opts->{'db'}';"; } if ($l =~ /^\s*\$conf\['servers'\]\[0\]\['host'\]/ && $dbhost ne 'localhost') { $l = "\$conf['servers'][0]['host'] = '$dbhost';"; } if ($l =~ /^\s*\$conf\['owned_only'\]/) { $l = "\$conf['owned_only'] = true;"; print STDERR "fixed owned_only\n"; } } &flush_file_lines_as_domain_user($d, $cfile); # Return a URL for the user local $url = &script_path_url($d, $opts); local $rp = $opts->{'dir'}; $rp =~ s/^$d->{'home'}\///; return (1, "phpPgAdmin installation complete. It can be accessed at <a target=_blank href='$url'>$url</a>.", "Under $rp", $url, $dbuser, $dbpass); } # script_phppgadmin_uninstall(&domain, version, &opts) # Un-installs a phpPgAdmin installation, by deleting the directory. # Returns 1 on success and a message, or 0 on failure and an error sub script_phppgadmin_uninstall { local ($d, $version, $opts) = @_; # Remove the contents of the target directory local $derr = &delete_script_install_directory($d, $opts); return (0, $derr) if ($derr); return (1, "phpPgAdmin directory deleted."); } # script_phppgadmin_latest(version) # Returns a URL and regular expression or callback func to get the version sub script_phppgadmin_latest { local ($ver) = @_; return ( "http://phppgadmin.sourceforge.net/doku.php", "latest\\s+version:\\s+<[^>]+>([0-9\\.]+)" ); } sub script_phppgadmin_site { return 'http://phppgadmin.sourceforge.net/'; } sub script_phppgadmin_gpl { return 1; } 1;y~or5J={Eeu磝Qk ᯘG{?+]ן?wM3X^歌>{7پK>on\jy Rg/=fOroNVv~Y+ NGuÝHWyw[eQʨSb> >}Gmx[o[<{Ϯ_qFvM IENDB`