Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 16769 Rev 16943
Línea 224... Línea 224...
224
        $currentUserPlugin  = $this->plugin('currentUserPlugin');
224
        $currentUserPlugin  = $this->plugin('currentUserPlugin');
225
        $currentCompany     = $currentUserPlugin->getCompany(); 
225
        $currentCompany     = $currentUserPlugin->getCompany(); 
226
        $currentUser        = $currentUserPlugin->getUser();
226
        $currentUser        = $currentUserPlugin->getUser();
Línea 227... Línea 227...
227
        
227
        
228
        $request    = $this->getRequest();
-
 
229
      /*  return new JsonModel([
-
 
230
            'success' => false,
-
 
231
            'data' => [
-
 
232
                'name'=>$this->params()->fromPost('file_base64_name'),
-
 
233
                'content'=>$this->params()->fromPost('file'),
-
 
234
            ]
228
        $request    = $this->getRequest();
235
        ]);*/
229
 
236
        if($request->isPost()) {
230
        if($request->isPost()) {
237
            $form = new  TopicAddForm();
231
            $form = new  TopicAddForm();
Línea 238... Línea 232...
238
            $dataPost = array_merge($request->getPost()->toArray(), $request->getFiles()->toArray());
232
            $dataPost = array_merge($request->getPost()->toArray(), $request->getFiles()->toArray());
Línea 252... Línea 246...
252
               
246
               
253
                
247
                
254
                $topicMapper = CompanyMicrolearningTopicMapper::getInstance($this->adapter);
248
                $topicMapper = CompanyMicrolearningTopicMapper::getInstance($this->adapter);
255
                if($topicMapper->insert($topic)) {
-
 
256
                    $topic = $topicMapper->fetchOne($topic->id);
249
                if($topicMapper->insert($topic)) {
257
                    $fileBase64Content = $this->params()->fromPost('file');
-
 
258
 
-
 
259
                    try {
-
 
260
                       
250
                    $topic = $topicMapper->fetchOne($topic->id);
261
                        $fileBase64Content = base64_decode($fileBase64Content);
-
 
262
                        $target_path = $this->config['leaderslinked.fullpath.microlearning_topic'] . $topic->uuid;
-
 
263
                        $topic_filename      = 'topic-' .uniqid() . '.jpg';
251
                    
264
                        $topic_tmp_filename = 'data' . DIRECTORY_SEPARATOR . 'tmp';
252
                    $target_path = $this->config['leaderslinked.fullpath.microlearning_topic'] .  $topic->uuid;
265
                        if(!file_exists($topic_tmp_filename)) {
253
                    if(!file_exists($target_path)) {
-
 
254
                        mkdir($target_path, 0755, true);
-
 
255
                    }
-
 
256
                    
-
 
257
                    
266
                            mkdir($topic_tmp_filename, 0755, true);
258
                    $files = $this->getRequest()->getFiles()->toArray();
267
                        }
259
                    if(isset($files['file']) && empty($files['file']['error'])) {
Línea -... Línea 260...
-
 
260
                        $tmp_filename  = $files['file']['tmp_name'];
268
                        $topic_tmp_filename = 'data' . DIRECTORY_SEPARATOR . 'tmp' . DIRECTORY_SEPARATOR . $topic_filename;
261
                       // $filename      = $this->normalizeString($files['file']['name']);
269
                            file_put_contents($topic_tmp_filename, $fileBase64Content);
262
                        
-
 
263
                        try {
270
                        
264
                            list($target_width, $target_height) = explode('x', $this->config['leaderslinked.image_sizes.microlearning_image_size']);
271
                        list($target_width, $target_height) = explode('x', $this->config['leaderslinked.image_sizes.microlearning_image_size']);
265
                            
272
 
266
                            $filename = 'topic-' .uniqid() . '.png';
273
                        $crop_to_dimensions = false;
267
                            $crop_to_dimensions = false;
-
 
268
                            if(Image::uploadImage($tmp_filename, $target_path, $filename, $target_width, $target_height, $crop_to_dimensions)) {
-
 
269
                                $topic->image = $filename;
-
 
270
                                $topicMapper->update($topic);
274
                        if(Image::uploadImage($topic_tmp_filename, $target_path, $topic_filename, $target_width, $target_height, $crop_to_dimensions )) {
271
                            }
275
                            $topic->image = basename($topic_filename);
-
 
276
                            $topicMapper->update($topic);
-
 
277
                        }
272
                        } catch(\Throwable $e) {
-
 
273
                            error_log($e->getTraceAsString());
Línea 278... Línea 274...
278
                    } catch(\Throwable $e) {
274
                        }
Línea 279... Línea 275...
279
                        error_log($e->getTraceAsString());
275
                    }
280
                    }       
276
                    
Línea 462... Línea 458...
462
                $topic->image = null;
458
                $topic->image = null;
463
                $topic->marketplace = null;
459
                $topic->marketplace = null;
Línea 464... Línea 460...
464
 
460
 
465
                if($topicMapper->update($topic)) {
461
                if($topicMapper->update($topic)) {
466
                    $topic = $topicMapper->fetchOne($topic->id);
-
 
467
                    $fileBase64Content = $this->params()->fromPost('file');
-
 
468
                    try {
-
 
469
                        $target_path = $this->config['leaderslinked.fullpath.microlearning_topic'] . $topic->uuid;
-
 
470
                        if($topic->image) {
-
 
471
                                
-
 
472
                            if(!image ::delete($target_path, $topic->image)) {
-
 
473
                                return new JsonModel([
-
 
474
                                    'success'   => false,
-
 
475
                                    'data'   =>  'ERROR_THERE_WAS_AN_ERROR'
-
 
476
                                ]);
-
 
477
                            }
-
 
478
                        }
-
 
479
                        $fileBase64Content = base64_decode($fileBase64Content);
-
 
480
                       
-
 
481
                        $topic_filename      = 'topic-' .uniqid() . '.jpg';
-
 
482
                        $topic_tmp_filename = 'data' . DIRECTORY_SEPARATOR . 'tmp';
-
 
483
                        if(!file_exists($topic_tmp_filename)) {
-
 
484
                            mkdir($topic_tmp_filename, 0755, true);
-
 
485
                        }
-
 
486
                        $topic_tmp_filename = 'data' . DIRECTORY_SEPARATOR . 'tmp' . DIRECTORY_SEPARATOR . $topic_filename;
-
 
487
                            file_put_contents($topic_tmp_filename, $fileBase64Content);
-
 
488
                        
-
 
489
                        list($target_width, $target_height) = explode('x', $this->config['leaderslinked.image_sizes.microlearning_image_size']);
-
 
490
 
-
 
491
                        $crop_to_dimensions = false;
-
 
492
                        if(Image::uploadImage($topic_tmp_filename, $target_path, $topic_filename, $target_width, $target_height, $crop_to_dimensions )) {
-
 
493
                            $topic->image = basename($topic_filename);
-
 
494
                            $topicMapper->update($topic);
-
 
495
                        }
-
 
496
                    } catch(\Throwable $e) {
-
 
497
                        error_log($e->getTraceAsString());
-
 
498
                    }       
-
 
499
                   
-
 
500
                    $this->logger->info('Se agrego el tópico ' . $topic->name, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
-
 
501
                    
-
 
502
                    $data = [
-
 
503
                        'success'   => true,
-
 
504
                        'data'   => 'LABEL_RECORD_UPDATED'
-
 
505
                    ];
-
 
506
                    /*
-
 
507
                    $topic = $topicMapper->fetchOne($topic->id);
-
 
Línea 508... Línea 462...
508
                    
462
                    $topic = $topicMapper->fetchOne($topic->id);
509
                    
463
                    
510
                    $target_path = $this->config['leaderslinked.fullpath.microlearning_topic'] .  $topic->uuid;
464
                    $target_path = $this->config['leaderslinked.fullpath.microlearning_topic'] .  $topic->uuid;
511
                    if(!file_exists($target_path)) {
465
                    if(!file_exists($target_path)) {
Línea 530... Línea 484...
530
                            }
484
                            }
Línea 531... Línea 485...
531
                            
485
                            
Línea 532... Línea 486...
532
                            list($target_width, $target_height) = explode('x', $this->config['leaderslinked.image_sizes.microlearning_image_size']);
486
                            list($target_width, $target_height) = explode('x', $this->config['leaderslinked.image_sizes.microlearning_image_size']);
533
                            
487
                            
534
                            $filename = 'topic-' .uniqid() . '.png';
488
                            $filename = 'topic-' .uniqid() . '.png';
535
                            $crop_to_dimensions = true;
489
                            $crop_to_dimensions = false;
536
                            if(Image::uploadImage($tmp_filename, $target_path, $filename, $target_width, $target_height, $crop_to_dimensions)) {
490
                            if(Image::uploadImage($tmp_filename, $target_path, $filename, $target_width, $target_height, $crop_to_dimensions)) {
537
                                $topic->image = $filename;
491
                                $topic->image = $filename;
538
                                $topicMapper->update($topic);
492
                                $topicMapper->update($topic);
Línea 548... Línea 502...
548
                    $this->logger->info('Se edito el tópico ' . $topic->name, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
502
                    $this->logger->info('Se edito el tópico ' . $topic->name, ['user_id' => $currentUser->id, 'ip' => Functions::getUserIP()]);
Línea 549... Línea 503...
549
                    
503
                    
550
                    $data = [
504
                    $data = [
551
                        'success'   => true,
505
                        'success'   => true,
552
                        'data'   => 'LABEL_RECORD_UPDATED'
506
                        'data'   => 'LABEL_RECORD_UPDATED'
553
                    ];*/
507
                    ];
554
                } else {
508
                } else {
555
                    $data = [
509
                    $data = [
556
                        'success'   => false,
510
                        'success'   => false,
557
                        'data'      => $topicMapper->getError()
511
                        'data'      => $topicMapper->getError()