当前位置: 首页>>代码示例>>PHP>>正文


PHP Common\FileToolkit类代码示例

本文整理汇总了PHP中Topxia\Common\FileToolkit的典型用法代码示例。如果您正苦于以下问题:PHP FileToolkit类的具体用法?PHP FileToolkit怎么用?PHP FileToolkit使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了FileToolkit类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: addFile

 public function addFile(array $fileInfo = array(), UploadedFile $originalFile = null)
 {
     $errors = FileToolkit::validateFileExtension($originalFile);
     if ($errors) {
         @unlink($originalFile->getRealPath());
         throw $this->createServiceException("该文件格式,不允许上传。");
     }
     $uploadFile = array();
     $uploadFile['storage'] = 'local';
     $uploadFile['filename'] = $originalFile->getClientOriginalName();
     $uploadFile['ext'] = FileToolkit::getFileExtension($originalFile);
     $uploadFile['size'] = $originalFile->getSize();
     $filename = FileToolkit::generateFilename($uploadFile['ext']);
     $uploadFile['hashId'] = "course/{$filename}";
     $uploadFile['convertHash'] = "ch-{$uploadFile['hashId']}";
     $uploadFile['convertStatus'] = 'none';
     $uploadFile['type'] = FileToolkit::getFileTypeByExtension($uploadFile['ext']);
     $uploadFile['isPublic'] = empty($fileInfo['isPublic']) ? 0 : 1;
     $uploadFile['canDownload'] = empty($uploadFile['canDownload']) ? 0 : 1;
     $uploadFile['updatedUserId'] = $uploadFile['createdUserId'] = $this->getCurrentUser()->id;
     $uploadFile['updatedTime'] = $uploadFile['createdTime'] = time();
     $targetPath = $this->getFilePath('course', $uploadFile['isPublic']);
     $originalFile->move($targetPath, $filename);
     return $uploadFile;
 }
开发者ID:liugang19890719,项目名称:www.zesow.com,代码行数:25,代码来源:LocalFileImplementorImpl.php

示例2: addFile

 public function addFile($targetType, $targetId, array $fileInfo = array(), UploadedFile $originalFile = null)
 {
     if (!ArrayToolkit::requireds($fileInfo, array('filename', 'key', 'size'))) {
         throw $this->createServiceException('参数缺失,添加用户文件失败!');
     }
     $uploadFile = array();
     $uploadFile['targetId'] = $targetId;
     $uploadFile['targetType'] = $targetType;
     $uploadFile['hashId'] = $fileInfo['key'];
     $uploadFile['filename'] = $fileInfo['filename'];
     $uploadFile['ext'] = pathinfo($uploadFile['filename'], PATHINFO_EXTENSION);
     $uploadFile['size'] = (int) $fileInfo['size'];
     $uploadFile['etag'] = empty($fileInfo['etag']) ? '' : $fileInfo['etag'];
     $uploadFile['length'] = empty($fileInfo['length']) ? 0 : intval($fileInfo['length']);
     $uploadFile['metas'] = $this->encodeMetas(empty($fileInfo['metas']) ? array() : $fileInfo['metas']);
     $uploadFile['metas2'] = $this->encodeMetas(empty($fileInfo['metas2']) ? array() : $fileInfo['metas2']);
     if (empty($fileInfo['convertHash'])) {
         $uploadFile['convertHash'] = "ch-{$uploadFile['hashId']}";
         $uploadFile['convertStatus'] = 'none';
         $uploadFile['convertParams'] = '';
     } else {
         $uploadFile['convertHash'] = "{$fileInfo['convertHash']}";
         $uploadFile['convertStatus'] = 'waiting';
         $uploadFile['convertParams'] = $fileInfo['convertParams'];
     }
     $uploadFile['type'] = FileToolkit::getFileTypeByMimeType($fileInfo['mimeType']);
     $uploadFile['canDownload'] = empty($uploadFile['canDownload']) ? 0 : 1;
     $uploadFile['storage'] = 'cloud';
     $uploadFile['createdUserId'] = $this->getCurrentUser()->id;
     $uploadFile['updatedUserId'] = $uploadFile['createdUserId'];
     $uploadFile['updatedTime'] = $uploadFile['createdTime'] = time();
     return $uploadFile;
 }
