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
|
2008-08-09 09:03:24 +02:00
|
|
|
* - GET /api/v1/(ClassName)/(ID)/(Relation) - get all of the records linked to this database record by the given reatlion
|
|
|
|
* - GET /api/v1/(ClassName)?(Field)=(Val)&(Field)=(Val) - searches for matching database records
|
2008-03-31 01:18:04 +02:00
|
|
|
*
|
2008-08-09 09:03:24 +02:00
|
|
|
* - PUT /api/v1/(ClassName)/(ID) - updates a database record
|
2008-03-31 01:18:04 +02:00
|
|
|
* - 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-08-09 05:29:30 +02:00
|
|
|
*
|
2008-08-09 08:40:50 +02:00
|
|
|
* You can trigger searches based on the fields specified on {@link DataObject::searchable_fields} and passed
|
|
|
|
* through {@link DataObject::getDefaultSearchContext()}. Just add a key-value pair with the search-term
|
|
|
|
* to the url, e.g. /api/v1/(ClassName)/?Title=mytitle
|
|
|
|
*
|
|
|
|
* Other url-modifiers:
|
|
|
|
* - &limit=<numeric>: Limit the result set
|
|
|
|
* - &relationdepth=<numeric>: Displays links to existing has-one and has-many relationships to a certain depth (Default: 1)
|
|
|
|
* - &fields=<string>: Comma-separated list of fields on the output object (defaults to all database-columns)
|
|
|
|
*
|
|
|
|
* @todo Finish RestfulServer_Item and RestfulServer_List implementation and re-enable $url_handlers
|
2008-08-09 09:03:24 +02:00
|
|
|
* @todo Implement PUT/POST/DELETE for relations
|
2008-08-09 08:40:50 +02:00
|
|
|
* @todo Make SearchContext specification customizeable for each class
|
|
|
|
* @todo Allow for range-searches (e.g. on Created column)
|
2008-08-09 09:03:24 +02:00
|
|
|
* @todo Allow other authentication methods (currently only HTTP BasicAuth)
|
2008-08-11 01:29:30 +02:00
|
|
|
* @todo Filter relation listings by $api_access and canView() permissions
|
|
|
|
* @todo Exclude relations when "fields" are specified through URL (they should be explicitly requested in this case)
|
|
|
|
* @todo Custom filters per DataObject subclass, e.g. to disallow showing unpublished pages in SiteTree/Versioned/Hierarchy
|
|
|
|
* @todo URL parameter namespacing for search-fields, limit, fields, add_fields (might all be valid dataobject properties)
|
|
|
|
* e.g. you wouldn't be able to search for a "limit" property on your subclass as its overlayed with the search logic
|
|
|
|
* @todo i18n integration (e.g. Page/1.xml?lang=de_DE)
|
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 08:53:26 +02:00
|
|
|
/**
|
|
|
|
* If no extension is given in the request, resolve to this extension
|
|
|
|
* (and subsequently the {@link self::$default_mimetype}.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2008-08-09 09:03:24 +02:00
|
|
|
public static $default_extension = "xml";
|
2008-08-09 08:53:26 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* If no extension is given, resolve the request to this mimetype.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected static $default_mimetype = "text/xml";
|
|
|
|
|
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();
|
2008-08-09 08:53:26 +02:00
|
|
|
|
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 09:03:24 +02:00
|
|
|
// if api access is disabled, don't proceed
|
|
|
|
if(!singleton($className)->stat('api_access')) return $this->permissionFailure();
|
|
|
|
|
|
|
|
// authenticate through HTTP BasicAuth
|
|
|
|
$member = $this->authenticate();
|
|
|
|
|
|
|
|
// handle different HTTP verbs
|
|
|
|
if($this->request->isGET()) return $this->getHandler($className, $id, $relation);
|
|
|
|
if($this->request->isPOST()) return $this->postHandler($className, $id, $relation);
|
|
|
|
if($this->request->isPUT()) return $this->putHandler($className, $id, $relation);
|
|
|
|
if($this->request->isDELETE()) return $this->deleteHandler($className, $id, $relation);
|
|
|
|
|
|
|
|
// if no HTTP verb matches, return error
|
|
|
|
return $this->methodNotAllowed();
|
2008-03-31 01:18:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
*
|
2008-08-09 09:03:24 +02:00
|
|
|
* @todo Access checking
|
|
|
|
*
|
2008-08-09 05:29:30 +02:00
|
|
|
* @param String $className
|
|
|
|
* @param Int $id
|
|
|
|
* @param String $relation
|
|
|
|
* @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 08:53:26 +02:00
|
|
|
protected function getHandler($className, $id, $relation) {
|
2008-08-09 07:57:44 +02:00
|
|
|
$sort = array(
|
|
|
|
'sort' => $this->request->getVar('sort'),
|
|
|
|
'dir' => $this->request->getVar('dir')
|
|
|
|
);
|
|
|
|
$limit = array(
|
|
|
|
'start' => $this->request->getVar('start'),
|
|
|
|
'limit' => $this->request->getVar('limit')
|
|
|
|
);
|
2008-08-09 08:53:26 +02:00
|
|
|
|
2008-08-09 09:03:24 +02:00
|
|
|
$responseFormatter = $this->getResponseDataFormatter();
|
|
|
|
if(!$responseFormatter) return $this->unsupportedMediaType();
|
|
|
|
|
2008-08-09 04:16:46 +02:00
|
|
|
if($id) {
|
|
|
|
$obj = DataObject::get_by_id($className, $id);
|
2008-08-09 09:03:24 +02:00
|
|
|
if(!$obj) return $this->notFound();
|
|
|
|
if(!$obj->canView()) return $this->permissionFailure();
|
2008-08-11 01:29:30 +02:00
|
|
|
|
2008-08-09 04:16:46 +02:00
|
|
|
if($relation) {
|
2008-08-09 07:57:44 +02:00
|
|
|
if($relationClass = $obj->many_many($relation)) {
|
|
|
|
$query = $obj->getManyManyComponentsQuery($relation);
|
|
|
|
} elseif($relationClass = $obj->has_many($relation)) {
|
|
|
|
$query = $obj->getComponentsQuery($relation);
|
|
|
|
} elseif($relationClass = $obj->has_one($relation)) {
|
|
|
|
$query = null;
|
|
|
|
} elseif($obj->hasMethod("{$relation}Query")) {
|
|
|
|
// @todo HACK Switch to ComponentSet->getQuery() once we implement it (and lazy loading)
|
|
|
|
$query = $obj->{"{$relation}Query"}(null, $sort, null, $limit);
|
|
|
|
$relationClass = $obj->{"{$relation}Class"}();
|
|
|
|
} else {
|
|
|
|
return $this->notFound();
|
|
|
|
}
|
2008-08-11 01:29:30 +02:00
|
|
|
|
2008-08-09 07:57:44 +02:00
|
|
|
// get all results
|
|
|
|
$obj = $this->search($relationClass, $this->request->getVars(), $sort, $limit, $query);
|
|
|
|
if(!$obj) $obj = new DataObjectSet();
|
2008-08-09 04:16:46 +02:00
|
|
|
}
|
|
|
|
|
2008-03-31 10:49:27 +02:00
|
|
|
} else {
|
2008-08-09 08:18:32 +02:00
|
|
|
$obj = $this->search($className, $this->request->getVars(), $sort, $limit);
|
|
|
|
// show empty serialized result when no records are present
|
|
|
|
if(!$obj) $obj = new DataObjectSet();
|
2008-08-09 04:16:46 +02:00
|
|
|
}
|
2008-08-09 08:40:50 +02:00
|
|
|
|
2008-08-09 09:03:24 +02:00
|
|
|
$this->getResponse()->addHeader('Content-Type', $responseFormatter->getOutputContentType());
|
|
|
|
|
|
|
|
if($obj instanceof DataObjectSet) return $responseFormatter->convertDataObjectSet($obj);
|
|
|
|
else return $responseFormatter->convertDataObject($obj);
|
2008-03-31 01:18:04 +02:00
|
|
|
}
|
2008-08-09 07:57:44 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Uses the default {@link SearchContext} specified through
|
|
|
|
* {@link DataObject::getDefaultSearchContext()} to augument
|
|
|
|
* an existing query object (mostly a component query from {@link DataObject})
|
|
|
|
* with search clauses.
|
|
|
|
*
|
|
|
|
* @todo Allow specifying of different searchcontext getters on model-by-model basis
|
|
|
|
*
|
|
|
|
* @param string $className
|
|
|
|
* @param array $params
|
|
|
|
* @return DataObjectSet
|
|
|
|
*/
|
|
|
|
protected function search($className, $params = null, $sort = null, $limit = null, $existingQuery = null) {
|
2008-08-09 08:18:32 +02:00
|
|
|
if(singleton($className)->hasMethod('getRestfulSearchContext')) {
|
|
|
|
$searchContext = singleton($className)->{'getRestfulSearchContext'}();
|
|
|
|
} else {
|
|
|
|
$searchContext = singleton($className)->getDefaultSearchContext();
|
|
|
|
}
|
2008-08-09 07:57:44 +02:00
|
|
|
$query = $searchContext->getQuery($params, $sort, $limit, $existingQuery);
|
2008-08-09 08:18:32 +02:00
|
|
|
|
2008-08-09 07:57:44 +02:00
|
|
|
return singleton($className)->buildDataObjectSet($query->execute());
|
|
|
|
}
|
2008-03-31 10:49:27 +02:00
|
|
|
|
2008-08-09 09:03:24 +02:00
|
|
|
/**
|
|
|
|
* Returns a dataformatter instance based on the request
|
|
|
|
* extension or mimetype. Falls back to {@link self::$default_extension}.
|
|
|
|
*
|
|
|
|
* @param boolean $includeAcceptHeader Determines wether to inspect and prioritize any HTTP Accept headers
|
|
|
|
* @return DataFormatter
|
|
|
|
*/
|
|
|
|
protected function getDataFormatter($includeAcceptHeader = false) {
|
2008-08-09 08:53:26 +02:00
|
|
|
$extension = $this->request->getExtension();
|
2008-08-09 09:03:24 +02:00
|
|
|
$contentType = $this->request->getHeader('Content-Type');
|
|
|
|
$accept = $this->request->getHeader('Accept');
|
|
|
|
|
|
|
|
// get formatter
|
|
|
|
if(!empty($extension)) {
|
|
|
|
$formatter = DataFormatter::for_extension($extension);
|
|
|
|
}elseif($includeAcceptHeader && !empty($accept) && $accept != '*/*') {
|
|
|
|
$formatter = DataFormatter::for_mimetypes(explode(',',$accept));
|
|
|
|
} elseif(!empty($contentType)) {
|
|
|
|
$formatter = DataFormatter::for_mimetype($contentType);
|
|
|
|
} else {
|
|
|
|
$formatter = DataFormatter::for_extension(self::$default_extension);
|
|
|
|
}
|
2008-08-09 08:53:26 +02:00
|
|
|
|
2008-08-09 09:03:24 +02:00
|
|
|
// set custom fields
|
2008-08-11 00:49:59 +02:00
|
|
|
if($customAddFields = $this->request->getVar('add_fields')) $formatter->setCustomAddFields(explode(',',$customAddFields));
|
2008-08-09 08:53:26 +02:00
|
|
|
if($customFields = $this->request->getVar('fields')) $formatter->setCustomFields(explode(',',$customFields));
|
2008-08-09 09:03:24 +02:00
|
|
|
|
|
|
|
// set relation depth
|
2008-08-09 08:53:26 +02:00
|
|
|
$relationDepth = $this->request->getVar('relationdepth');
|
|
|
|
if(is_numeric($relationDepth)) $formatter->relationDepth = (int)$relationDepth;
|
|
|
|
|
|
|
|
return $formatter;
|
|
|
|
}
|
|
|
|
|
2008-08-09 09:03:24 +02:00
|
|
|
protected function getRequestDataFormatter() {
|
|
|
|
return $this->getDataFormatter(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function getResponseDataFormatter() {
|
|
|
|
return $this->getDataFormatter(true);
|
|
|
|
}
|
|
|
|
|
2008-03-31 01:18:04 +02:00
|
|
|
/**
|
|
|
|
* Handler for object delete
|
|
|
|
*/
|
|
|
|
protected function deleteHandler($className, $id) {
|
2008-08-09 09:03:24 +02:00
|
|
|
$obj = DataObject::get_by_id($className, $id);
|
|
|
|
if(!$obj) return $this->notFound();
|
|
|
|
if(!$obj->canDelete()) return $this->permissionFailure();
|
|
|
|
|
|
|
|
$obj->delete();
|
|
|
|
|
|
|
|
$this->getResponse()->setStatusCode(204); // No Content
|
|
|
|
return true;
|
2008-03-31 01:18:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handler for object write
|
|
|
|
*/
|
|
|
|
protected function putHandler($className, $id) {
|
2008-08-09 09:03:24 +02:00
|
|
|
$obj = DataObject::get_by_id($className, $id);
|
|
|
|
if(!$obj) return $this->notFound();
|
|
|
|
if(!$obj->canEdit()) return $this->permissionFailure();
|
|
|
|
|
|
|
|
$reqFormatter = $this->getRequestDataFormatter();
|
|
|
|
if(!$reqFormatter) return $this->unsupportedMediaType();
|
|
|
|
|
|
|
|
$responseFormatter = $this->getResponseDataFormatter();
|
|
|
|
if(!$responseFormatter) return $this->unsupportedMediaType();
|
|
|
|
|
|
|
|
$obj = $this->updateDataObject($obj, $reqFormatter);
|
|
|
|
|
|
|
|
$this->getResponse()->setStatusCode(200); // Success
|
|
|
|
$this->getResponse()->addHeader('Content-Type', $responseFormatter->getOutputContentType());
|
|
|
|
$objHref = Director::absoluteURL(self::$api_base . "$obj->class/$obj->ID");
|
|
|
|
$this->getResponse()->addHeader('Location', $objHref);
|
|
|
|
|
|
|
|
return $responseFormatter->convertDataObject($obj);
|
2008-03-31 01:18:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2008-08-09 09:03:24 +02:00
|
|
|
* Handler for object append / method call.
|
|
|
|
*
|
|
|
|
* @todo Posting to an existing URL (without a relation)
|
|
|
|
* current resolves in creatig a new element,
|
|
|
|
* rather than a "Conflict" message.
|
2008-03-31 01:18:04 +02:00
|
|
|
*/
|
|
|
|
protected function postHandler($className, $id) {
|
2008-08-09 09:03:24 +02:00
|
|
|
if(!singleton($className)->canCreate()) return $this->permissionFailure();
|
|
|
|
$obj = new $className();
|
|
|
|
|
|
|
|
$reqFormatter = $this->getRequestDataFormatter();
|
|
|
|
if(!$reqFormatter) return $this->unsupportedMediaType();
|
|
|
|
|
|
|
|
$responseFormatter = $this->getResponseDataFormatter();
|
|
|
|
|
|
|
|
$obj = $this->updateDataObject($obj, $reqFormatter);
|
|
|
|
|
|
|
|
$this->getResponse()->setStatusCode(201); // Created
|
|
|
|
$this->getResponse()->addHeader('Content-Type', $responseFormatter->getOutputContentType());
|
|
|
|
$objHref = Director::absoluteURL(self::$api_base . "$obj->class/$obj->ID");
|
|
|
|
$this->getResponse()->addHeader('Location', $objHref);
|
|
|
|
|
|
|
|
return $responseFormatter->convertDataObject($obj);
|
|
|
|
|
2008-03-31 01:18:04 +02:00
|
|
|
}
|
2008-08-09 09:03:24 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Converts either the given HTTP Body into an array
|
|
|
|
* (based on the DataFormatter instance), or returns
|
|
|
|
* the POST variables.
|
|
|
|
* Automatically filters out certain critical fields
|
|
|
|
* that shouldn't be set by the client (e.g. ID).
|
|
|
|
*
|
|
|
|
* @param DataObject $obj
|
|
|
|
* @param DataFormatter $formatter
|
|
|
|
* @return DataObject The passed object
|
|
|
|
*/
|
|
|
|
protected function updateDataObject($obj, $formatter) {
|
|
|
|
// if neither an http body nor POST data is present, return error
|
|
|
|
$body = $this->request->getBody();
|
|
|
|
if(!$body && !$this->request->postVars()) {
|
|
|
|
$this->getResponse()->setStatusCode(204); // No Content
|
|
|
|
return 'No Content';
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!empty($body)) {
|
|
|
|
$data = $formatter->convertStringToArray($body);
|
|
|
|
} else {
|
|
|
|
// assume application/x-www-form-urlencoded which is automatically parsed by PHP
|
|
|
|
$data = $this->request->postVars();
|
|
|
|
}
|
|
|
|
|
|
|
|
// @todo Disallow editing of certain keys in database
|
|
|
|
$data = array_diff_key($data, array('ID','Created'));
|
|
|
|
|
|
|
|
$obj->update($data);
|
|
|
|
$obj->write();
|
|
|
|
|
|
|
|
return $obj;
|
|
|
|
}
|
|
|
|
|
2008-03-31 01:18:04 +02:00
|
|
|
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 09:03:24 +02:00
|
|
|
protected function methodNotAllowed() {
|
|
|
|
$this->getResponse()->setStatusCode(405);
|
|
|
|
return "Method Not Allowed";
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function unsupportedMediaType() {
|
|
|
|
$this->response->setStatusCode(415); // Unsupported Media Type
|
|
|
|
return "Unsupported Media Type";
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function authenticate() {
|
|
|
|
if(!isset($_SERVER['PHP_AUTH_USER']) || !isset($_SERVER['PHP_AUTH_PW'])) return false;
|
|
|
|
|
|
|
|
if($member = Member::currentMember()) return $member;
|
|
|
|
$member = MemberAuthenticator::authenticate(array(
|
|
|
|
'Email' => $_SERVER['PHP_AUTH_USER'],
|
|
|
|
'Password' => $_SERVER['PHP_AUTH_PW'],
|
|
|
|
), null);
|
|
|
|
|
|
|
|
if($member) {
|
|
|
|
$member->LogIn(false);
|
|
|
|
return $member;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|