Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
owncloud-prm /
lib /
private /
Preview /
Delete
Unzip
Name
Size
Permission
Date
Action
BMP.php
889
B
-rw-r--r--
2018-04-19 18:15
Bitmap.php
3.28
KB
-rw-r--r--
2018-04-19 18:15
Font.php
937
B
-rw-r--r--
2018-04-19 18:15
GIF.php
889
B
-rw-r--r--
2018-04-19 18:15
Heic.php
909
B
-rw-r--r--
2018-04-19 18:15
Illustrator.php
966
B
-rw-r--r--
2018-04-19 18:15
Image.php
1.95
KB
-rw-r--r--
2018-04-19 18:15
JPEG.php
891
B
-rw-r--r--
2018-04-19 18:15
MP3.php
2.2
KB
-rw-r--r--
2018-04-19 18:15
MSOffice2003.php
991
B
-rw-r--r--
2018-04-19 18:15
MSOffice2007.php
989
B
-rw-r--r--
2018-04-19 18:15
MSOfficeDoc.php
922
B
-rw-r--r--
2018-04-19 18:15
MarkDown.php
904
B
-rw-r--r--
2018-04-19 18:15
Movie.php
4.69
KB
-rw-r--r--
2018-04-19 18:15
Office.php
2.88
KB
-rw-r--r--
2018-04-19 18:15
OpenDocument.php
1019
B
-rw-r--r--
2018-04-19 18:15
PDF.php
951
B
-rw-r--r--
2018-04-19 18:15
PNG.php
889
B
-rw-r--r--
2018-04-19 18:15
Photoshop.php
965
B
-rw-r--r--
2018-04-19 18:15
Postscript.php
965
B
-rw-r--r--
2018-04-19 18:15
Provider.php
2.13
KB
-rw-r--r--
2018-04-19 18:15
SVG.php
1.97
KB
-rw-r--r--
2018-04-19 18:15
StarOffice.php
976
B
-rw-r--r--
2018-04-19 18:15
TIFF.php
948
B
-rw-r--r--
2018-04-19 18:15
TXT.php
2.39
KB
-rw-r--r--
2018-04-19 18:15
XBitmap.php
899
B
-rw-r--r--
2018-04-19 18:15
Save
Rename
<?php /** * @author Georg Ehrke <georg@owncloud.com> * @author Joas Schilling <coding@schilljs.com> * @author Morris Jobke <hey@morrisjobke.de> * @author Olivier Paroz <github@oparoz.com> * @author Thomas Müller <thomas.mueller@tmit.eu> * @author Lorenzo Perone <lorenzo.perone@yellowspace.net> * * @copyright Copyright (c) 2018, ownCloud GmbH * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License, version 3, * as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License, version 3, * along with this program. If not, see <http://www.gnu.org/licenses/> * */ namespace OC\Preview; class Movie extends Provider { public static $avconvBinary; public static $ffmpegBinary; public static $atomicParsleyBinary; /** * Keep track of movies without artwork to avoid retries in same request * @var array */ private $noArtworkIndex = array(); /** * {@inheritDoc} */ public function getMimeType() { return '/video\/.*/'; } /** * {@inheritDoc} */ public function getThumbnail($path, $maxX, $maxY, $scalingup, $fileview) { // TODO: use proc_open() and stream the source file ? $fileInfo = $fileview->getFileInfo($path); $useFileDirectly = (!$fileInfo->isEncrypted() && !$fileInfo->isMounted()); if ($useFileDirectly) { $absPath = $fileview->getLocalFile($path); } else { $absPath = \OC::$server->getTempManager()->getTemporaryFile(); $handle = $fileview->fopen($path, 'rb'); // we better use 5MB (1024 * 1024 * 5 = 5242880) instead of 1MB. // in some cases 1MB was no enough to generate thumbnail $firstmb = stream_get_contents($handle, 5242880); file_put_contents($absPath, $firstmb); fclose($handle); } $result = $this->generateThumbNail($maxX, $maxY, $absPath, 5); if ($result === false) { $result = $this->generateThumbNail($maxX, $maxY, $absPath, 1); if ($result === false) { $result = $this->generateThumbNail($maxX, $maxY, $absPath, 0); } } if (!$useFileDirectly) { unlink($absPath); } return $result; } /** * @param $absPath * @return bool|string */ private function extractMp4CoverArtwork($absPath) { if (isset($this->noArtworkIndex[$absPath])) { return false; } if (self::$atomicParsleyBinary) { $suffix = substr($absPath, -4); if ('.mp4' === strtolower($suffix)) { $tmpFolder = \OC::$server->getTempManager()->getTemporaryFolder(); $tmpBase = $tmpFolder.'/Cover'; $cmd = self::$atomicParsleyBinary . ' ' . escapeshellarg($absPath). ' --extractPixToPath ' . escapeshellarg($tmpBase) . ' > /dev/null 2>&1'; exec($cmd, $output, $returnCode); if ($returnCode === 0) { $endings = array('.jpg', '.png'); foreach ($endings as $ending) { $extractedFile = $tmpBase.'_artwork_1'.$ending; if (is_file($extractedFile) && filesize($extractedFile) > 0) { return $extractedFile; } } } } } $this->noArtworkIndex[$absPath] = true; return false; } /** * @param $absPath * @param $second * @return bool|string */ private function generateFromMovie($absPath, $second) { $tmpPath = \OC::$server->getTempManager()->getTemporaryFile(); if (self::$avconvBinary) { $cmd = self::$avconvBinary . ' -y -ss ' . escapeshellarg($second) . ' -i ' . escapeshellarg($absPath) . ' -an -f mjpeg -vframes 1 -vsync 1 ' . escapeshellarg($tmpPath) . ' > /dev/null 2>&1'; } else { $cmd = self::$ffmpegBinary . ' -y -ss ' . escapeshellarg($second) . ' -i ' . escapeshellarg($absPath) . ' -f mjpeg -vframes 1' . ' ' . escapeshellarg($tmpPath) . ' > /dev/null 2>&1'; } exec($cmd, $output, $returnCode); if ($returnCode === 0) { return $tmpPath; } return false; } /** * @param int $maxX * @param int $maxY * @param string $absPath * @param int $second * @return bool|\OCP\IImage */ private function generateThumbNail($maxX, $maxY, $absPath, $second) { $extractedCover = $this->extractMp4CoverArtwork($absPath); if (false !== $extractedCover) { $tmpPath = $extractedCover; } else { $tmpPath = $this->generateFromMovie($absPath, $second); } if (is_string($tmpPath) && is_file($tmpPath)) { $image = new \OC_Image(); $image->loadFromFile($tmpPath); unlink($tmpPath); if ($image->valid()) { $image->scaleDownToFit($maxX, $maxY); return $image; } } return false; } }