123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- <?php
- /**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- *
- * @author Joas Schilling <coding@schilljs.com>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Olivier Paroz <github@oparoz.com>
- * @author Robin McCorkell <robin@mccorkell.me.uk>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- *
- * @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;
- use OCP\ILogger;
- abstract class Office extends Provider {
- private $cmd;
- /**
- * {@inheritDoc}
- */
- public function getThumbnail($path, $maxX, $maxY, $scalingup, $fileview) {
- $this->initCmd();
- if (is_null($this->cmd)) {
- return false;
- }
- $absPath = $fileview->toTmpFile($path);
- $tmpDir = \OC::$server->getTempManager()->getTempBaseDir();
- $defaultParameters = ' -env:UserInstallation=file://' . escapeshellarg($tmpDir . '/owncloud-' . \OC_Util::getInstanceId() . '/') . ' --headless --nologo --nofirststartwizard --invisible --norestore --convert-to png --outdir ';
- $clParameters = \OC::$server->getConfig()->getSystemValue('preview_office_cl_parameters', $defaultParameters);
- $exec = $this->cmd . $clParameters . escapeshellarg($tmpDir) . ' ' . escapeshellarg($absPath);
- shell_exec($exec);
- //create imagick object from png
- $pngPreview = null;
- try {
- list($dirname, , , $filename) = array_values(pathinfo($absPath));
- $pngPreview = $dirname . '/' . $filename . '.png';
- $png = new \imagick($pngPreview . '[0]');
- $png->setImageFormat('jpg');
- } catch (\Exception $e) {
- unlink($absPath);
- unlink($pngPreview);
- \OC::$server->getLogger()->logException($e, [
- 'level' => ILogger::ERROR,
- 'app' => 'core',
- ]);
- return false;
- }
- $image = new \OC_Image();
- $image->loadFromData($png);
- unlink($absPath);
- unlink($pngPreview);
- if ($image->valid()) {
- $image->scaleDownToFit($maxX, $maxY);
- return $image;
- }
- return false;
- }
- private function initCmd() {
- $cmd = '';
- $libreOfficePath = \OC::$server->getConfig()->getSystemValue('preview_libreoffice_path', null);
- if (is_string($libreOfficePath)) {
- $cmd = $libreOfficePath;
- }
- $whichLibreOffice = shell_exec('command -v libreoffice');
- if ($cmd === '' && !empty($whichLibreOffice)) {
- $cmd = 'libreoffice';
- }
- $whichOpenOffice = shell_exec('command -v openoffice');
- if ($cmd === '' && !empty($whichOpenOffice)) {
- $cmd = 'openoffice';
- }
- if ($cmd === '') {
- $cmd = null;
- }
- $this->cmd = $cmd;
- }
- }
|