Viewing file: list_s3s.cgi (1.27 KB) -rwxrwxr-x Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl # Show a list of S3-compatible accounts
require './virtual-server-lib.pl'; &ReadParse(); &can_cloud_providers() || &error($text{'s3s_ecannot'});
&ui_print_header(undef, $text{'s3s_title'}, "", "s3s");
print "<p>",$text{'s3s_longdesc'},"</p>\n";
($err, $warn) = &check_s3(); print &ui_alert_box(&text('s3s_echeck', $err), 'warn', undef, undef, '') if ($err); print &ui_alert_box($warn, 'warn') if ($warn);
my @s3s = &list_s3_accounts(); my @scheds = &list_scheduled_backups(); my @links = ( &ui_link("edit_s3.cgi?new=1", $text{'s3s_add'}) ); if (@s3s) { print &ui_links_row(\@links); print &ui_columns_start([ $text{'s3s_access'}, $text{'s3s_desc'}, $text{'s3s_endpoint'}, $text{'s3s_usedby'} ]); foreach my $s3 (@s3s) { my @users = grep { &backup_uses_s3_account($_, $s3) } @scheds; print &ui_columns_row([ $s3->{'iam'} ? $text{'s3s_auto'} : &ui_link("edit_s3.cgi?id=$s3->{'id'}", $s3->{'access'}), $s3->{'desc'}, &html_escape($s3->{'endpoint'} || $text{'s3s_endpoint_def'}), @users ? &text('s3s_users', scalar(@users)) : $text{'s3s_nousers'}, ]); } print &ui_columns_end(); } else { print "<b>$text{'s3s_none'}</b><p>\n"; } print &ui_links_row(\@links);
&ui_print_footer("", $text{'index_return'});
|