开发者ID:styling,项目名称:LeesPharm,代码行数:33,代码来源:CloudFileImplementorImpl.php

示例3: createPrivateFileDownloadResponse

 protected function createPrivateFileDownloadResponse(Request $request, $file)
 {
     $response = BinaryFileResponse::create($file['fullpath'], 200, array(), false);
     $response->trustXSendfileTypeHeader();
     $file['filename'] = urlencode($file['filename']);
     if (preg_match("/MSIE/i", $request->headers->get('User-Agent'))) {
         $response->headers->set('Content-Disposition', 'attachment; filename="' . $file['filename'] . '"');
     } else {
         $response->headers->set('Content-Disposition', "attachment; filename*=UTF-8''" . $file['filename']);
     }
     $mimeType = FileToolkit::getMimeTypeByExtension($file['ext']);
     if ($mimeType) {
         $response->headers->set('Content-Type', $mimeType);
     }
     return $response;
 }
开发者ID:latticet,项目名称:EduSoho_jb51,代码行数:16,代码来源:CourseMaterialController.php

示例4: approvalSubmitAction

 public function approvalSubmitAction(Request $request)
 {
     $user = $this->getCurrentUser();
     if ($request->getMethod() == 'POST') {
         $faceImg = $request->files->get('faceImg');
         $backImg = $request->files->get('backImg');
         if (!FileToolkit::isImageFile($backImg) || !FileToolkit::isImageFile($faceImg)) {
             return $this->createMessageResponse('error', '上传图片格式错误,请上传jpg, bmp,gif, png格式的文件。');
         }
         $directory = $this->container->getParameter('topxia.upload.private_directory') . '/approval';
         $this->getUserService()->applyUserApproval($user['id'], $request->request->all(), $faceImg, $backImg, $directory);
         $this->setFlashMessage('success', '实名认证提交成功!');
         return $this->redirect($this->generateUrl('settings'));
     }
     return $this->render('TopxiaWebBundle:Settings:approval.html.twig', array());
 }
开发者ID:bqx619,项目名称:edusoho_dev,代码行数:16,代码来源:SettingsController.php

示例5: consultUploadAction

 public function consultUploadAction(Request $request)
 {
     $fileId = $request->request->get('id');
     $objectFile = $this->getFileService()->getFileObject($fileId);
     if (!FileToolkit::isImageFile($objectFile)) {
         throw $this->createAccessDeniedException('图片格式不正确!');
     }
     $file = $this->getFileService()->getFile($fileId);
     $parsed = $this->getFileService()->parseFileUri($file["uri"]);
     $consult = $this->getSettingService()->get('consult', array());
     $consult['webchatURI'] = "{$this->container->getParameter('topxia.upload.public_url_path')}/" . $parsed["path"];
     $consult['webchatURI'] = ltrim($consult['webchatURI'], '/');
     $this->getSettingService()->set('consult', $consult);
     $this->getLogService()->info('system', 'update_settings', "更新微信二维码", array('webchatURI' => $consult['webchatURI']));
     $response = array('path' => $consult['webchatURI'], 'url' => $this->container->get('templating.helper.assets')->getUrl($consult['webchatURI']));
     return $this->createJsonResponse($response);
 }
开发者ID:ccq18,项目名称:EduSoho,代码行数:17,代码来源:SiteSettingController.php

示例6: consultUploadAction

 public function consultUploadAction(Request $request)
 {
     $file = $request->files->get('consult');
     if (!FileToolkit::isImageFile($file)) {
         throw $this->createAccessDeniedException('图片格式不正确!');
     }
     $filename = 'webchat.' . $file->getClientOriginalExtension();
     $directory = "{$this->container->getParameter('topxia.upload.public_directory')}/system";
     $file = $file->move($directory, $filename);
     $consult = $this->getSettingService()->get('consult', array());
     $consult['webchatURI'] = "{$this->container->getParameter('topxia.upload.public_url_path')}/system/{$filename}";
     $consult['webchatURI'] = ltrim($consult['webchatURI'], '/');
     $this->getSettingService()->set('consult', $consult);
     $this->getLogService()->info('system', 'update_settings', "更新微信二维码", array('webchatURI' => $consult['webchatURI']));
     $response = array('path' => $consult['webchatURI'], 'url' => $this->container->get('templating.helper.assets')->getUrl($consult['webchatURI']));
     return new Response(json_encode($response));
 }
