EscolaController.php
3.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<?php
#error_reporting(E_ALL);
#ini_set("display_errors", 1);
/**
* i-Educar - Sistema de gestão escolar
*
* Copyright (C) 2006 Prefeitura Municipal de Itajaí
* <ctima@itajai.sc.gov.br>
*
* Este programa é software livre; você pode redistribuí-lo e/ou modificá-lo
* sob os termos da Licença Pública Geral GNU conforme publicada pela Free
* Software Foundation; tanto a versão 2 da Licença, como (a seu critério)
* qualquer versão posterior.
*
* Este programa é distribuído na expectativa de que seja útil, porém, SEM
* NENHUMA GARANTIA; nem mesmo a garantia implícita de COMERCIABILIDADE OU
* ADEQUAÇÃO A UMA FINALIDADE ESPECÍFICA. Consulte a Licença Pública Geral
* do GNU para mais detalhes.
*
* Você deve ter recebido uma cópia da Licença Pública Geral do GNU junto
* com este programa; se não, escreva para a Free Software Foundation, Inc., no
* endereço 59 Temple Street, Suite 330, Boston, MA 02111-1307 USA.
*
* @author Lucas D'Avila <lucasdavila@portabilis.com.br>
* @category i-Educar
* @license @@license@@
* @package Api
* @subpackage Modules
* @since Arquivo disponível desde a versão ?
* @version $Id$
*/
require_once 'lib/Portabilis/Controller/ApiCoreController.php';
class EscolaController extends ApiCoreController
{
protected $_processoAp = 561;
protected $_nivelAcessoOption = App_Model_NivelAcesso::SOMENTE_ESCOLA;
protected function canChange() {
return true;
}
protected function loadEscolaInepId($escolaId) {
$dataMapper = $this->getDataMapperFor('educacenso', 'escola');
$entity = $this->tryGetEntityOf($dataMapper, $escolaId);
return (is_null($entity) ? null : $entity->get('escolaInep'));
}
protected function createUpdateOrDestroyEducacensoEscola($escolaId) {
$dataMapper = $this->getDataMapperFor('educacenso', 'escola');
if (empty($this->getRequest()->escola_inep_id))
$result = $this->deleteEntityOf($dataMapper, $escolaId);
else {
$data = array(
'escola' => $escolaId,
'escolaInep' => $this->getRequest()->escola_inep_id,
// campos deprecados?
'fonte' => 'fonte',
'nomeInep' => '-',
// always setting now...
'created_at' => 'NOW()',
);
$entity = $this->getOrCreateEntityOf($dataMapper, $escolaId);
$entity->setOptions($data);
$result = $this->saveEntity($dataMapper, $entity);
}
return $result;
}
protected function get() {
if ($this->canGet()) {
$id = $this->getRequest()->id;
$escola = array();
$escola['escola_inep_id'] = $this->loadEscolaInepId($id);
return $escola;
}
}
protected function put() {
$id = $this->getRequest()->id;
if ($this->canPut()) {
$this->createUpdateOrDestroyEducacensoEscola($id);
$this->messenger->append('Cadastro alterado com sucesso', 'success', false, 'error');
}
else
$this->messenger->append('Aparentemente o cadastro não pode ser alterado, por favor, verifique.',
'error', false, 'error');
return array('id' => $id);
}
public function Gerar() {
if ($this->isRequestFor('get', 'escola'))
$this->appendResponse($this->get());
elseif ($this->isRequestFor('put', 'escola'))
$this->appendResponse($this->put());
else
$this->notImplementedOperationError();
}
}