Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 5660 | Rev 6849 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 5660 Rev 6749
Línea 9... Línea 9...
9
declare(strict_types=1);
9
declare(strict_types=1);
Línea 10... Línea 10...
10
 
10
 
Línea 11... Línea 11...
11
namespace LeadersLinked\Controller;
11
namespace LeadersLinked\Controller;
12
 
12
 
13
use Laminas\Db\Adapter\AdapterInterface;
13
use Laminas\Db\Adapter\AdapterInterface;
14
use Laminas\Cache\Storage\Adapter\AbstractAdapter;
14
use LeadersLinked\Cache\CacheInterface;
15
use Laminas\Mvc\Controller\AbstractActionController;
15
use Laminas\Mvc\Controller\AbstractActionController;
Línea 16... Línea 16...
16
use Laminas\Log\LoggerInterface;
16
use Laminas\Log\LoggerInterface;
Línea 35... Línea 35...
35
use LeadersLinked\Mapper\UserNotificationSettingMapper;
35
use LeadersLinked\Mapper\UserNotificationSettingMapper;
36
use LeadersLinked\Library\QueueEmail;
36
use LeadersLinked\Library\QueueEmail;
37
use Laminas\Db\Sql\Expression;
37
use Laminas\Db\Sql\Expression;
38
use LeadersLinked\Model\Notification;
38
use LeadersLinked\Model\Notification;
39
use LeadersLinked\Mapper\NotificationMapper;
39
use LeadersLinked\Mapper\NotificationMapper;
-
 
40
use LeadersLinked\Library\Functions;
Línea 40... Línea 41...
40
 
41
 
41
 
42
 
42
class GroupController extends AbstractActionController
43
class GroupController extends AbstractActionController
Línea 48... Línea 49...
48
    private $adapter;
49
    private $adapter;
Línea 49... Línea 50...
49
 
50
 
50
 
51
 
51
    /**
52
    /**
52
     *
53
     *
53
     * @var AbstractAdapter
54
     * @var CacheInterface
Línea 54... Línea 55...
54
     */
55
     */
55
    private $cache;
56
    private $cache;
Línea 68... Línea 69...
68
    private $config;
69
    private $config;
Línea 69... Línea 70...
69
 
70
 
70
    /**
71
    /**
71
     *
72
     *
72
     * @param AdapterInterface $adapter
73
     * @param AdapterInterface $adapter
73
     * @param AbstractAdapter $cache
74
     * @param CacheInterface $cache
74
     * @param LoggerInterface $logger
75
     * @param LoggerInterface $logger
75
     * @param array $config
76
     * @param array $config
76
     */
77
     */
77
    public function __construct($adapter, $cache, $logger,  $config)
78
    public function __construct($adapter, $cache, $logger,  $config)
Línea 481... Línea 482...
481
        $currentUser = $currentUserPlugin->getUser();
482
        $currentUser = $currentUserPlugin->getUser();
Línea 482... Línea 483...
482
 
483
 
483
        $request = $this->getRequest();
484
        $request = $this->getRequest();