开发者ID:Loyalsoldier,项目名称:8000wei-v2,代码行数:17,代码来源:SiteSettingController.php

示例7: mobilePictureUploadAction

 public function mobilePictureUploadAction(Request $request, $type)
 {
     $file = $request->files->get($type);
     if (!FileToolkit::isImageFile($file)) {
         throw $this->createAccessDeniedException('图片格式不正确!');
     }
     $filename = 'mobile_picture' . time() . '.' . $file->getClientOriginalExtension();
     $directory = "{$this->container->getParameter('topxia.upload.public_directory')}/system";
     $file = $file->move($directory, $filename);
     $mobile = $this->getSettingService()->get('mobile', array());
     $mobile[$type] = "{$this->container->getParameter('topxia.upload.public_url_path')}/system/{$filename}";
     $mobile[$type] = ltrim($mobile[$type], '/');
     $this->getSettingService()->set('mobile', $mobile);
     $this->getLogService()->info('system', 'update_settings', "更新网校{$type}图片", array($type => $mobile[$type]));
     $response = array('path' => $mobile[$type], 'url' => $this->container->get('templating.helper.assets')->getUrl($mobile[$type]));
     return new Response(json_encode($response));
 }
开发者ID:ZHONG-GUO,项目名称:EduSoho,代码行数:17,代码来源:MobileController.php

示例8: uploadAction

 public function uploadAction(Request $request)
 {
     list($groupCode, $type) = $this->tryUploadFile($request);
     if (!$this->isGroup($groupCode)) {
         return $this->createMessageResponse("error", "参数不正确");
     }
     $file = $request->files->get('file');
     if ($type == 'image') {
         if (!FileToolkit::isImageFile($file)) {
             throw new \RuntimeException("您上传的不是图片文件,请重新上传。");
         }
     } else {
         throw new \RuntimeException("上传类型不正确!");
     }
     $record = $this->getFileService()->uploadFile($groupCode, $file);
     $record['url'] = $this->get('topxia.twig.web_extension')->getFilePath($record['uri']);
     $request->getSession()->set("fileId", $record["id"]);
     return $this->createJsonResponse($record);
 }
开发者ID:ccq18,项目名称:EduSoho,代码行数:19,代码来源:FileController.php

示例9: pictureAction

 public function pictureAction(Request $request, $id)
 {
     $course = $this->getCourseService()->tryManageCourse($id);
     if ($request->getMethod() == 'POST') {
         $file = $request->files->get('picture');
         if (!FileToolkit::isImageFile($file)) {
             return $this->createMessageResponse('error', '上传图片格式错误,请上传jpg, gif, png格式的文件。');
         }
         $filenamePrefix = "course_{$course['id']}_";
         $hash = substr(md5($filenamePrefix . time()), -8);
         $ext = $file->getClientOriginalExtension();
         $filename = $filenamePrefix . $hash . '.' . $ext;
         $directory = $this->container->getParameter('topxia.upload.public_directory') . '/tmp';
         $file = $file->move($directory, $filename);
         $fileName = str_replace('.', '!', $file->getFilename());
         return $this->redirect($this->generateUrl('course_manage_picture_crop', array('id' => $course['id'], 'file' => $fileName)));
     }
     return $this->render('TopxiaWebBundle:CourseManage:picture.html.twig', array('course' => $course));
 }
开发者ID:styling,项目名称:LeesPharm,代码行数:19,代码来源:CourseManageController.php

示例10: uploadFile

 public function uploadFile($group, File $file, $target = null)
 {
     $errors = FileToolkit::validateFileExtension($file);
     if ($errors) {
         @unlink($file->getRealPath());
         throw $this->createServiceException("该文件格式,不允许上传。");
     }
     $group = $this->getGroupDao()->findGroupByCode($group);
     $user = $this->getCurrentUser();
     $record = array();
     $record['userId'] = $user['id'];
     $record['groupId'] = $group['id'];
     // @todo fix it.
     $record['mime'] = '';
     // $record['mime'] = $file->getMimeType();
     $record['size'] = $file->getSize();
     $record['uri'] = $this->generateUri($group, $file);
     $record['createdTime'] = time();
     $record = $this->getFileDao()->addFile($record);
     $record['file'] = $this->saveFile($file, $record['uri']);
     return $record;
 }
