root_path . '/' . 'image' . '/' . $this->site_id . '/' . date('Ym') . '/' . date('d'); $core_upload_service = new CoreUploadService(); return $core_upload_service->image($file, $this->site_id, $dir, $this->cate_id); } /** * 附件库上传视频 * @param $file * @return array * @throws Exception */ public function video($file) { $dir = $this->root_path . '/' . 'video' . '/' . $this->site_id . '/' . date('Ym') . '/' . date('d'); $core_upload_service = new CoreUploadService(); return $core_upload_service->video($file, $this->site_id, $dir, $this->cate_id); } /** * 文件上传 * @param $file * @param string $type * @return array * @throws Exception */ public function document($file, string $type = '') { if(!in_array($type, FileDict::getSceneType())) throw new UploadFileException('UPLOAD_TYPE_ERROR'); $dir = $this->root_path.'/document/'.$type.'/'.$this->site_id.'/'.date('Ym').'/'.date('d'); $core_upload_service = new CoreUploadService(); return $core_upload_service->document($file, $this->site_id, $type, $dir, StorageDict::LOCAL); } }