Beispiel #1
0
 /**
  * function ::create ($data)
  */
 public static function create($data)
 {
     $now = strtotime('now');
     $username = Yii::$app->user->identity->username;
     $model = new ProductImage();
     if ($model->load($data)) {
         if ($log = new UserLog()) {
             $log->username = $username;
             $log->action = 'Create';
             $log->object_class = 'ProductImage';
             $log->created_at = $now;
             $log->is_success = 0;
             $log->save();
         }
         do {
             $path = FileUtils::generatePath($now);
         } while (file_exists(Yii::$app->params['images_folder'] . $path));
         $model->image_path = $path;
         $targetFolder = Yii::$app->params['images_folder'] . $model->image_path;
         $targetUrl = Yii::$app->params['images_url'] . $model->image_path;
         if (!empty($data['productimage-image'])) {
             $copyResult = FileUtils::copyImage(['imageName' => $model->image, 'fromFolder' => Yii::$app->params['uploads_folder'], 'toFolder' => $targetFolder, 'resize' => array_values(ProductImage::$image_resizes), 'removeInputImage' => true]);
             if ($copyResult['success']) {
                 $model->image = $copyResult['imageName'];
             }
         }
         if ($model->save()) {
             if ($log) {
                 $log->object_pk = $model->id;
                 $log->is_success = 1;
                 $log->save();
             }
             return $model;
         }
         $model->getErrors();
         return $model;
     }
     return false;
 }
Beispiel #2
0
 public function updateUpload()
 {
     $tokenImage = date("dmYHis") . bin2hex(openssl_random_pseudo_bytes(8));
     if ($this->validate() and UploadedFile::getInstance($this, 'file')) {
         unlink('images/products/titles/' . $this->image);
         if ($this->file = UploadedFile::getInstance($this, 'file')) {
             $imageName = $this->file->baseName . '.' . $this->file->extension;
             $goodImage = $tokenImage . $imageName;
             $this->file->saveAs('images/products/titles/' . $goodImage);
             $this->image = $goodImage;
         }
     }
     // multiFiles upload
     if ($this->validate() and $this->multiFiles = UploadedFile::getInstances($this, 'multiFiles')) {
         foreach ($this->multiFiles as $file) {
             $goodImage = $tokenImage . $file->baseName . '.' . $file->extension;
             $file->saveAs('images/products/galleries/' . $goodImage);
             $image = new Image();
             $image->name = $goodImage;
             $image->alt = $this->title;
             // $image->alt = $goodImage;
             $image->save();
             $pi = new ProductImage();
             $pi->product_id = $this->id;
             $pi->image_id = $image->id;
             $pi->save();
         }
     }
 }