|
@@ -20,6 +20,7 @@ use Illuminate\Support\Str;
|
|
|
|
|
|
class HomeController extends Controller
|
|
|
{
|
|
|
+ private $posterName = '产品海报';
|
|
|
/*
|
|
|
* 首页
|
|
|
*/
|
|
@@ -60,7 +61,6 @@ class HomeController extends Controller
|
|
|
$title = $folder->title;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
foreach ($albums as $key => $album) {
|
|
|
$cover = json_decode($album['cover']);
|
|
|
|
|
@@ -80,6 +80,7 @@ class HomeController extends Controller
|
|
|
$breadcrumb = '';
|
|
|
}
|
|
|
|
|
|
+
|
|
|
return view('gallery',
|
|
|
[
|
|
|
'foldersTree' => $this->foldersTree,
|
|
@@ -148,6 +149,9 @@ class HomeController extends Controller
|
|
|
$album = $album->toArray();
|
|
|
$album['video'] = SitePreviewVideo::changeVideo($album['id'],$album['video']);
|
|
|
//dd($album);
|
|
|
+ if ($bumFolder->title == $this->posterName) {
|
|
|
+ $album['poster'] = SiteAlbum::getAllPoster($album['title']);
|
|
|
+ }
|
|
|
return view('gallery-detail',[
|
|
|
'foldersTree' => $this->foldersTree,
|
|
|
'album' => $album,
|
|
@@ -242,6 +246,40 @@ class HomeController extends Controller
|
|
|
}
|
|
|
|
|
|
|
|
|
+ /*
|
|
|
+ * 下载视频
|
|
|
+ */
|
|
|
+ public function download(Request $request)
|
|
|
+ {
|
|
|
+ $url = $request->input('url');
|
|
|
+ $url = ossUrl($url);
|
|
|
+ $fileName = basename($url);
|
|
|
+ $extension = pathinfo($fileName, PATHINFO_EXTENSION);
|
|
|
+ if (env('OSS_HOST_INTERNAL')) {
|
|
|
+ //用内网地址下载视频
|
|
|
+ $url = str_replace(env('OSS_HOST'), env('OSS_HOST_INTERNAL'), $url);
|
|
|
+ }
|
|
|
+ if ($extension == 'mp4') {
|
|
|
+ header('Content-Type: video/mp4');
|
|
|
+ } else {
|
|
|
+ //pdf
|
|
|
+ header('Content-Type: application/pdf');
|
|
|
+ }
|
|
|
+ header('Content-Disposition: attachment; filename="' . $fileName . '"');
|
|
|
+ header('Content-Length: ' . (string) get_headers($url, 1)['Content-Length']); // 获取远程文件大小[3](@ref)
|
|
|
+// 2. 分块输出文件流(避免内存溢出)
|
|
|
+ ob_clean();
|
|
|
+ flush();
|
|
|
+ $ch = curl_init($url);
|
|
|
+ curl_setopt($ch, CURLOPT_RETURNTRANSFER, false);
|
|
|
+ curl_exec($ch);
|
|
|
+ curl_close($ch);
|
|
|
+ exit;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
public function getDownloadAllStatus(Request $request)
|
|
|
{
|
|
|
$reset = $request->input('reset', 0);
|