Zend_Service_Amazon_S3
Introduction
Amazon S3 provides a simple web services interface that can be used to
store and retrieve any amount of data, at any time, from anywhere on
the web. It gives any developer access to the same highly scalable,
reliable, fast, inexpensive data storage infrastructure that Amazon
uses to run its own global network of web sites. The service aims to
maximize benefits of scale and to pass those benefits on to developers.
Registering with Amazon S3
Before you can get started with Zend_Service_Amazon_S3, you must
first register for an account. Please see the
» S3 FAQ
page on the Amazon website for more information.
After registering, you will receive an application key and a secret key.
You will need both to access the S3 service.
API Documentation
The Zend_Service_Amazon_S3 class provides the
PHP wrapper to the Amazon S3 REST interface. Please consult the
» Amazon
S3 documentation for detailed description of the service. You will need to
be familiar with basic concepts in order to use this service.
Features
Zend_Service_Amazon_S3 provides the following functionality:
-
A single point for configuring your amazon.s3 authentication
credentials that can be used across the amazon.s3 namespaces.
-
A proxy object that is more convenient to use than an
HTTP client alone, mostly removing the need to manually
construct HTTP POST requests to access the REST service.
-
A response wrapper that parses each response body and throws an
exception if an error occurred, alleviating the need to repeatedly
check the success of many commands.
-
Additional convenience methods for some of the more common operations.
Getting Started
Once you have registered with Amazon S3, you're ready to store your first
data object on the S3. The objects on S3 are stored in containers, called
"buckets". Bucket names are unique on S3, and each user can have no more than
100 buckets simultaneously. Each bucket can contain unlimited amount of objects,
identified by name.
The following example demonstrates creating a bucket, storing and retrieving the data.
Example #1 Zend_Service_Amazon_S3 Usage Example
span style="color: #ff0000;">'Zend/Service/Amazon/S3.php'"my-own-bucket");
$s3->putObject("my-own-bucket/myobject", "somedata""my-own-bucket/myobject");
Since Zend_Service_Amazon_S3 service requires authentication,
you should pass your credentials (AWS key and secret key) to the constructor.
If you only use one account, you can set default credentials for the service:
span style="color: #ff0000;">'Zend/Service/Amazon/S3.php'
Bucket operations
All objects in S3 system are stored in buckets. Bucket has to be created
before any storage operation. Bucket name is unique in the system, so
you can not have bucket named the same as someone else's bucket.
Bucket name can contain lowercase letters, digits, periods (.), underscores (_), and
dashes (-). No other symbols allowed. Bucket name should start with letter or digit, and
be 3 to 255 characters long. Names looking like an IP address (e.g. "192.168.16.255")
are not allowed.
-
createBucket() creates a new bucket.
-
cleanBucket() removes all objects that are contained in
a bucket.
-
removeBucket() removes the bucket from the system. The
bucket should be empty to be removed.
Example #2 Zend_Service_Amazon_S3 Bucket Removal Example
span style="color: #ff0000;">'Zend/Service/Amazon/S3.php'"my-own-bucket");
$s3->removeBucket("my-own-bucket");
-
getBuckets() returns the list of the names of all
buckets belonging to the user.
Example #3 Zend_Service_Amazon_S3 Bucket Listing Example
span style="color: #ff0000;">'Zend/Service/Amazon/S3.php'"I have bucket $bucket\n";
}
-
isBucketAvailable() check if the bucket exists and
returns TRUE if it does.
Object operations
The object is the basic storage unit in S3. Object stores unstructured data, which can
be any size up to 4 gigabytes. There's no limit on how many objects can be stored on the
system.
The object are contained in buckets. Object is identified by name, which can be any
utf-8 string. It is common to use hierarchical names (such as
Pictures/Myself/CodingInPHP.jpg ) to organise object names. Object name is
prefixed with bucket name when using object functions, so for object "mydata" in bucket
"my-own-bucket" the name would be my-own-bucket/mydata .
Objects can be replaced (by rewriting new data with the same key) or deleted, but not
modified, appended, etc. Object is always stored whole.
By default, all objects are private and can be accessed only by their owner. However, it
is possible to specify object with public access, in which case it will be available
through the URL:
http://s3.amazonaws.com/[bucket-name]/[object-name] .
-
putObject($object, $data, $meta) created an object with
name $object (should contain the bucket name as prefix!)
having $data as its content.
Optional $meta parameter is the array of metadata, which
currently supports the following parameters as keys:
-
- S3_CONTENT_TYPE_HEADER
-
MIME content type of the data. If not specified,
the type will be guessed according to the file extension of the
object name.
-
- S3_ACL_HEADER
-
The access to the item. Following access constants can be used:
-
- S3_ACL_PRIVATE
-
Only the owner has access to the item.
-
- S3_ACL_PUBLIC_READ
-
Anybody can read the object, but only owner can
write. This is setting may be used to store publicly
accessible content.
-
- S3_ACL_PUBLIC_WRITE
-
Anybody can read or write the object. This policy is
rarely useful.
-
- S3_ACL_AUTH_READ
-
Only the owner has write access to the item, and
other authenticated S3 users have read access. This
is useful for sharing data between S3 accounts
without exposing them to the public.
By default, all the items are private.
Example #4 Zend_Service_Amazon_S3 Public Object Example
span style="color: #ff0000;">'Zend/Service/Amazon/S3.php'"my-own-bucket/Pictures/Me.png""me.png"// or:
"me.png", "my-own-bucket/Pictures/Me.png""Go to http://s3.amazonaws.com/my-own-bucket/Pictures/Me.png to see me!\n";
-
getObject($object) retrieves object data from the
storage by name.
-
removeObject($object) removes the object from the
storage.
-
getInfo($object) retrieves the metadata information
about the object. The function will return array with metadata information. Some
of the useful keys are:
-
type
-
The MIME type of the item.
-
size
-
The size of the object data.
-
mtime
-
UNIX-type timestamp of the last modification for the object.
-
etag
-
The ETag of the data, which is the MD5 hash of the data,
surrounded by quotes (").
The function will return FALSE if the key does not
correspond to any existing object.
-
getObjectsByBucket($bucket) returns the list of the
object keys, contained in the bucket.
Example #5 Zend_Service_Amazon_S3 Object Listing Example
span style="color: #ff0000;">'Zend/Service/Amazon/S3.php'"my-own-bucket""I have $name key:\n";
$data = $s3->getObject("my-own-bucket/$name""with data: $data\n";
}
-
isObjectAvailable($object) checks if the object with
given name exists.
-
putFile($path, $object, $meta) puts the content of the
file in $path into the object named
$object.
The optional $meta argument is the same as for
putObject . If the content type is omitted, it will be guessed
basing on the source file name.
Data Streaming
It is possible to get and put objects using not stream data held in memory but files or
PHP streams. This is especially useful when file sizes are large in
order not to overcome memory limits.
To receive object using streaming, use method
getObjectStream($object, $filename). This method will return
Zend_Http_Response_Stream, which can be used as described in
HTTP Client Data Streaming section.
Example #6 Zend_Service_Amazon_S3 Data Streaming Example
$response = $amazon->getObjectStream("mybycket/zftest");
// copy file
"my/downloads/file");
// use stream
"my/downloads/file2", "w"
Second parameter for getObjectStream() is optional and
specifies target file to write the data. If not specified, temporary file is used, which
will be deleted after the response object is destroyed.
To send object using streaming, use putFileStream() which has
the same signature as putFile() but will use streaming and not
read the file into memory.
Also, you can pass stream resource to putObject() method data
parameter, in which case the data will be read from the stream when sending the request
to the server.
Stream wrapper
In addition to the interfaces described above,
Zend_Service_Amazon_S3 also supports operating as a stream
wrapper. For this, you need to register the client object as the stream wrapper:
Example #7 Zend_Service_Amazon_S3 Streams Example
span style="color: #ff0000;">'Zend/Service/Amazon/S3.php'"s3""s3://my-own-bucket""s3://my-own-bucket/testdata", "mydata""s3://my-own-bucket/testdata");
Directory operations (mkdir , rmdir , opendir ,
etc.) will operate on buckets and thus their arguments should be of the form of
s3://bucketname . File operations operate on objects. Object creation,
reading, writing, deletion, stat and directory listing is supported.
|
|