2015-06-11 10:58:58 +08:00
|
|
|
<?php
|
|
|
|
App::uses('AppController', 'Controller');
|
|
|
|
/**
|
|
|
|
* States Controller
|
|
|
|
*
|
|
|
|
* @property State $State
|
|
|
|
* @property PaginatorComponent $Paginator
|
|
|
|
*/
|
|
|
|
|
|
|
|
class StatesController extends AppController {
|
|
|
|
|
|
|
|
public $components = array('RequestHandler');
|
|
|
|
|
2016-03-12 21:07:25 +08:00
|
|
|
public function beforeFilter() {
|
2018-08-08 21:59:46 +08:00
|
|
|
parent::beforeFilter();
|
|
|
|
global $user;
|
|
|
|
$canView = (!$user) || ($user['System'] != 'None');
|
|
|
|
if ( !$canView ) {
|
|
|
|
throw new UnauthorizedException(__('Insufficient Privileges'));
|
|
|
|
return;
|
|
|
|
}
|
2016-03-12 21:07:25 +08:00
|
|
|
}
|
|
|
|
|
2015-06-11 10:58:58 +08:00
|
|
|
/**
|
|
|
|
* index method
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2018-08-08 21:59:46 +08:00
|
|
|
public function index() {
|
|
|
|
$this->State->recursive = 0;
|
|
|
|
$states = $this->State->find('all');
|
|
|
|
$this->set(array(
|
|
|
|
'states' => $states,
|
|
|
|
'_serialize' => array('states')
|
|
|
|
));
|
|
|
|
}
|
2015-06-11 10:58:58 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* view method
|
|
|
|
*
|
|
|
|
* @throws NotFoundException
|
|
|
|
* @param string $id
|
|
|
|
* @return void
|
|
|
|
*/
|
2018-08-08 21:59:46 +08:00
|
|
|
public function view($id = null) {
|
|
|
|
if ( !$this->State->exists($id) ) {
|
|
|
|
throw new NotFoundException(__('Invalid state'));
|
|
|
|
}
|
|
|
|
$options = array('conditions' => array('State.' . $this->State->primaryKey => $id));
|
|
|
|
$this->set('state', $this->State->find('first', $options));
|
|
|
|
}
|
2015-06-11 10:58:58 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* add method
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2018-08-08 21:59:46 +08:00
|
|
|
public function add() {
|
|
|
|
|
|
|
|
if ($this->request->is('post')) {
|
|
|
|
|
|
|
|
if ($this->Session->Read('systemPermission') != 'Edit')
|
|
|
|
{
|
|
|
|
throw new UnauthorizedException(__('Insufficient privileges'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->State->create();
|
|
|
|
if ($this->State->save($this->request->data)) {
|
|
|
|
return $this->flash(__('The state has been saved.'), array('action' => 'index'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-06-11 10:58:58 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* edit method
|
|
|
|
*
|
|
|
|
* @throws NotFoundException
|
|
|
|
* @param string $id
|
|
|
|
* @return void
|
|
|
|
*/
|
2018-08-08 21:59:46 +08:00
|
|
|
public function edit($id = null) {
|
|
|
|
if (!$this->State->exists($id)) {
|
|
|
|
throw new NotFoundException(__('Invalid state'));
|
|
|
|
}
|
|
|
|
|
|
|
|
global $user;
|
|
|
|
$canEdit = (!$user) || ($user['System'] == 'Edit');
|
|
|
|
if ( !$canEdit ) {
|
|
|
|
throw new UnauthorizedException(__('Insufficient privileges'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( $this->request->is(array('post', 'put')) ) {
|
|
|
|
if ( $this->State->save($this->request->data) ) {
|
|
|
|
return $this->flash(__('The state has been saved.'), array('action' => 'index'));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$options = array('conditions' => array('State.' . $this->State->primaryKey => $id));
|
|
|
|
$this->request->data = $this->State->find('first', $options);
|
|
|
|
}
|
|
|
|
}
|
2015-06-11 10:58:58 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* delete method
|
|
|
|
*
|
|
|
|
* @throws NotFoundException
|
|
|
|
* @param string $id
|
|
|
|
* @return void
|
|
|
|
*/
|
2018-08-08 21:59:46 +08:00
|
|
|
public function delete($id = null) {
|
|
|
|
$this->State->id = $id;
|
|
|
|
global $user;
|
|
|
|
$canEdit = (!$user) || ($user['System'] == 'Edit');
|
|
|
|
if ( !$canEdit ) {
|
|
|
|
throw new UnauthorizedException(__('Insufficient privileges'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$this->State->exists()) {
|
|
|
|
throw new NotFoundException(__('Invalid state'));
|
|
|
|
}
|
|
|
|
$this->request->allowMethod('post', 'delete');
|
|
|
|
if ($this->State->delete()) {
|
|
|
|
return $this->flash(__('The state has been deleted.'), array('action' => 'index'));
|
|
|
|
} else {
|
|
|
|
return $this->flash(__('The state could not be deleted. Please, try again.'), array('action' => 'index'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function change() {
|
|
|
|
global $user;
|
|
|
|
$canEdit = (!$user) || ($user['System'] == 'Edit');
|
|
|
|
if ( !$canEdit ) {
|
|
|
|
throw new UnauthorizedException(__('Insufficient privileges'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$newState = $this->request->params['pass'][0];
|
|
|
|
$blah = $this->packageControl($newState);
|
|
|
|
|
|
|
|
$this->set(array(
|
|
|
|
'blah' => $blah,
|
|
|
|
'_serialize' => array('blah')
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function packageControl( $command ) {
|
|
|
|
$zm_path_bin = Configure::read('ZM_PATH_BIN');
|
|
|
|
$string = $zm_path_bin.'/zmpkg.pl '.escapeshellarg( $command );
|
|
|
|
$status = exec( $string );
|
|
|
|
|
|
|
|
return $status;
|
|
|
|
}
|
2015-06-11 10:58:58 +08:00
|
|
|
|
|
|
|
|
|
|
|
}
|