public function download()
{
$user = \Auth::user();
//验证字段
$request = array_filter($this->request->input());
array_walk($request, function (&$value, $key) {
if (is_array($value)) {
$value = array_filter($value);
}
});
$validator = \Validator::make($request, [
'attachment_ids' => 'required|array|min:1',
]);
if ($validator->fails()) {
return $this->errorBadRequest($validator->messages()->all());
}
$attachmentIds = $this->request->get('attachment_ids');
$attachments = Attachment::whereIn('id', $attachmentIds)->get();
if (!$attachments->count()) {
return $this->response->errorNotFound();
}
if ($attachments->count() == 1) {
$attachment = $attachments->first();
if (!$attachment->allowDownload($user)) {
return $this->response->errorForbidden();
}
return response()->download(public_path($attachment->relative_path));
} else {
$zip = new \ZipArchive();
$zipFile = storage_path('app/cache/' . date('Ymdhis') . uniqid() . '.zip');
$zip->open($zipFile, \ZIPARCHIVE::CREATE);
foreach ($attachments as $attachment) {
if (!$attachment->allowDownload($user)) {
continue;
}
$filename = basename($attachment->relative_path);
$zip->addFile($attachment->relative_path, $filename);
}
$zip->close();
return response()->download($zipFile);
}
}
0
0
跳至
[1]
[全屏预览]
本站声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门AI工具
相关专题
C++ 单元测试与代码质量保障
本专题系统讲解 C++ 在单元测试与代码质量保障方面的实战方法,包括测试驱动开发理念、Google Test/Google Mock 的使用、测试用例设计、边界条件验证、持续集成中的自动化测试流程,以及常见代码质量问题的发现与修复。通过工程化示例,帮助开发者建立 可测试、可维护、高质量的 C++ 项目体系。
10
2026.01.16
热门下载
相关下载
精品课程
相关推荐
/
热门推荐
/
最新课程