开发者ID:styling,项目名称:LeesPharm,代码行数:22,代码来源:FileServiceImpl.php

示例11: validateExcelFile

 public function validateExcelFile($file)
 {
     $errorMessage = '';
     if (!is_object($file)) {
         $errorMessage = '请选择上传的文件';
         return $errorMessage;
     }
     if (FileToolkit::validateFileExtension($file, 'xls xlsx')) {
         $errorMessage = 'Excel格式不正确!';
         return $errorMessage;
     }
     $this->excelAnalyse($file);
     if ($this->rowTotal > 1000) {
         $message = 'Excel超过1000行数据!';
         return $errorMessage;
     }
     if (!$this->checkNecessaryFields($this->excelFields)) {
         $message = '缺少必要的字段';
         return $errorMessage;
     }
     return $errorMessage;
 }
开发者ID:ccq18,项目名称:EduSoho,代码行数:22,代码来源:ClassroomUserImporterProcessor.php

示例12: pictureAction

 public function pictureAction(Request $request, $id)
 {
     $gift = $this->getGiftService()->tryManageGift($id);
     if ($request->getMethod() == 'POST') {
         $reponse = array();
         $file = $request->files->get('picture');
         if (!FileToolkit::isImageFile($file)) {
             return $this->createMessageResponse('error', '上传图片格式错误,请上传jpg, gif, png格式的文件。');
         }
         $filenamePrefix = "gift_{$gift['id']}_";
         $hash = substr(md5($filenamePrefix . time()), -8);
         $ext = $file->getClientOriginalExtension();
         $filename = $filenamePrefix . $hash . '.' . $ext;
         $directory = $this->container->getParameter('topxia.upload.public_directory') . '/tmp';
         $file = $file->move($directory, $filename);
         $fileName = str_replace('.', '!', $file->getFilename());
         $pictureFilePath = $this->container->getParameter('topxia.upload.public_directory') . '/tmp/' . $filename;
         $this->getGiftService()->changeGiftPicture($gift['id'], $pictureFilePath);
         return $this->createJsonResponse($pictureFilePath);
     }
     return $this->render('TopxiaAdminBundle:Gift:picture.html.twig', array('gift' => $gift));
 }
开发者ID:liugang19890719,项目名称:www.zesow.com,代码行数:22,代码来源:GiftController.php

示例13: uploadAction

 public function uploadAction(Request $request)
 {
     try {
         $token = $request->query->get('token');
         $maker = new UploadToken();
         $token = $maker->parse($token);
         if (empty($token)) {
             throw new \RuntimeException("上传授权码已过期,请刷新页面后重试!");
         }
         $file = $request->files->get('upload');
         if ($token['type'] == 'image') {
             if (!FileToolkit::isImageFile($file)) {
                 throw new \RuntimeException("您上传的不是图片文件,请重新上传。");
             }
         } elseif ($token['type'] == 'flash') {
             $errors = FileToolkit::validateFileExtension($file, 'swf');
             if (!empty($errors)) {
                 throw new \RuntimeException("您上传的不是Flash文件,请重新上传。");
             }
         } else {
             throw new \RuntimeException("上传类型不正确!");
         }
         $record = $this->getFileService()->uploadFile($token['group'], $file);
         $funcNum = $request->query->get('CKEditorFuncNum');
         $url = $this->get('topxia.twig.web_extension')->getFilePath($record['uri']);
         if ($token['type'] == 'image') {
             $response = "<script type='text/javascript'>window.parent.CKEDITOR.tools.callFunction({$funcNum}, '{$url}', function(){ this._.dialog.getParentEditor().insertHtml('<img src=\"{$url}\">'); this._.dialog.hide(); return false; });</script>";
         } else {
             $response = "<script type='text/javascript'>window.parent.CKEDITOR.tools.callFunction({$funcNum}, '{$url}');</script>";
         }
         return new Response($response);
     } catch (\Exception $e) {
         $message = $e->getMessage();
         $funcNum = $request->query->get('CKEditorFuncNum');
         $response = "<script type='text/javascript'>window.parent.CKEDITOR.tools.callFunction({$funcNum}, '', '{$message}');</script>";
         return new Response($response);
     }
 }
