Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 15458 | Rev 16768 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 www 1
<?php
2
declare(strict_types=1);
3
 
4
namespace LeadersLinked\Controller;
5
 
6
 
7
use Laminas\Db\Adapter\AdapterInterface;
16766 efrain 8
use LeadersLinked\Cache\CacheInterface;
1 www 9
 
10
use Laminas\Mvc\Controller\AbstractActionController;
11
use Laminas\Log\LoggerInterface;
12
 
13
use Laminas\View\Model\ViewModel;
14
use Laminas\View\Model\JsonModel;
15
use LeadersLinked\Library\Functions;
16
use LeadersLinked\Mapper\PageMapper;
17
use LeadersLinked\Form\PageForm;
18
use LeadersLinked\Model\Page;
19
use LeadersLinked\Hydrator\ObjectPropertyHydrator;
20
 
21
class PageController extends AbstractActionController
22
{
23
    /**
24
     *
25
     * @var AdapterInterface
26
     */
27
    private $adapter;
28
 
29
 
30
    /**
31
     *
16766 efrain 32
     * @var CacheInterface
1 www 33
     */
34
    private $cache;
35
 
36
    /**
37
     *
38
     * @var  LoggerInterface
39
     */
40
    private $logger;
41
 
42
    /**
43
     *
44
     * @var array
45
     */
46
    private $config;
47
 
48
 
49
 
50
 
51
    /**
52
     *
53
     * @param AdapterInterface $adapter
16766 efrain 54
     *@param CacheInterface $cache
1 www 55
     * @param LoggerInterface $logger
56
     * @param array $config
57
     */
58
    public function __construct($adapter, $cache , $logger, $config)
59
    {
60
        $this->adapter      = $adapter;
61
        $this->cache        = $cache;
62
        $this->logger       = $logger;
63
        $this->config       = $config;
64
 
65
    }
66
 
67
    public function indexAction()
68
    {
15348 efrain 69
        $currentUserPlugin = $this->plugin('currentUserPlugin');
70
        $currentUser = $currentUserPlugin->getUser();
1 www 71
 
72
        $request = $this->getRequest();
73
        if($request->isGet()) {
74
 
75
 
76
            $headers  = $request->getHeaders();
77
 
78
            $isJson = false;
79
            if($headers->has('Accept')) {
80
                $accept = $headers->get('Accept');
81
 
82
                $prioritized = $accept->getPrioritized();
83
 
84
                foreach($prioritized as $key => $value) {
85
                    $raw = trim($value->getRaw());
86
 
87
                    if(!$isJson) {
88
                        $isJson = strpos($raw, 'json');
89
                    }
90
 
91
                }
92
            }
93
 
15458 efrain 94
 
1 www 95
            if($isJson) {
96
                $search = $this->params()->fromQuery('search', []);
16766 efrain 97
                $search = empty($search['value']) ? '' :  Functions::sanitizeFilterString($search['value']);
1 www 98
 
99
                $page               = intval($this->params()->fromQuery('start', 1), 10);
100
                $records_x_page     = intval($this->params()->fromQuery('length', 10), 10);
101
                $order =  $this->params()->fromQuery('order', []);
102
                $order_field        = empty($order[0]['column']) ? 99 :  intval($order[0]['column'], 10);
16766 efrain 103
                $order_direction    = empty($order[0]['dir']) ? 'ASC' : strtoupper(Functions::sanitizeFilterString($order[0]['dir']));
1 www 104
 
105
                $fields =  ['title'];
106
                $order_field = isset($fields[$order_field]) ? $fields[$order_field] : 'title';
107
 
108
                if(!in_array($order_direction, ['ASC', 'DESC'])) {
109
                    $order_direction = 'ASC';
110
                }
111
 
112
                $pageMapper = PageMapper::getInstance($this->adapter);
113
 
114
 
15348 efrain 115
                $paginator = $pageMapper->fetchAllDataTable($search, $currentUser->network_id, $page, $records_x_page, $order_field, $order_direction);
1 www 116
 
117
                $items = [];
118
                $records = $paginator->getCurrentItems();
119
                foreach($records as $record)
120
                {
15458 efrain 121
 
1 www 122
                    $item = [
15458 efrain 123
                        'code' => $record->code,
1 www 124
                        'title' => $record->title,
125
                        'status' => $record->status,
126
                        'actions' => [
15458 efrain 127
                            'link_edit' => $this->url()->fromRoute('publications/pages/edit', ['id' => $record->code ]),
128
                            'link_delete' => $record->fixed == Page::NO ? $this->url()->fromRoute('publications/pages/delete', ['id' => $record->code ]) : '',
1 www 129
                        ]
130
                    ];
131
 
132
                    array_push($items, $item);
133
                }
134
 
135
                return new JsonModel([
136
                    'success' => true,
137
                    'data' => [
138
                        'items' => $items,
139
                        'total' => $paginator->getTotalItemCount(),
140
                    ]
141
                ]);
142
 
143
 
144
            } else  {
145
                $form = new PageForm();
146
 
147
                $this->layout()->setTemplate('layout/layout-backend');
148
                $viewModel = new ViewModel();
149
                $viewModel->setTemplate('leaders-linked/pages/index.phtml');
150
                $viewModel->setVariable('form', $form);
151
                return $viewModel ;
152
            }
153
        } else {
154
            return new JsonModel([
155
                'success' => false,
156
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
157
            ]);;
158
        }
159
    }
160
 
161
    public function addAction()
162
    {
163
        $currentUserPlugin = $this->plugin('currentUserPlugin');
164
        $currentUser = $currentUserPlugin->getUser();
165
 
15458 efrain 166
        $currentNetworkPlugin = $this->plugin('currentNetworkPlugin');
167
        $currentNetwork = $currentNetworkPlugin->getNetwork();
168
 
1 www 169
        $request = $this->getRequest();
170
 
171
        if($request->isPost()) {
172
            $form = new  PageForm();
173
            $dataPost = $request->getPost()->toArray();
174
            $dataPost['status'] =  isset($dataPost['status']) ? $dataPost['status'] : Page::STATUS_INACTIVE;
175
 
176
            $form->setData($dataPost);
177
 
178
            if($form->isValid()) {
179
                $dataPost = (array) $form->getData();
180
 
181
                $hydrator = new ObjectPropertyHydrator();
182
                $page = new Page();
15458 efrain 183
                $page->network_id = $currentNetwork->id;
184
                $page->fixed = Page::NO;
185
 
1 www 186
                $hydrator->hydrate($dataPost, $page);
187
 
188
 
189
 
190
                $pageMapper = PageMapper::getInstance($this->adapter);
191
                $result = $pageMapper->insert($page);
192
 
193
                if($result) {
194
                    $this->logger->info('Se agrego la página ' . $page->id, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
195
 
196
                    $data = [
197
                        'success'   => true,
198
                        'data'   => 'LABEL_RECORD_ADDED'
199
                    ];
200
                } else {
201
                    $data = [
202
                        'success'   => false,
203
                        'data'      => $pageMapper->getError()
204
                    ];
205
 
206
                }
207
 
208
                return new JsonModel($data);
209
 
210
            } else {
211
                $messages = [];
212
                $form_messages = (array) $form->getMessages();
213
                foreach($form_messages  as $fieldname => $field_messages)
214
                {
215
 
216
                    $messages[$fieldname] = array_values($field_messages);
217
                }
218
 
219
                return new JsonModel([
220
                    'success'   => false,
221
                    'data'   => $messages
222
                ]);
223
            }
224
 
225
        } else {
226
            $data = [
227
                'success' => false,
228
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
229
            ];
230
 
231
            return new JsonModel($data);
232
        }
233
 
234
        return new JsonModel($data);
235
    }
236
 
237
    public function editAction()
238
    {
239
        $currentUserPlugin = $this->plugin('currentUserPlugin');
240
        $currentUser = $currentUserPlugin->getUser();
241
 
242
        $request = $this->getRequest();
243
 
244
        $id = $this->params()->fromRoute('id');
245
        if(!$id) {
246
            $data = [
247
                'success'   => false,
248
                'data'   => 'ERROR_INVALID_PARAMETER'
249
            ];
250
 
251
            return new JsonModel($data);
252
        }
253
 
254
        $pageMapper = PageMapper::getInstance($this->adapter);
15348 efrain 255
        $page = $pageMapper->fetchOneByCodeAndNetworkId($id, $currentUser->network_id);
1 www 256
        if(!$page) {
257
            $data = [
258
                'success'   => false,
259
                'data'   => 'ERROR_RECORD_NOT_FOUND'
260
            ];
261
 
262
            return new JsonModel($data);
263
        }
264
 
265
        if($request->isPost()) {
266
            $form = new  PageForm();
267
            $dataPost = $request->getPost()->toArray();
268
            $dataPost['status'] =  isset($dataPost['status']) ? $dataPost['status'] : Page::STATUS_INACTIVE;
269
 
270
            $form->setData($dataPost);
271
 
272
            if($form->isValid()) {
273
                $dataPost = (array) $form->getData();
274
 
15458 efrain 275
 
1 www 276
 
277
                $hydrator = new ObjectPropertyHydrator();
278
                $hydrator->hydrate($dataPost, $page);
279
 
280
                $result = $pageMapper->update($page);
281
 
282
                if($result) {
283
                    $this->logger->info('Se actualizo la página ' . $page->id, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
284
 
285
                    $data = [
286
                        'success' => true,
287
                        'data' => 'LABEL_RECORD_UPDATED'
288
                    ];
289
                } else {
290
                    $data = [
291
                        'success'   => false,
292
                        'data'      => $pageMapper->getError()
293
                    ];
294
                }
295
 
296
                return new JsonModel($data);
297
 
298
            } else {
299
                $messages = [];
300
                $form_messages = (array) $form->getMessages();
301
                foreach($form_messages  as $fieldname => $field_messages)
302
                {
303
                    $messages[$fieldname] = array_values($field_messages);
304
                }
305
 
306
                return new JsonModel([
307
                    'success'   => false,
308
                    'data'   => $messages
309
                ]);
310
            }
311
        } else if ($request->isGet()) {
312
 
313
            $data = [
314
                'success' => true,
15458 efrain 315
                'data' => [
316
                    'code' => $page->code,
317
                    'title' => $page->title,
318
                    'content' => $page->content,
319
                    'status' => $page->status,
320
                    'url' => $page->url,
321
                    'type' => $page->type,
322
                ]
1 www 323
            ];
324
 
325
            return new JsonModel($data);
326
        } else {
327
            $data = [
328
                'success' => false,
329
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
330
            ];
331
 
332
            return new JsonModel($data);
333
        }
334
 
335
        return new JsonModel($data);
336
    }
337
 
338
    public function deleteAction()
339
    {
340
        $currentUserPlugin = $this->plugin('currentUserPlugin');
341
        $currentUser = $currentUserPlugin->getUser();
342
 
343
        $request = $this->getRequest();
344
 
345
        $id = $this->params()->fromRoute('id');
346
 
347
        if(!$id) {
348
            $data = [
349
                'success'   => false,
350
                'data'   => 'ERROR_INVALID_PARAMETER'
351
            ];
352
 
353
            return new JsonModel($data);
354
        }
355
 
356
        $pageMapper = PageMapper::getInstance($this->adapter);
15348 efrain 357
        $page = $pageMapper->fetchOneByCodeAndNetworkId($id, $currentUser->network_id);
1 www 358
        if(!$page) {
359
            $data = [
360
                'success'   => false,
361
                'data'   => 'ERROR_RECORD_NOT_FOUND'
362
            ];
363
 
364
            return new JsonModel($data);
365
        }
366
 
367
        if($request->isPost()) {
368
            $result = $pageMapper->delete($page);
369
            if($result) {
370
                $this->logger->info('Se borro la página ' . $page->id, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
371
 
372
                $data = [
373
                    'success' => true,
374
                    'data' => 'LABEL_RECORD_DELETED'
375
                ];
376
            } else {
377
 
378
                $data = [
379
                    'success'   => false,
380
                    'data'      => $pageMapper->getError()
381
                ];
382
 
383
                return new JsonModel($data);
384
            }
385
 
386
        } else {
387
            $data = [
388
                'success' => false,
389
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
390
            ];
391
 
392
            return new JsonModel($data);
393
        }
394
 
395
        return new JsonModel($data);
396
    }
397
}