2008-03-31 01:18:04 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sapphire's generic RESTful server.
|
|
|
|
*
|
|
|
|
* NOTE: This is an alpha module and its API is currently very volatile. It functions, but it might change radically
|
|
|
|
* before the next release!
|
|
|
|
*
|
|
|
|
* This class gives your application a RESTful API for free. All you have to do is define static $api_access = true on
|
|
|
|
* the appropriate DataObjects. You will need to ensure that all of your data manipulation and security is defined in
|
|
|
|
* your model layer (ie, the DataObject classes) and not in your Controllers. This is the recommended design for Sapphire
|
|
|
|
* applications.
|
|
|
|
*
|
|
|
|
* - GET /api/v1/(ClassName)/(ID) - gets a database record
|
|
|
|
* - GET /api/v1/(ClassName)/(ID)/(Relation) - get all of the records linked to this database record by the given reatlion (NOT IMPLEMENTED YET)
|
|
|
|
* - GET /api/v1/(ClassName)?(Field)=(Val)&(Field)=(Val) - searches for matching database records (NOT IMPLEMENTED YET)
|
|
|
|
*
|
|
|
|
* - PUT /api/v1/(ClassName)/(ID) - updates a database record (NOT IMPLEMENTED YET)
|
|
|
|
* - PUT /api/v1/(ClassName)/(ID)/(Relation) - updates a relation, replacing the existing record(s) (NOT IMPLEMENTED YET)
|
|
|
|
* - POST /api/v1/(ClassName)/(ID)/(Relation) - updates a relation, appending to the existing record(s) (NOT IMPLEMENTED YET)
|
|
|
|
*
|
|
|
|
* - DELETE /api/v1/(ClassName)/(ID) - deletes a database record (NOT IMPLEMENTED YET)
|
|
|
|
* - DELETE /api/v1/(ClassName)/(ID)/(Relation)/(ForeignID) - remove the relationship between two database records, but don't actually delete the foreign object (NOT IMPLEMENTED YET)
|
|
|
|
*
|
|
|
|
* - POST /api/v1/(ClassName)/(ID)/(MethodName) - executes a method on the given object (e.g, publish)
|
2008-06-15 15:33:53 +02:00
|
|
|
*
|
2008-08-09 05:29:30 +02:00
|
|
|
* @todo Finish RestfulServer_Item and RestfulServer_List implementation and re-enable $url_handlers
|
|
|
|
*
|
2008-06-15 15:33:53 +02:00
|
|
|
* @package sapphire
|
|
|
|
* @subpackage api
|
2008-03-31 01:18:04 +02:00
|
|
|
*/
|
|
|
|
class RestfulServer extends Controller {
|
2008-08-09 05:19:54 +02:00
|
|
|
static $url_handlers = array(
|
2008-08-09 05:29:30 +02:00
|
|
|
'$ClassName/$ID/$Relation' => 'handleAction'
|
|
|
|
#'$ClassName/#ID' => 'handleItem',
|
|
|
|
#'$ClassName' => 'handleList',
|
2008-08-09 05:19:54 +02:00
|
|
|
);
|
|
|
|
|
2008-03-31 01:18:04 +02:00
|
|
|
protected static $api_base = "api/v1/";
|
2008-08-09 05:19:54 +02:00
|
|
|
|
2008-08-09 05:29:30 +02:00
|
|
|
/*
|
|
|
|
function handleItem($request) {
|
|
|
|
return new RestfulServer_Item(DataObject::get_by_id($request->param("ClassName"), $request->param("ID")));
|
2008-08-09 05:19:54 +02:00
|
|
|
}
|
|
|
|
|
2008-08-09 05:29:30 +02:00
|
|
|
function handleList($request) {
|
|
|
|
return new RestfulServer_List(DataObject::get($request->param("ClassName"),""));
|
2008-08-09 05:19:54 +02:00
|
|
|
}
|
2008-08-09 05:29:30 +02:00
|
|
|
*/
|
2008-03-31 01:18:04 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This handler acts as the switchboard for the controller.
|
|
|
|
* Since no $Action url-param is set, all requests are sent here.
|
|
|
|
*/
|
|
|
|
function index() {
|
|
|
|
ContentNegotiator::disable();
|
|
|
|
$requestMethod = $_SERVER['REQUEST_METHOD'];
|
2008-08-09 04:00:40 +02:00
|
|
|
if(!isset($this->urlParams['ClassName'])) return $this->notFound();
|
2008-03-31 01:18:04 +02:00
|
|
|
$className = $this->urlParams['ClassName'];
|
2008-08-09 04:00:40 +02:00
|
|
|
$id = (isset($this->urlParams['ID'])) ? $this->urlParams['ID'] : null;
|
2008-08-09 04:16:46 +02:00
|
|
|
$relation = (isset($this->urlParams['Relation'])) ? $this->urlParams['Relation'] : null;
|
|
|
|
|
2008-08-09 05:54:55 +02:00
|
|
|
$extension = $this->request->getExtension();
|
|
|
|
|
2008-08-09 04:16:46 +02:00
|
|
|
// Determine mime-type from extension
|
|
|
|
$contentMap = array(
|
|
|
|
'xml' => 'text/xml',
|
|
|
|
'json' => 'text/json',
|
|
|
|
'js' => 'text/json',
|
|
|
|
'xhtml' => 'text/html',
|
|
|
|
'html' => 'text/html',
|
|
|
|
);
|
|
|
|
$contentType = isset($contentMap[$extension]) ? $contentMap[$extension] : 'text/xml';
|
2008-08-09 06:38:44 +02:00
|
|
|
|
|
|
|
if(!$extension) $extension = "xml";
|
|
|
|
$formatter = DataFormatter::for_extension($extension); //$this->dataFormatterFromMime($contentType);
|
|
|
|
|
2008-03-31 01:18:04 +02:00
|
|
|
switch($requestMethod) {
|
|
|
|
case 'GET':
|
2008-08-09 06:38:44 +02:00
|
|
|
return $this->getHandler($className, $id, $relation, $formatter);
|
2008-03-31 01:18:04 +02:00
|
|
|
|
|
|
|
case 'PUT':
|
2008-08-09 06:38:44 +02:00
|
|
|
return $this->putHandler($className, $id, $relation, $formatter);
|
2008-03-31 01:18:04 +02:00
|
|
|
|
|
|
|
case 'DELETE':
|
2008-08-09 06:38:44 +02:00
|
|
|
return $this->deleteHandler($className, $id, $relation, $formatter);
|
2008-03-31 01:18:04 +02:00
|
|
|
|
|
|
|
case 'POST':
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handler for object read.
|
|
|
|
*
|
|
|
|
* The data object will be returned in the following format:
|
|
|
|
*
|
|
|
|
* <ClassName>
|
|
|
|
* <FieldName>Value</FieldName>
|
|
|
|
* ...
|
|
|
|
* <HasOneRelName id="ForeignID" href="LinkToForeignRecordInAPI" />
|
|
|
|
* ...
|
|
|
|
* <HasManyRelName>
|
|
|
|
* <ForeignClass id="ForeignID" href="LinkToForeignRecordInAPI" />
|
|
|
|
* <ForeignClass id="ForeignID" href="LinkToForeignRecordInAPI" />
|
|
|
|
* </HasManyRelName>
|
|
|
|
* ...
|
|
|
|
* <ManyManyRelName>
|
|
|
|
* <ForeignClass id="ForeignID" href="LinkToForeignRecordInAPI" />
|
|
|
|
* <ForeignClass id="ForeignID" href="LinkToForeignRecordInAPI" />
|
|
|
|
* </ManyManyRelName>
|
|
|
|
* </ClassName>
|
|
|
|
*
|
|
|
|
* Access is controlled by two variables:
|
|
|
|
*
|
|
|
|
* - static $api_access must be set. This enables the API on a class by class basis
|
|
|
|
* - $obj->canView() must return true. This lets you implement record-level security
|
2008-08-09 05:29:30 +02:00
|
|
|
*
|
|
|
|
* @param String $className
|
|
|
|
* @param Int $id
|
|
|
|
* @param String $relation
|
|
|
|
* @param String $contentType
|
|
|
|
* @return String The serialized representation of the requested object(s) - usually XML or JSON.
|
2008-03-31 01:18:04 +02:00
|
|
|
*/
|
2008-08-09 06:38:44 +02:00
|
|
|
protected function getHandler($className, $id, $relation, $formatter) {
|
2008-08-09 07:00:42 +02:00
|
|
|
$limit = (int)$this->request->getVar('limit');
|
|
|
|
|
2008-08-09 04:16:46 +02:00
|
|
|
if($id) {
|
|
|
|
$obj = DataObject::get_by_id($className, $id);
|
|
|
|
if(!$obj) {
|
|
|
|
return $this->notFound();
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!$obj->stat('api_access') || !$obj->canView()) {
|
|
|
|
return $this->permissionFailure();
|
2008-03-31 01:18:04 +02:00
|
|
|
}
|
2008-08-09 04:16:46 +02:00
|
|
|
|
|
|
|
if($relation) {
|
2008-08-09 07:00:42 +02:00
|
|
|
if($obj->hasMethod($relation)) $obj = $obj->$relation('', '', '', $limit);
|
2008-08-09 04:16:46 +02:00
|
|
|
else return $this->notFound();
|
|
|
|
}
|
|
|
|
|
2008-03-31 10:49:27 +02:00
|
|
|
} else {
|
2008-08-09 04:16:46 +02:00
|
|
|
$obj = DataObject::get($className, "");
|
2008-08-09 05:54:55 +02:00
|
|
|
// show empty serialized result when no records are present
|
|
|
|
if(!$obj) $obj = new DataObjectSet();
|
2008-08-09 04:16:46 +02:00
|
|
|
if(!singleton($className)->stat('api_access')) {
|
|
|
|
return $this->permissionFailure();
|
|
|
|
}
|
|
|
|
}
|
2008-03-31 01:18:04 +02:00
|
|
|
|
2008-08-09 06:38:44 +02:00
|
|
|
if($obj instanceof DataObjectSet) return $formatter->convertDataObjectSet($obj);
|
|
|
|
else return $formatter->convertDataObject($obj);
|
2008-03-31 01:18:04 +02:00
|
|
|
}
|
2008-03-31 10:49:27 +02:00
|
|
|
|
2008-03-31 01:18:04 +02:00
|
|
|
/**
|
|
|
|
* Handler for object delete
|
|
|
|
*/
|
|
|
|
protected function deleteHandler($className, $id) {
|
|
|
|
if($id) {
|
|
|
|
$obj = DataObject::get_by_id($className, $id);
|
|
|
|
if($obj->stat('api_access') && $obj->canDelete()) {
|
|
|
|
$obj->delete();
|
|
|
|
} else {
|
|
|
|
return $this->permissionFailure();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handler for object write
|
|
|
|
*/
|
|
|
|
protected function putHandler($className, $id) {
|
|
|
|
return $this->permissionFailure();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handler for object append / method call
|
|
|
|
*/
|
|
|
|
protected function postHandler($className, $id) {
|
|
|
|
return $this->permissionFailure();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
protected function permissionFailure() {
|
|
|
|
// return a 401
|
|
|
|
$this->getResponse()->setStatusCode(403);
|
|
|
|
return "You don't have access to this item through the API.";
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function notFound() {
|
|
|
|
// return a 404
|
|
|
|
$this->getResponse()->setStatusCode(404);
|
|
|
|
return "That object wasn't found";
|
|
|
|
}
|
|
|
|
|
2008-08-09 05:19:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Restful server handler for a DataObjectSet
|
|
|
|
*/
|
|
|
|
class RestfulServer_List {
|
|
|
|
static $url_handlers = array(
|
|
|
|
'#ID' => 'handleItem',
|
|
|
|
);
|
|
|
|
|
|
|
|
function __construct($list) {
|
|
|
|
$this->list = $list;
|
|
|
|
}
|
|
|
|
|
2008-08-09 05:29:30 +02:00
|
|
|
function handleItem($request) {
|
|
|
|
return new RestulServer_Item($this->list->getById($request->param('ID')));
|
2008-08-09 05:19:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Restful server handler for a single DataObject
|
|
|
|
*/
|
|
|
|
class RestfulServer_Item {
|
|
|
|
static $url_handlers = array(
|
|
|
|
'$Relation' => 'handleRelation',
|
|
|
|
);
|
|
|
|
|
|
|
|
function __construct($item) {
|
|
|
|
$this->item = $item;
|
|
|
|
}
|
|
|
|
|
2008-08-09 05:29:30 +02:00
|
|
|
function handleRelation($request) {
|
|
|
|
$funcName = $request('Relation');
|
2008-08-09 05:19:54 +02:00
|
|
|
$relation = $this->item->$funcName();
|
|
|
|
|
|
|
|
if($relation instanceof DataObjectSet) return new RestfulServer_List($relation);
|
2008-08-09 05:29:30 +02:00
|
|
|
else return new RestfulServer_Item($relation);
|
2008-08-09 05:19:54 +02:00
|
|
|
}
|
|
|
|
}
|