开发者ID:liugang19890719,项目名称:www.zesow.com,代码行数:38,代码来源:EditorController.php

示例14: defaultCoursePictureAction

 public function defaultCoursePictureAction(Request $request)
 {
     $file = $request->files->get('picture');
     if (!FileToolkit::isImageFile($file)) {
         return $this->createMessageResponse('error', '上传图片格式错误,请上传jpg, gif, png格式的文件。');
     }
     $filenamePrefix = "coursePicture";
     $hash = substr(md5($filenamePrefix . time()), -8);
     $ext = $file->getClientOriginalExtension();
     $filename = $filenamePrefix . $hash . '.' . $ext;
     $defaultSetting = $this->getSettingService()->get('default', array());
     $defaultSetting['defaultCoursePictureFileName'] = $filename;
     $this->getSettingService()->set("default", $defaultSetting);
     $directory = $this->container->getParameter('topxia.upload.public_directory') . '/tmp';
     $file = $file->move($directory, $filename);
     $pictureFilePath = $directory . '/' . $filename;
     $imagine = new Imagine();
     $image = $imagine->open($pictureFilePath);
     $naturalSize = $image->getSize();
     $scaledSize = $naturalSize->widen(480)->heighten(270);
     $pictureUrl = $this->container->getParameter('topxia.upload.public_url_path') . '/tmp/' . $filename;
     return $this->render('TopxiaAdminBundle:System:default-course-picture-crop.html.twig', array('pictureUrl' => $pictureUrl, 'naturalSize' => $naturalSize, 'scaledSize' => $scaledSize));
 }
开发者ID:styling,项目名称:LeesPharm,代码行数:23,代码来源:SystemDefaultSettingController.php

示例15: addFile

 public function addFile($targetType, $targetId, array $fileInfo = array(), UploadedFile $originalFile = null)
 {
     $errors = FileToolkit::validateFileExtension($originalFile);
     if ($errors) {
         @unlink($originalFile->getRealPath());
         throw $this->createServiceException("该文件格式,不允许上传。");
     }
     $uploadFile = array();
     $time = time();
     $uploadFile['storage'] = 'local';
     $uploadFile['targetId'] = $targetId;
     $uploadFile['targetType'] = $targetType;
     $uploadFile['filename'] = $originalFile->getClientOriginalName();
     //$uploadFile['filename'] = $time.$uploadFile['filename'];
     $uploadFile['ext'] = FileToolkit::getFileExtension($originalFile);
     $uploadFile['size'] = $originalFile->getSize();
     $filename = FileToolkit::generateFilename($uploadFile['ext']);
     $uploadFile['hashId'] = "{$uploadFile['targetType']}/{$uploadFile['targetId']}/{$filename}";
     $uploadFile['convertHash'] = "ch-{$uploadFile['hashId']}";
     $uploadFile['convertStatus'] = 'none';
     $uploadFile['type'] = FileToolkit::getFileTypeByExtension($uploadFile['ext']);
     $uploadFile['isPublic'] = empty($fileInfo['isPublic']) ? 0 : 1;
     $uploadFile['canDownload'] = empty($uploadFile['canDownload']) ? 0 : 1;
     $uploadFile['updatedUserId'] = $uploadFile['createdUserId'] = $this->getCurrentUser()->id;
     $uploadFile['updatedTime'] = $uploadFile['createdTime'] = time();
     //$uploadFile['filePath'] = $this->getFilePath();
     //throw new \RuntimeException(print_r('ssd'));
     //throw $this->createServiceException(print_r('ssd'));
     //$key = $uploadFile['filename'];
     //qiniu();
     //转存上传临时文件到资源文件夹(由于业务服务器硬盘较小,故不作备份,直接上传到七牛云。如需开启则删除下面注释符) 以下代码未包含删备份
     $targetPath = $this->getFilePath($targetType, $targetId, $uploadFile['isPublic']);
     $originalFile->move($targetPath, $filename);
     //todo 上传到七牛处理代码(存储、转码、拼接、水印)20151224
     //$config = $this->getQiniuService()->initQiniu($targetPath,$filename);
     return $uploadFile;
 }
开发者ID:Loyalsoldier,项目名称:8000wei-v3,代码行数:37,代码来源:LocalFileImplementorImpl.php


注:本文中的Topxia\Common\FileToolkit类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。