The Google Base data API is designed to enable developers to do two things:
Query Google Base data to create applications and mashups.
Input and manage Google Base items programmatically.
There are two item feeds: snippets feed and customer items feeds. The snippets feed contains all Google Base data and is available to anyone to query against without a need for authentication. The customer items feed is a customer-specific subset of data and only a customer/owner can access this feed to insert, update, or delete their own data. Queries are constructed the same way against both types of feeds.
See http://code.google.com/apis/base for more information about the Google Base API.
The Google Base API, like all GData APIs, is based off of the Atom Publishing Protocol (APP), an XML based format for managing web-based resources. Traffic between a client and the Google Base servers occurs over HTTP and allows for both authenticated and unauthenticated connections.
Before any transactions can occur, this connection needs to be made. Creating a connection to the base servers involves two steps: creating an HTTP client and binding a
Zend_Gdata_Gbase
service instance to that client.
The Google Base API allows access to both public and private base feeds. Public feeds do not require authentication, but are read-only and offer reduced functionality. Private feeds offers the most complete functionality but requires an authenticated connection to the base servers. There are three authentication schemes that are supported by Google Base:
ClientAuth provides direct username/password authentication to the base servers. Since this scheme requires that users provide your application with their password, this authentication is only recommended when other authentication schemes are insufficient.
AuthSub allows authentication to the base servers via a Google proxy server. This provides the same level of convenience as ClientAuth but without the security risk, making this an ideal choice for web-based applications.
The Zend_Gdata
library provides support for all three authentication schemes. The rest of this chapter will assume that you are familiar the authentication schemes available and how to create an appropriate authenticated connection. For more information, please see section Раздел 16.1.4, «Google Data Client Authentication».
or the
Authentication Overview in the Google Data API Developer's Guide.
In order to interact with Google Base, this library provides the
Zend_Gdata_Gbase
service class. This class provides a common interface to the Google Data and Atom Publishing Protocol models and assists in marshaling requests to and from the base servers.
Once deciding on an authentication scheme, the next step is to create an instance of
Zend_Gdata_Gbase
. This class takes in an instance of
Zend_Http_Client
as a single argument. This provides an interface for AuthSub and ClientAuth authentication, as both of these creation of a special authenticated HTTP client. If no arguments are provided, an unauthenticated instance of
Zend_Http_Client
will be automatically created.
The example below shows how to create a Base service class using ClientAuth authentication:
<?php require_once 'Zend/Loader.php'; Zend_Loader::loadClass('Zend_Gdata_ClientLogin'); Zend_Loader::loadClass('Zend_Gdata_Gbase'); // Parameters for ClientAuth authentication $service = Zend_Gdata_Gbase::AUTH_SERVICE_NAME; $user = "sample.user@gmail.com"; $pass = "pa$$w0rd"; // Create an authenticated HTTP client $client = Zend_Gdata_ClientLogin::getHttpClient($user, $pass, $service); // Create an instance of the Base service $service = new Zend_Gdata_Gbase($client);
A Base service using AuthSub can be created in a similar, though slightly more lengthy fashion:
<?php require_once 'Zend/Loader.php'; Zend_Loader::loadClass('Zend_Gdata_AuthSub'); Zend_Loader::loadClass('Zend_Gdata_Gbase'); /** Retrieve the current URL so that the AuthSub server knows where to * redirect the user after authentication is complete. */ function getCurrentUrl() { global $_SERVER; // Filter php_self to avoid a security vulnerability. $php_request_uri = htmlentities(substr($_SERVER['REQUEST_URI'], 0, strcspn($_SERVER['REQUEST_URI'], "\n\r")), ENT_QUOTES); if (isset($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) == 'on') { $protocol = 'https://'; } else { $protocol = 'http://'; } $host = $_SERVER['HTTP_HOST']; if ($_SERVER['HTTP_PORT'] != '' && (($protocol == 'http://' && $_SERVER['HTTP_PORT'] != '80') || ($protocol == 'https://' && $_SERVER['HTTP_PORT'] != '443'))) { $port = ':' . $_SERVER['HTTP_PORT']; } else { $port = ''; } return $protocol . $host . $port . $php_request_uri; } /** Obtain an AuthSub authenticated HTTP client, redirecting the user to the * AuthSub server to login if necessary. */ function getAuthSubHttpClient() { global $_SESSION, $_GET; // If there is no AuthSub session or one-time token waiting for us, // redirect the user to the AuthSub server to get one. if (!isset($_SESSION['sessionToken']) && !isset($_GET['token'])) { // Parameters to give to AuthSub server $next = getCurrentUrl(); $scope = "http://www.google.com/base/feeds/items/"; $secure = false; $session = true; // Redirect the user to the AuthSub server to sign in $authSubUrl = Zend_Gdata_AuthSub::getAuthSubTokenUri($next, $scope, $secure, $session); header("HTTP/1.0 307 Temporary redirect"); header("Location: " . $authSubUrl); exit(); } // Convert an AuthSub one-time token into a session token if needed if (!isset($_SESSION['sessionToken']) && isset($_GET['token'])) { $_SESSION['sessionToken'] = Zend_Gdata_AuthSub::getAuthSubSessionToken($_GET['token']); } // At this point we are authenticated via AuthSub and can obtain an // authenticated HTTP client instance // Create an authenticated HTTP client $client = Zend_Gdata_AuthSub::getHttpClient($_SESSION['sessionToken']); return $client; } // -> Script execution begins here <- // Make sure http://code.google.com/apis/gdata/reference.html#Queriesthat the user has a valid session, so we can record the // AuthSub session token once it is available. session_start(); // Create an instance of the Base service, redirecting the user // to the AuthSub server if necessary. $service = new Zend_Gdata_Gbase(getAuthSubHttpClient());
Finally, an unauthenticated server can be created for use with snippets feeds:
<?php require_once 'Zend/Loader.php'; Zend_Loader::loadClass('Zend_Gdata_Gbase'); // Create an instance of the Base service using an unauthenticated HTTP client $service = new Zend_Gdata_Gbase();
You can query customer items feed or snippets feed to retrieve items. It involves two steps, sending a query and iterating through the returned feed.
You can send a structured query to retrieve items from your own customer items feed or from the public snippets feed.
When retrieveing items using the Base API, specially constructed query URLs are used to describe what events should be returned. The Zend_Gdata_Gbase_ItemQuery
and Zend_Gdata_Gbase_SnippetQuery
classes simplify this task by automatically constructing a query URL based on provided parameters.
To execute a query against the customer items feed, invoke newItemQuery()
and getGbaseItemFeed()
methods:
<?php $service = new Zend_Gdata_Gbase($client); $query = $service->newItemQuery(); $query->setBq('[title:Programming]'); $query->setOrderBy('modification_time'); $query->setSortOrder('descending'); $query->setMaxResults('5'); $feed = $service->getGbaseItemFeed($query);
A full list of these paremeters is available at the Query parameters section of the Customer Items Feed documentation.
To execute a query against the public snippets feed, invoke newSnippetQuery()
and getGbaseSnippetFeed()
methods:
<?php $service = new Zend_Gdata_Gbase(); $query = $service->newSnippetQuery(); $query->setBq('[title:Programming]'); $query->setOrderBy('modification_time'); $query->setSortOrder('descending'); $query->setMaxResults('5'); $feed = $service->getGbaseSnippetFeed($query);
A full list of these paremeters is available at the Query parameters section of the Snippets Feed documentation.
Google Base items can contain item-specific attributes such as <g:main_ingredient>
and <g:weight>
.
To iterate through all attributes of a given item, invoke getGbaseAttributes()
and iterate through the results:
<?php foreach ($feed->entries as $entry) { // Get all attributes and print out the name and text value of each attribute $baseAttributes = $entry->getGbaseAttributes(); foreach ($baseAttributes as $attr) { echo "Attribute " . $attr->name . " : " . $attr->text . "<br>"; } }
Or, you can look for specific attribute name and iterate through the results that match:
<?php foreach ($feed->entries as $entry) { // Print all main ingredients <g:main_ingredient> $baseAttributes = $entry->getGbaseAttribute("main_ingredient"); foreach ($baseAttributes as $attr) { echo "Main ingredient: " . $attr->text . "<br>"; } }
A customer/owner can access his own Customer Items feed to insert, update, or delete their items. These operations do not apply to the public snippets feed.
You can test a feed operation before it is actually executed by setting the dry-run flag ($dryRun
) to true
. Once you are sure that you want to submit the data, set it to false
to execute the operation.
Items can be added by using the insertGbaseItem()
method for the Base service:
<?php $service = new Zend_Gdata_Gbase($client); $newEntry = $service->newItemEntry(); // Add title $title = "PHP Developer Handbook"; $newEntry->title = $service->newTitle(trim($title)); // Add some content $content = "Essential handbook for PHP developers."; $newEntry->content = $service->newContent($content); $newEntry->content->type = 'text'; // Define product type $itemType = "Products"; $newEntry->itemType = $itemType; // Add item specific attributes $newEntry->addGbaseAttribute("product_type", "book", "text"); $newEntry->addGbaseAttribute("price", "12.99 USD", "floatUnit"); $newEntry->addGbaseAttribute("quantity", "10", "int"); $newEntry->addGbaseAttribute("weight", "2.2 lbs", "numberUnit"); $newEntry->addGbaseAttribute("condition", "New", "text"); $newEntry->addGbaseAttribute("author", "John Doe", "text"); $newEntry->addGbaseAttribute("edition", "First Edition", "text"); $newEntry->addGbaseAttribute("pages", "253", "number"); $newEntry->addGbaseAttribute("publisher", "My Press", "text"); $newEntry->addGbaseAttribute("year", "2007", "number"); $newEntry->addGbaseAttribute("payment_accepted", "Google Checkout", "text"); $dryRun = true; $createdEntry = $service->insertGbaseItem($newEntry, $dryRun);
You can update each attribute element of an item as you iterate through them:
<?php // Update the title $newTitle = "PHP Developer Handbook Second Edition"; $entry->title = $service->newTitle($newTitle); // Find <g:price> attribute and update the price $baseAttributes = $entry->getGbaseAttribute("price"); if (is_object($baseAttributes[0])) { $newPrice = "16.99 USD"; $baseAttributes[0]->text = $newPrice; } // Find <g:pages> attribute and update the number of pages $baseAttributes = $entry->getGbaseAttribute("pages"); if (is_object($baseAttributes[0])) { $newPages = "278"; $baseAttributes[0]->text = $newPages; // Update the attribute type from "number" to "int" if ($baseAttributes[0]->type == "number") { $newType = "int"; $baseAttributes[0]->type = $newType; } } // Remove <g:label> attributes $baseAttributes = $entry->getGbaseAttribute("label"); foreach ($baseAttributes as $note) { $entry->removeGbaseAttribute($note); } // Add new attributes $entry->addGbaseAttribute("note", "PHP 5", "text"); $entry->addGbaseAttribute("note", "Web Programming", "text"); // Save the changes by invoking save() on the entry object itself $dryRun = true; $entry->save($dryRun); // Or, save the changes by calling updateGbaseItem() on the service object // $dryRun = true; // $service->updateGbaseItem($entry, $dryRun);
After making the changes, either invoke save($dryRun)
method on the Zend_Gdata_Gbase_ItemEntry
object or call updateGbaseItem($entry, $dryRun)
method on the Zend_Gdata_Gbase
object to save the changes.