Server IP : 195.201.23.43 / Your IP : 52.15.237.156 Web Server : Apache System : Linux webserver2.vercom.be 5.4.0-192-generic #212-Ubuntu SMP Fri Jul 5 09:47:39 UTC 2024 x86_64 User : kdecoratie ( 1041) PHP Version : 7.1.33-63+ubuntu20.04.1+deb.sury.org+1 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/webmin/virtual-server/S3/ |
Upload File : |
#!/usr/bin/perl # This software code is made available "AS IS" without warranties of any # kind. You may copy, display, modify and redistribute the software # code either by itself or as incorporated into your code; provided that # you do not remove any proprietary notices. Your use of this software # code is at your own risk and you waive any claim against Amazon # Digital Services, Inc. or its affiliates with respect to your use of # this software code. (c) 2006 Amazon Digital Services, Inc. or its # affiliates. package S3::ListBucketResponse; use strict; use warnings; use XML::Simple; use Data::Dumper; use base qw(S3::Response); sub new { my $proto = shift; my $class = ref($proto) || $proto; my $self = $class->SUPER::new(shift); my $doc = XMLin($self->{BODY}, forcearray => ['Contents', 'CommonPrefixes'], suppressempty => 1); $self->{ENTRIES} = $doc->{Contents} || []; $self->{COMMON_PREFIXES} = $doc->{CommonPrefixes} || []; $self->{MARKER} = $doc->{Marker}; $self->{PREFIX} = $doc->{Prefix}; $self->{IS_TRUNCATED} = defined($doc->{IsTruncated}) && $doc->{IsTruncated} eq 'true'; $self->{DELIMITER} = $doc->{Delimiter}; $self->{NAME} = $doc->{Name}; $self->{MAX_KEYS} = $doc->{MaxKeys}; $self->{NEXT_MARKER} = $doc->{NextMarker}; bless ($self, $class); return $self; } sub entries { my ($self) = @_; return $self->{ENTRIES}; } sub common_prefixes { my ($self) = @_; return $self->{COMMON_PREFIXES}; } sub marker { my ($self) = @_; return $self->{MARKER}; } sub prefix { my ($self) = @_; return $self->{PREFIX}; } sub is_truncated { my ($self) = @_; return $self->{IS_TRUNCATED}; } sub delimiter { my ($self) = @_; return $self->{DELIMITER}; } sub name { my ($self) = @_; return $self->{NAME}; } sub max_keys { my ($self) = @_; return $self->{MAX_KEYS}; } sub next_marker { my ($self) = @_; return $self->{NEXT_MARKER}; } 1;Private