API: Return Filesystem path to event within json payload

This commit is contained in:
Kyle Johnson 2015-01-27 11:12:32 -05:00
parent c486cd0741
commit 7565edfc69
1 changed files with 12 additions and 1 deletions

View File

@ -62,12 +62,23 @@ class EventsController extends AppController {
* @return void
*/
public function view($id = null) {
$this->Event->recursive = -1;
$this->loadModel('Config');
$configs = $this->Config->find('list', array(
'fields' => array('Name', 'Value'),
'conditions' => array('Name' => array('ZM_DIR_EVENTS'))
));
$this->Event->recursive = 1;
if (!$this->Event->exists($id)) {
throw new NotFoundException(__('Invalid event'));
}
$options = array('conditions' => array('Event.' . $this->Event->primaryKey => $id));
$event = $this->Event->find('first', $options);
$path = $configs['ZM_DIR_EVENTS'].'/'.$this->Image->getEventPath($event).'/';
$event['Event']['BasePath'] = $path;
$this->set(array(
'event' => $event,
'_serialize' => array('event')