我有一个Laravel 5.5应用程序,具有管理员权限的用户可以上传文件。在他们上传我希望他们能够在管理员仪表板中查看文件的文件之后。
我有一个 DocumentController.php 来处理文件上传到本地磁盘:
public function store(Request $request)
{
// check to make sure user is an admin
$request->user()->authorizeRoles('admin');
// validate that the document is a pdf and
// that required fields are filled out
$this->validate($request, [
'title' => 'required',
'description' => 'required',
'user_id' => 'required|exists:users,id',
'document_path' => 'required|mimes:pdf'
]);
$file = $request->file('document_path');
$path = $file->store('documents/' . $request->user_id);
$document = Document::create([
'user_id' => $request->user_id,
'title' => $request->title,
'description' => $request->description,
'file_path' => $path
]);
return redirect($document->path());
}
此方法从表单中获取文件,确保它是pdf,然后将文件保存到 storage / app / documents / {user_id} 。然后,它会在数据库中创建一个文档记录,并根据文档ID转发到URL: / admin / document / {$ document-> id}
该路线定义为Route::get('/admin/document/{document}', 'DocumentController@show');
在控制器中我将文档传递给视图:
public function show(Document $document, Request $request)
{
// check to make sure user is an admin
$request->user()->authorizeRoles('admin');
$storagePath = Storage::disk('local')->getDriver()->getAdapter()->getPathPrefix();
return view('admin.document', compact('document', 'storagePath'));
}
在该页面上,我想显示pdf文档。
资源/视图/管理/ document.blade.php
@extends('layouts.app')
@section('content')
<div class='container'>
<div class='row'>
<div class='col-sm-2'>
<a href='/admin'>< Back to admin</a>
</div>
<div class='col-sm-8'>
{{ $document }}
<embed src="{{ Storage::url($document->file_path) }}" style="width:600px; height:800px;" frameborder="0">
</div>
</div>
</div>
@endsection
我尝试过使用$storagePath
变量和Storage
方法,但无法在iframe中显示pdf文件。
使用本地文件存储如何在浏览器中显示文件?此外,我已经保护了路由,以便只有管理员可以查看文档的页面,但是保护文档本身路径的最佳方法是什么?
答案 0 :(得分:6)
如果您希望保护您的文件(只有管理员可以访问它们),那么您需要创建一个新的路线和新的DocumentController
方法getDocument
添加新路线
Route::get('documents/pdf-document/{id}', 'DocumentController@getDocument');
在 DocumentController 中,添加
use Storage;
use Response;
添加新方法,从存储中读取您的pdf文件并将其返回
public function getDocument($id)
{
$document = Document::findOrFail($id);
$filePath = $document->file_path;
// file not found
if( ! Storage::exists($filePath) ) {
abort(404);
}
$pdfContent = Storage::get($filePath);
// for pdf, it will be 'application/pdf'
$type = Storage::mimeType($filePath);
$fileName = Storage::name($filePath);
return Response::make($pdfContent, 200, [
'Content-Type' => $type,
'Content-Disposition' => 'inline; filename="'.$fileName.'"'
]);
}
在您的视图中,您可以显示此文档
<embed
src="{{ action('DocumentController@getDocument', ['id'=> $document->id]) }}"
style="width:600px; height:800px;"
frameborder="0"
>
答案 1 :(得分:1)
来自@ljubadr答案的Response::make()
的缩写版本:
return Storage::response($document->file_path)
答案 2 :(得分:-1)
<embed
src="{{ url('/filepath') }}"
style="width:600px; height:800px;"
frameborder="0">