]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Plugin/amazon_s3.pm
(no commit message)
[ikiwiki.git] / IkiWiki / Plugin / amazon_s3.pm
index 0482178eab3e4e5b61f2a2217722f53e79c70d61..cfd8cd3477f81dd0758564994f35979419e330a0 100644 (file)
@@ -63,7 +63,7 @@ sub getsetup () {
                amazon_s3_bucket => {
                        type => "string",
                        example => "mywiki",
-                       description => "globally unique name of bucket to store wiki into",
+                       description => "globally unique name of bucket to store wiki in",
                        safe => 1,
                        rebuild => 1,
                },
@@ -133,7 +133,11 @@ sub getbucket {
        }
 
        if (! $bucket) {
-               error(gettext("Failed to create bucket inside S3: ").
+               # Try to use existing bucket.
+               $bucket=$s3->bucket($config{amazon_s3_bucket});
+       }
+       if (! $bucket) {
+               error(gettext("Failed to create S3 bucket: ").
                        $s3->err.": ".$s3->errstr."\n");
        }
 
@@ -178,7 +182,7 @@ sub writefile ($$$;$$) {
 
        # First, write the file to disk.
        my $ret=$IkiWiki::Plugin::amazon_s3::subs{'IkiWiki::writefile'}->($file, $destdir, $content, $binary, $writer);
-               
+
        my @keys=IkiWiki::Plugin::amazon_s3::file2keys("$destdir/$file");
 
        # Store the data in S3.
@@ -218,7 +222,7 @@ sub writefile ($$$;$$) {
                                }
                        }
                        if (! $res) {
-                               error(gettext("Failed to save file into S3: ").
+                               error(gettext("Failed to save file to S3: ").
                                        $bucket->err.": ".$bucket->errstr."\n");
                        }
                }
@@ -240,7 +244,7 @@ sub prune ($) {
                foreach my $key (@keys) {
                        my $res=$bucket->delete_key($key);
                        if (! $res) {
-                               error(gettext("Failed to delete file inside S3: ").
+                               error(gettext("Failed to delete file from S3: ").
                                        $bucket->err.": ".$bucket->errstr."\n");
                        }
                }