Rev 11336 | AutorÃa | Ultima modificación | Ver Log |
<?phpdeclare(strict_types=1);namespace LeadersLinked\Controller;use Laminas\Authentication\AuthenticationService;use Laminas\Authentication\Result as AuthResult;use Laminas\Db\Adapter\AdapterInterface;use Laminas\Cache\Storage\Adapter\AbstractAdapter;use Laminas\Mvc\Controller\AbstractActionController;use Laminas\Mvc\I18n\Translator;use Laminas\Log\LoggerInterface;use Laminas\View\Model\ViewModel;use Laminas\View\Model\JsonModel;use LeadersLinked\Hydrator\ObjectPropertyHydrator;use LeadersLinked\Mapper\MyTrainerQuestionsMapper;use LeadersLinked\Mapper\FeedMapper;use LeadersLinked\Form\MyTrainerQuestionForm;use LeadersLinked\Model\MyTrainerQuestions;use LeadersLinked\Model\Feed;use LeadersLinked\Form\CreateFeedForm;use LeadersLinked\Form\TopicForm;use LeadersLinked\Mapper\UserMapper;class MyTrainerAnswerController extends AbstractActionController{/**** @var AdapterInterface*/private $adapter;/**** @var AbstractAdapter*/private $cache;/**** @var LoggerInterface*/private $logger;/**** @var array*/private $config;/**** @param AdapterInterface $adapter* @param AbstractAdapter $cache* @param LoggerInterface $logger* @param array $config*/public function __construct($adapter, $cache , $logger, $config){$this->adapter = $adapter;$this->cache = $cache;$this->logger = $logger;$this->config = $config;}public function indexAction() {$request = $this->getRequest();$currentUserPlugin = $this->plugin('currentUserPlugin');$currentCompany = $currentUserPlugin->getCompany();$currentUser = $currentUserPlugin->getUser();try{$request = $this->getRequest();if($request->isGet()) {$myt_id = $this->params()->fromRoute('id');$headers = $request->getHeaders();$isJson = false;if($headers->has('Accept')) {$accept = $headers->get('Accept');$prioritized = $accept->getPrioritized();foreach($prioritized as $key => $value) {$raw = trim($value->getRaw());if(!$isJson) {$isJson = strpos($raw, 'json');}}}$acl = $this->getEvent()->getViewModel()->getVariable('acl');$allowAdd = $acl->isAllowed($currentUser->usertype_id, 'my-trainer/answer/add');$allowEdit = $acl->isAllowed($currentUser->usertype_id, 'my-trainer/answer/edit');$allowDelete = $acl->isAllowed($currentUser->usertype_id, 'my-trainer/answer/delete');$form = new CreateFeedForm($this->adapter);$questionsMapper = FeedMapper::getInstance($this->adapter);$question = $questionsMapper->fetchOneByUuid($myt_id);// $posts;$viewModel = new ViewModel();$this->layout()->setTemplate('layout/layout-backend');$viewModel->setTemplate('leaders-linked/my-trainer-answer/index.phtml');$viewModel->setVariables(['form' => $form,'question_title' => $question->title,'question_description' => $question->description,]);return $viewModel;} else {return new JsonModel(['success' => false,'data' => 'ERROR_METHOD_NOT_ALLOWED']);}} catch (\Throwable $e) {$e->getMessage();return new JsonModel(['success' => false,'data' => $e]);}}public function addAction() {$currentUserPlugin = $this->plugin('currentUserPlugin');$currentCompany = $currentUserPlugin->getCompany();$currentUser = $currentUserPlugin->getUser();$myt_id = $this->params()->fromRoute('id');$questionsMapper = FeedMapper::getInstance($this->adapter);$question = $questionsMapper->fetchOneByUuid($myt_id);$request = $this->getRequest();try{if($request->isPost()) {$form = new CreateFeedForm($this->adapter);$dataPost = $request->getPost()->toArray();$categoriesId = $dataPost['category_id'] ?? [];$dataPost['category_id'] = null;$form->setData($dataPost);if($form->isValid()) {$dataPost = (array) $form->getData();$hydrator = new ObjectPropertyHydrator();$feed = new Feed();$hydrator->hydrate($dataPost, $feed);$feed->user_id = $currentUser->id;$feed->company_id = $currentCompany->id;$feed->user_id = $currentUser->id;$feed->type = Feed::TYPE_MYT_ANSWER;$feed->posted_or_shared = Feed::POSTED;$feed->shared_with = Feed::SHARE_WITH_PUBLIC;$feed->myt_id = $question->id;$feed->related_feed = $question->id;$feedMapper = FeedMapper::getInstance($this->adapter);if($feedMapper->insert($feed)) {$feed = $feedMapper->fetchOne($feed->id);$category = new FeedTopic();$feedMapper->update($feed);$this->logger->info('Se agrego la pregunta ' . $feed->title, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);$data = ['success' => true,'data' => 'LABEL_RECORD_ADDED'];} else {$data = ['success' => false,'data' => $feedMapper->getError()];}return new JsonModel($data);} else {$messages = [];$form_messages = (array) $form->getMessages();foreach($form_messages as $fieldname => $field_messages){$messages[$fieldname] = array_values($field_messages);}}} else {$data = ['success' => false,'data' => 'ERROR_METHOD_NOT_ALLOWED'];return new JsonModel($data);}} catch (\Throwable $e) {$e->getMessage();return new JsonModel(['success' => false,'data' => $e]);}}}