2012-08-20 18:33:25 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
class Services_Rest_Content
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* Implementation for 'GET' method for Rest API
|
|
|
|
|
*
|
|
|
|
|
* @param mixed $conCategory, $conParent, $conId, $conLang Primary key
|
|
|
|
|
*
|
|
|
|
|
* @return array $result Returns array within multiple records or a single record depending if
|
|
|
|
|
* a single selection was requested passing id(s) as param
|
|
|
|
|
*/
|
|
|
|
|
protected function get($conCategory=null, $conParent=null, $conId=null, $conLang=null)
|
|
|
|
|
{
|
|
|
|
|
$result = array();
|
|
|
|
|
try {
|
2012-09-24 15:09:48 -04:00
|
|
|
$noArguments = true;
|
|
|
|
|
$argumentList = func_get_args();
|
|
|
|
|
foreach ($argumentList as $arg) {
|
|
|
|
|
if (!is_null($arg)) {
|
|
|
|
|
$noArguments = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ($noArguments) {
|
2012-08-20 18:33:25 -04:00
|
|
|
$criteria = new Criteria('workflow');
|
|
|
|
|
|
|
|
|
|
$criteria->addSelectColumn(ContentPeer::CON_CATEGORY);
|
|
|
|
|
$criteria->addSelectColumn(ContentPeer::CON_PARENT);
|
|
|
|
|
$criteria->addSelectColumn(ContentPeer::CON_ID);
|
|
|
|
|
$criteria->addSelectColumn(ContentPeer::CON_LANG);
|
|
|
|
|
$criteria->addSelectColumn(ContentPeer::CON_VALUE);
|
|
|
|
|
|
|
|
|
|
$dataset = AppEventPeer::doSelectRS($criteria);
|
|
|
|
|
$dataset->setFetchmode(ResultSet::FETCHMODE_ASSOC);
|
|
|
|
|
|
|
|
|
|
while ($dataset->next()) {
|
|
|
|
|
$result[] = $dataset->getRow();
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
$record = ContentPeer::retrieveByPK($conCategory, $conParent, $conId, $conLang);
|
2012-09-24 15:09:48 -04:00
|
|
|
if ($record) {
|
|
|
|
|
$result = $record->toArray(BasePeer::TYPE_FIELDNAME);
|
|
|
|
|
} else {
|
|
|
|
|
$paramValues = "";
|
|
|
|
|
foreach ($argumentList as $arg) {
|
|
|
|
|
$paramValues .= (strlen($paramValues) ) ? ', ' : '';
|
|
|
|
|
if (!is_null($arg)) {
|
|
|
|
|
$paramValues .= "$arg";
|
|
|
|
|
} else {
|
|
|
|
|
$paramValues .= "NULL";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
throw new RestException(417, "table Content ($paramValues)" );
|
|
|
|
|
}
|
2012-08-20 18:33:25 -04:00
|
|
|
}
|
2012-09-24 15:09:48 -04:00
|
|
|
} catch (RestException $e) {
|
|
|
|
|
throw new RestException($e->getCode(), $e->getMessage());
|
2012-08-20 18:33:25 -04:00
|
|
|
} catch (Exception $e) {
|
|
|
|
|
throw new RestException(412, $e->getMessage());
|
|
|
|
|
}
|
2012-09-24 15:09:48 -04:00
|
|
|
|
2012-08-20 18:33:25 -04:00
|
|
|
return $result;
|
|
|
|
|
}
|
|
|
|
|
|
2012-10-08 17:03:18 -04:00
|
|
|
/**
|
|
|
|
|
* Implementation for 'POST' method for Rest API
|
|
|
|
|
*
|
|
|
|
|
* @param mixed $conCategory, $conParent, $conId, $conLang Primary key
|
|
|
|
|
*
|
|
|
|
|
* @return array $result Returns array within multiple records or a single record depending if
|
|
|
|
|
* a single selection was requested passing id(s) as param
|
|
|
|
|
*/
|
|
|
|
|
protected function post($conCategory, $conParent, $conId, $conLang, $conValue)
|
|
|
|
|
{
|
|
|
|
|
try {
|
|
|
|
|
$result = array();
|
|
|
|
|
$obj = new Content();
|
|
|
|
|
|
|
|
|
|
$obj->setConCategory($conCategory);
|
|
|
|
|
$obj->setConParent($conParent);
|
|
|
|
|
$obj->setConId($conId);
|
|
|
|
|
$obj->setConLang($conLang);
|
|
|
|
|
$obj->setConValue($conValue);
|
|
|
|
|
|
|
|
|
|
$obj->save();
|
|
|
|
|
} catch (Exception $e) {
|
|
|
|
|
throw new RestException(412, $e->getMessage());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Implementation for 'PUT' method for Rest API
|
|
|
|
|
*
|
|
|
|
|
* @param mixed $conCategory, $conParent, $conId, $conLang Primary key
|
|
|
|
|
*
|
|
|
|
|
* @return array $result Returns array within multiple records or a single record depending if
|
|
|
|
|
* a single selection was requested passing id(s) as param
|
|
|
|
|
*/
|
|
|
|
|
protected function put($conCategory, $conParent, $conId, $conLang, $conValue)
|
|
|
|
|
{
|
|
|
|
|
try {
|
|
|
|
|
$obj = ContentPeer::retrieveByPK($conCategory, $conParent, $conId, $conLang);
|
|
|
|
|
|
|
|
|
|
$obj->setConValue($conValue);
|
|
|
|
|
|
|
|
|
|
$obj->save();
|
|
|
|
|
} catch (Exception $e) {
|
|
|
|
|
throw new RestException(412, $e->getMessage());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Implementation for 'DELETE' method for Rest API
|
|
|
|
|
*
|
|
|
|
|
* @param mixed $conCategory, $conParent, $conId, $conLang Primary key
|
|
|
|
|
*
|
|
|
|
|
* @return array $result Returns array within multiple records or a single record depending if
|
|
|
|
|
* a single selection was requested passing id(s) as param
|
|
|
|
|
*/
|
|
|
|
|
protected function delete($conCategory, $conParent, $conId, $conLang)
|
|
|
|
|
{
|
|
|
|
|
$conn = Propel::getConnection(ContentPeer::DATABASE_NAME);
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
$conn->begin();
|
|
|
|
|
|
|
|
|
|
$obj = ContentPeer::retrieveByPK($conCategory, $conParent, $conId, $conLang);
|
|
|
|
|
if (! is_object($obj)) {
|
|
|
|
|
throw new RestException(412, 'Record does not exist.');
|
|
|
|
|
}
|
|
|
|
|
$obj->delete();
|
|
|
|
|
|
|
|
|
|
$conn->commit();
|
|
|
|
|
} catch (Exception $e) {
|
|
|
|
|
$conn->rollback();
|
|
|
|
|
throw new RestException(412, $e->getMessage());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-20 18:33:25 -04:00
|
|
|
|
|
|
|
|
}
|