-
-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Start to implement jeidison/pdf-signe
Signed-off-by: Vitor Mattos <[email protected]>
- Loading branch information
1 parent
71df343
commit 4b1b252
Showing
6 changed files
with
229 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,144 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
/** | ||
* @copyright Copyright (c) 2023 Vitor Mattos <[email protected]> | ||
* | ||
* @author Vitor Mattos <[email protected]> | ||
* | ||
* @license GNU AGPL version 3 or any later version | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as | ||
* published by the Free Software Foundation, either version 3 of the | ||
* License, or (at your option) any later version. | ||
* | ||
* 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 | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
namespace OCA\Libresign\Handler; | ||
|
||
use Jeidison\JSignPDF\JSignPDF; | ||
use Jeidison\JSignPDF\Sign\JSignParam; | ||
use OCA\Libresign\Exception\LibresignException; | ||
use OCP\AppFramework\Services\IAppConfig; | ||
use Psr\Log\LoggerInterface; | ||
|
||
class PhpNativeHandler extends SignEngineHandler { | ||
/** @var JSignPDF */ | ||
private $jSignPdf; | ||
/** @var JSignParam */ | ||
private $jSignParam; | ||
public const VERSION = '2.2.2'; | ||
|
||
public function __construct( | ||
private IAppConfig $appConfig, | ||
private LoggerInterface $logger, | ||
) { | ||
} | ||
|
||
public function setJSignPdf(JSignPDF $jSignPdf): void { | ||
$this->jSignPdf = $jSignPdf; | ||
} | ||
|
||
public function getJSignPdf(): JSignPDF { | ||
if (!$this->jSignPdf) { | ||
// @codeCoverageIgnoreStart | ||
$this->setJSignPdf(new JSignPDF()); | ||
// @codeCoverageIgnoreEnd | ||
} | ||
return $this->jSignPdf; | ||
} | ||
|
||
/** | ||
* @psalm-suppress MixedReturnStatement | ||
*/ | ||
public function getJSignParam(): JSignParam { | ||
if (!$this->jSignParam) { | ||
$javaPath = $this->appConfig->getAppValue('java_path'); | ||
$this->jSignParam = (new JSignParam()) | ||
->setTempPath( | ||
$this->appConfig->getAppValue('jsignpdf_temp_path', sys_get_temp_dir() . DIRECTORY_SEPARATOR) | ||
) | ||
->setIsUseJavaInstalled(empty($javaPath)) | ||
->setjSignPdfJarPath( | ||
$this->appConfig->getAppValue('jsignpdf_jar_path', '/opt/jsignpdf-' . self::VERSION . '/JSignPdf.jar') | ||
); | ||
if (!empty($javaPath)) { | ||
if (!file_exists($javaPath)) { | ||
throw new \Exception('Invalid Java binary. Run occ libresign:install --java'); | ||
} | ||
$this->jSignParam->setJavaPath($javaPath); | ||
} | ||
} | ||
return $this->jSignParam; | ||
} | ||
|
||
/** | ||
* @psalm-suppress MixedReturnStatement | ||
*/ | ||
public function sign(): string { | ||
$param = $this->getJSignParam() | ||
->setCertificate($this->getCertificate()) | ||
->setPdf($this->getInputFile()->getContent()) | ||
->setPassword($this->getPassword()); | ||
|
||
$signed = $this->signUsingVisibleElements(); | ||
if ($signed) { | ||
return $signed; | ||
} | ||
$jSignPdf = $this->getJSignPdf(); | ||
$jSignPdf->setParam($param); | ||
return $this->signWrapper($jSignPdf); | ||
} | ||
|
||
private function signUsingVisibleElements(): string { | ||
$visibleElements = $this->getvisibleElements(); | ||
if ($visibleElements) { | ||
$jSignPdf = $this->getJSignPdf(); | ||
$param = $this->getJSignParam(); | ||
foreach ($visibleElements as $element) { | ||
$param | ||
->setJSignParameters( | ||
$param->getJSignParameters() . | ||
' -pg ' . $element->getFileElement()->getPage() . | ||
' -llx ' . $element->getFileElement()->getLlx() . | ||
' -lly ' . $element->getFileElement()->getLly() . | ||
' -urx ' . $element->getFileElement()->getUrx() . | ||
' -ury ' . $element->getFileElement()->getUry() . | ||
' --l2-text ""' . | ||
' -V' . | ||
' --bg-path ' . $element->getTempFile() | ||
); | ||
$jSignPdf->setParam($param); | ||
$signed = $this->signWrapper($jSignPdf); | ||
} | ||
return $signed; | ||
} | ||
return ''; | ||
} | ||
|
||
private function signWrapper(JSignPDF $jSignPDF): string { | ||
try { | ||
return $jSignPDF->sign(); | ||
} catch (\Throwable $th) { | ||
$rows = str_getcsv($th->getMessage()); | ||
$hashAlgorithm = array_filter($rows, fn ($r) => str_contains($r, 'The chosen hash algorithm')); | ||
if (!empty($hashAlgorithm)) { | ||
$hashAlgorithm = current($hashAlgorithm); | ||
$hashAlgorithm = trim($hashAlgorithm, 'INFO '); | ||
$hashAlgorithm = str_replace('\"', '"', $hashAlgorithm); | ||
$hashAlgorithm = preg_replace('/\.( )/', ".\n", $hashAlgorithm); | ||
throw new LibresignException($hashAlgorithm); | ||
} | ||
$this->logger->error('Error at JSignPdf side. LibreSign can not do nothing. Follow the error message: ' . $th->getMessage()); | ||
throw new \Exception($th->getMessage()); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
<template> | ||
<NcSettingsSection :name="name" :description="description"> | ||
<div class="signature-engine-content"> | ||
<NcSelect input-id="signatureEngine" | ||
:aria-label-combobox="description" | ||
:clearable="false" | ||
:value="value" | ||
:options="options" | ||
@input="saveEngine" /> | ||
</div> | ||
</NcSettingsSection> | ||
</template> | ||
<script> | ||
import { translate as t } from '@nextcloud/l10n' | ||
import NcSettingsSection from '@nextcloud/vue/dist/Components/NcSettingsSection.js' | ||
import NcSelect from '@nextcloud/vue/dist/Components/NcSelect.js' | ||
import { emit } from '@nextcloud/event-bus' | ||
import { loadState } from '@nextcloud/initial-state' | ||
export default { | ||
name: 'SignatureEngine', | ||
components: { | ||
NcSettingsSection, | ||
NcSelect, | ||
}, | ||
data() { | ||
return { | ||
name: t('libresign', 'Signature engine'), | ||
description: t('libresign', 'Select the signature engine to sign the documents'), | ||
value: [], | ||
options: [ | ||
{ id: 'JSignPdf', label: 'JSignPdf' }, | ||
{ id: 'PhpNative', label: 'PHP native' }, | ||
], | ||
} | ||
}, | ||
beforeMount() { | ||
const currentOption = {} | ||
currentOption.id = loadState('libresign', 'signature_engine', 'JSignPdf') | ||
if (currentOption.id === 'JSignPdf') { | ||
currentOption.label = 'JSignPdf' | ||
} else { | ||
currentOption.label = 'PHP native' | ||
} | ||
this.value = [currentOption] | ||
}, | ||
methods: { | ||
saveEngine(selected) { | ||
this.value = selected | ||
OCP.AppConfig.setValue('libresign', 'signature_engine', selected.id, { | ||
success() { | ||
emit('libresign:signature-engine:changed', selected.id) | ||
}, | ||
}) | ||
}, | ||
}, | ||
} | ||
</script> | ||
<style scoped> | ||
.signature-engine-content{ | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
</style> |