484
        if ($request->isPost()) {
485
        if ($request->isPost()) {
485
            $id = $this->params()->fromRoute('id');
486
            $id = $this->params()->fromRoute('id');
486
            $flash =  filter_var($this->params()->fromPost('flash', 'false'), FILTER_SANITIZE_STRING);
487
            $flash =  Functions::sanitizeFilterString($this->params()->fromPost('flash', 'false'));
Línea 487... Línea 488...
487
            $flash = $flash === 'true' ? true : false;
488
            $flash = $flash === 'true' ? true : false;
488
 
489
 
489
            if (!$id) {
490
            if (!$id) {
Línea 576... Línea 577...
576
        $currentUser = $currentUserPlugin->getUser();
577
        $currentUser = $currentUserPlugin->getUser();
Línea 577... Línea 578...
577
 
578
 
578
        $request = $this->getRequest();
579
        $request = $this->getRequest();
579
        if ($request->isPost()) {
580
        if ($request->isPost()) {
580
            $id = $this->params()->fromRoute('id');
581
            $id = $this->params()->fromRoute('id');
581
            $flash =  filter_var($this->params()->fromPost('flash', 'false'), FILTER_SANITIZE_STRING);
582
            $flash =  Functions::sanitizeFilterString($this->params()->fromPost('flash', 'false'));
Línea 582... Línea 583...
582
            $flash = $flash === 'true' ? true : false;
583
            $flash = $flash === 'true' ? true : false;
583
 
584
 
584
            if (!$id) {
585
            if (!$id) {
Línea 664... Línea 665...
664
        $currentUser = $currentUserPlugin->getUser();
665
        $currentUser = $currentUserPlugin->getUser();
Línea 665... Línea 666...
665
 
666
 
666
        $request = $this->getRequest();
667
        $request = $this->getRequest();
667
        if ($request->isPost()) {
668
        if ($request->isPost()) {
668
            $id = $this->params()->fromRoute('id');
669
            $id = $this->params()->fromRoute('id');
669
            $flash =  filter_var($this->params()->fromPost('flash', 'false'), FILTER_SANITIZE_STRING);
670
            $flash =  Functions::sanitizeFilterString($this->params()->fromPost('flash', 'false'));
Línea 670... Línea 671...
670
            $flash = $flash === 'true' ? true : false;
671
            $flash = $flash === 'true' ? true : false;
671
 
672
 
672
            if (!$id) {
673
            if (!$id) {
Línea 751... Línea 752...
751
        $currentUser = $currentUserPlugin->getUser();
752
        $currentUser = $currentUserPlugin->getUser();
Línea 752... Línea 753...
752
 
753
 
753
        $request = $this->getRequest();
754
        $request = $this->getRequest();
754
        if ($request->isPost()) {
755
        if ($request->isPost()) {
755
            $id = $this->params()->fromRoute('id');
756
            $id = $this->params()->fromRoute('id');
756
            $flash =  filter_var($this->params()->fromPost('flash', 'false'), FILTER_SANITIZE_STRING);
757
            $flash =  Functions::sanitizeFilterString($this->params()->fromPost('flash', 'false'));
Línea 757... Línea 758...
757
            $flash = $flash === 'true' ? true : false;
758
            $flash = $flash === 'true' ? true : false;
758
 
759
 
759
            if (!$id) {
760
            if (!$id) {
Línea 839... Línea 840...
839
        $currentUser = $currentUserPlugin->getUser();
840
        $currentUser = $currentUserPlugin->getUser();
Línea 840... Línea 841...
840
 
841
 
841
        $request = $this->getRequest();
842
        $request = $this->getRequest();
842
        if ($request->isPost()) {
843
        if ($request->isPost()) {
843
            $id = $this->params()->fromRoute('id');
844
            $id = $this->params()->fromRoute('id');
844
            $flash =  filter_var($this->params()->fromPost('flash', 'false'), FILTER_SANITIZE_STRING);
845
            $flash =  Functions::sanitizeFilterString($this->params()->fromPost('flash', 'false'));
Línea 845... Línea 846...
845
            $flash = $flash === 'true' ? true : false;
846
            $flash = $flash === 'true' ? true : false;
846
 
847
 
847
            if (!$id) {
848
            if (!$id) {
Línea 1049... Línea 1050...
1049
                $values = [
1050
                $values = [
1050
                    Group::PRIVACY_IS_PRIVATE => 'LABEL_PRIVATE',
1051
                    Group::PRIVACY_IS_PRIVATE => 'LABEL_PRIVATE',
1051
                    Group::PRIVACY_IS_PUBLIC => 'LABEL_PUBLIC'
1052
                    Group::PRIVACY_IS_PUBLIC => 'LABEL_PUBLIC'
1052
                ];
1053
                ];
Línea 1053... Línea 1054...
1053
 
1054
 
Línea 1054... Línea 1055...
1054
                $search = trim(filter_var($this->params()->fromQuery('search', ''), FILTER_SANITIZE_STRING));
1055
                $search = Functions::sanitizeFilterString($this->params()->fromQuery('search', ''));
Línea 1055... Línea 1056...
1055
 
1056
 
Línea 1133... Línea 1134...
1133
                    }
1134
                    }
1134
                }
1135
                }
1135
            }
1136
            }
Línea 1136... Línea 1137...
1136
 
1137
 
1137
            if ($isJson) {
1138
            if ($isJson) {
Línea 1138... Línea 1139...
1138
                $search = trim(filter_var($this->params()->fromQuery('search', ''), FILTER_SANITIZE_STRING));
1139
                $search = Functions::sanitizeFilterString($this->params()->fromQuery('search', ''));
Línea 1139... Línea 1140...
1139
 
1140
 
1140
                $queryMapper = QueryMapper::getInstance($this->adapter);
1141
                $queryMapper = QueryMapper::getInstance($this->adapter);
Línea 1215... Línea 1216...
1215
                    }
1216
                    }
1216
                }
1217
                }
1217
            }
1218
            }
Línea 1218... Línea 1219...
1218
 
1219
 
1219
            if ($isJson) {
1220
            if ($isJson) {
Línea 1220... Línea 1221...
1220
                $search = trim(filter_var($this->params()->fromQuery('search', ''), FILTER_SANITIZE_STRING));
1221
                $search = Functions::sanitizeFilterString($this->params()->fromQuery('search', ''));