Merge remote-tracking branch 'remotes/origin/develop' into configImportExport

# Conflicts:
#	lam/lib/selfService.inc
This commit is contained in:
Roland Gruber 2020-06-14 21:36:48 +02:00
commit 01844a0d05
58 changed files with 548 additions and 209 deletions

3
.github/FUNDING.yml vendored Normal file
View File

@ -0,0 +1,3 @@
github: [LDAPAccountManager]

9
SECURITY.md Normal file
View File

@ -0,0 +1,9 @@
# Security Policy
## Supported Versions
Security updates are always created based on the latest release.
## Reporting a Vulnerability
Please report all security issues to post@rolandgruber.de. Reports will be answered within 48h.

View File

@ -70,7 +70,8 @@ export VERSION=`./getVersion`
# remove files which are not in the final release # remove files which are not in the final release
rm -r lam/po rm -r lam/po
rm -r lam/tests rm -r lam/tests
rm lam/lib/3rdParty/tcpdf/fonts/*.ttf rm -f lam/lib/3rdParty/tcpdf/fonts/*.ttf
rm -r lam/templates/lib/extra/ckeditor/plugins/*/dev
find . -name .svnignore -exec rm {} \; find . -name .svnignore -exec rm {} \;
find . -name .gitignore -exec rm {} \; find . -name .gitignore -exec rm {} \;
mv lam ldap-account-manager-$VERSION mv lam ldap-account-manager-$VERSION

View File

@ -1,3 +1,9 @@
ldap-account-manager (7.3.DEV-1) unstable; urgency=medium
* new upstream release
-- Roland Gruber <post@rolandgruber.de> Tue, 02 Jun 2020 09:12:46 +0200
ldap-account-manager (7.2-1) unstable; urgency=medium ldap-account-manager (7.2-1) unstable; urgency=medium
* new upstream release * new upstream release

View File

@ -966,9 +966,8 @@ lib/3rdParty/composer/ramsey B 2018 Be
lib/3rdParty/composer/spomky-labs B 2018 Spomky-Labs lib/3rdParty/composer/spomky-labs B 2018 Spomky-Labs
lib/3rdParty/composer/symfony B 2019 Fabien Potencier lib/3rdParty/composer/symfony B 2019 Fabien Potencier
lib/3rdParty/composer/web-auth B 2018 Spomky-Labs lib/3rdParty/composer/web-auth B 2018 Spomky-Labs
lib/3rdParty/tcpdf D 2018 Nicola Asuni - Tecnick.com LTD lib/3rdParty/tcpdf D 2020 Nicola Asuni - Tecnick.com LTD
lib/3rdParty/tcpdf/fonts/DejaVu*.ttf A Public Domain, Bitstream, Inc., Tavmjong Bah lib/3rdParty/tcpdf/fonts/dejavu*.z A Public Domain, Bitstream, Inc., Tavmjong Bah
lib/3rdParty/tcpdf/fonts/DejaVu*.z A Public Domain, Bitstream, Inc., Tavmjong Bah
lib/3rdParty/phpseclib B 2019 TerraFrost and other contributors lib/3rdParty/phpseclib B 2019 TerraFrost and other contributors
lib/3rdParty/Monolog B 2011 Jordi Boggiano lib/3rdParty/Monolog B 2011 Jordi Boggiano
lib/3rdParty/Psr B 2012 PHP Framework Interoperability Group lib/3rdParty/Psr B 2012 PHP Framework Interoperability Group

View File

@ -8,6 +8,11 @@ LAM_SKIP_PRECONFIGURE=false
LDAP_DOMAIN=my-domain.com LDAP_DOMAIN=my-domain.com
# LDAP base DN to overwrite value generated by LDAP_DOMAIN # LDAP base DN to overwrite value generated by LDAP_DOMAIN
LDAP_BASE_DN=dc=my-domain,dc=com LDAP_BASE_DN=dc=my-domain,dc=com
# LDAP users DN to overwrite value provided by LDAP_BASE_DN
LDAP_USERS_DN=ou=people,dc=my-domain,dc=com
# LDAP groups DN to overwrite value provided by LDAP_BASE_DN
LDAP_GROUPS_DN=ou=groups,dc=my-domain,dc=com
# LDAP server URL # LDAP server URL
LDAP_SERVER=ldap://ldap:389 LDAP_SERVER=ldap://ldap:389
# LDAP admin user (set as login user for LAM) # LDAP admin user (set as login user for LAM)
@ -17,6 +22,9 @@ LAM_LANG=en_US
# LAM configuration master password and password for server profile "lam" # LAM configuration master password and password for server profile "lam"
LAM_PASSWORD=lam LAM_PASSWORD=lam
# deactivate TLS certificate checks, activate for development only
LAM_DISABLE_TLS_CHECK=false
# #
# docker-compose only, LDAP server setup # docker-compose only, LDAP server setup
# #

View File

@ -3,9 +3,7 @@ services:
ldap-account-manager: ldap-account-manager:
build: build:
context: . context: .
args: image: ldapaccountmanager/lam:7.2
- LAM_RELEASE=7.2
image: ldapaccountmanager/lam:latest
restart: unless-stopped restart: unless-stopped
ports: ports:
- "8080:80" - "8080:80"

View File

@ -23,6 +23,11 @@
set -eu # unset variables are errors & non-zero return values exit the whole script set -eu # unset variables are errors & non-zero return values exit the whole script
[ "$DEBUG" ] && set -x [ "$DEBUG" ] && set -x
if [ "$LAM_DISABLE_TLS_CHECK" == "true" ]; then
ln -s /etc/ldap/ldap.conf /etc/ldap.conf
echo "TLS_REQCERT never" >> /etc/ldap/ldap.conf
fi
LAM_SKIP_PRECONFIGURE="${LAM_SKIP_PRECONFIGURE:-false}" LAM_SKIP_PRECONFIGURE="${LAM_SKIP_PRECONFIGURE:-false}"
if [ "$LAM_SKIP_PRECONFIGURE" != "true" ]; then if [ "$LAM_SKIP_PRECONFIGURE" != "true" ]; then
@ -32,8 +37,10 @@ if [ "$LAM_SKIP_PRECONFIGURE" != "true" ]; then
LDAP_SERVER="${LDAP_SERVER:-ldap://ldap:389}" LDAP_SERVER="${LDAP_SERVER:-ldap://ldap:389}"
LDAP_DOMAIN="${LDAP_DOMAIN:-my-domain.com}" LDAP_DOMAIN="${LDAP_DOMAIN:-my-domain.com}"
LDAP_BASE_DN="${LDAP_BASE_DN:-dc=${LDAP_DOMAIN//\./,dc=}}" LDAP_BASE_DN="${LDAP_BASE_DN:-dc=${LDAP_DOMAIN//\./,dc=}}"
LDAP_USERS_DN="${LDAP_USERS_DN:-${LDAP_BASE_DN}}"
LDAP_GROUPS_DN="${LDAP_GROUPS_DN:-${LDAP_BASE_DN}}"
LDAP_ADMIN_USER="${LDAP_USER:-cn=admin,${LDAP_BASE_DN}}" LDAP_ADMIN_USER="${LDAP_USER:-cn=admin,${LDAP_BASE_DN}}"
sed -i -f- /etc/ldap-account-manager/config.cfg <<- EOF sed -i -f- /etc/ldap-account-manager/config.cfg <<- EOF
s|^password:.*|password: ${LAM_PASSWORD_SSHA}|; s|^password:.*|password: ${LAM_PASSWORD_SSHA}|;
EOF EOF
@ -45,8 +52,8 @@ EOF
s|^Passwd:.*|Passwd: ${LAM_PASSWORD_SSHA}|; s|^Passwd:.*|Passwd: ${LAM_PASSWORD_SSHA}|;
s|^treesuffix:.*|treesuffix: ${LDAP_BASE_DN}|; s|^treesuffix:.*|treesuffix: ${LDAP_BASE_DN}|;
s|^defaultLanguage:.*|defaultLanguage: ${LAM_LANG}.utf8|; s|^defaultLanguage:.*|defaultLanguage: ${LAM_LANG}.utf8|;
s|^.*suffix_user:.*|types: suffix_user: ${LDAP_BASE_DN}|; s|^.*suffix_user:.*|types: suffix_user: ${LDAP_USERS_DN}|;
s|^.*suffix_group:.*|types: suffix_group: ${LDAP_BASE_DN}|; s|^.*suffix_group:.*|types: suffix_group: ${LDAP_GROUPS_DN}|;
EOF EOF
fi fi

View File

@ -1,3 +1,6 @@
September 2020
- PHP 7.4 compatibility
01.05.2020 7.2 01.05.2020 7.2
- Unix: allow to create group with same name during user creation - Unix: allow to create group with same name during user creation
- LAM Pro: - LAM Pro:
@ -11,7 +14,7 @@
17.03.2020 7.1 17.03.2020 7.1
- PHP 7 required - PHP 7 required
- Webauthn/FIDO2 support for 2-factor-authentication (requires PHP 7.2) - WebAuthn/FIDO2 support for 2-factor-authentication (requires PHP 7.2)
- IMAP: changed library to support latest TLS versions - IMAP: changed library to support latest TLS versions
- Personal: support display name (hidden by default in server profile) - Personal: support display name (hidden by default in server profile)
- Windows users: support allowed workstations, more profile options - Windows users: support allowed workstations, more profile options

10
lam/composer.lock generated
View File

@ -773,16 +773,16 @@
}, },
{ {
"name": "phpmailer/phpmailer", "name": "phpmailer/phpmailer",
"version": "v6.1.5", "version": "v6.1.6",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/PHPMailer/PHPMailer.git", "url": "https://github.com/PHPMailer/PHPMailer.git",
"reference": "a8bf068f64a580302026e484ee29511f661b2ad3" "reference": "c2796cb1cb99d7717290b48c4e6f32cb6c60b7b3"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/a8bf068f64a580302026e484ee29511f661b2ad3", "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/c2796cb1cb99d7717290b48c4e6f32cb6c60b7b3",
"reference": "a8bf068f64a580302026e484ee29511f661b2ad3", "reference": "c2796cb1cb99d7717290b48c4e6f32cb6c60b7b3",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -831,7 +831,7 @@
} }
], ],
"description": "PHPMailer is a full-featured email creation and transfer class for PHP", "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
"time": "2020-03-14T14:23:48+00:00" "time": "2020-05-27T12:24:03+00:00"
}, },
{ {
"name": "psr/http-client", "name": "psr/http-client",

View File

@ -965,9 +965,8 @@ lib/3rdParty/composer/ramsey B 2018 Be
lib/3rdParty/composer/spomky-labs B 2018 Spomky-Labs lib/3rdParty/composer/spomky-labs B 2018 Spomky-Labs
lib/3rdParty/composer/symfony B 2019 Fabien Potencier lib/3rdParty/composer/symfony B 2019 Fabien Potencier
lib/3rdParty/composer/web-auth B 2018 Spomky-Labs lib/3rdParty/composer/web-auth B 2018 Spomky-Labs
lib/3rdParty/tcpdf D 2018 Nicola Asuni - Tecnick.com LTD lib/3rdParty/tcpdf D 2020 Nicola Asuni - Tecnick.com LTD
lib/3rdParty/tcpdf/fonts/DejaVu*.ttf A Public Domain, Bitstream, Inc., Tavmjong Bah lib/3rdParty/tcpdf/fonts/dejavu*.z A Public Domain, Bitstream, Inc., Tavmjong Bah
lib/3rdParty/tcpdf/fonts/DejaVu*.z A Public Domain, Bitstream, Inc., Tavmjong Bah
lib/3rdParty/phpseclib B 2019 TerraFrost and other contributors lib/3rdParty/phpseclib B 2019 TerraFrost and other contributors
lib/3rdParty/Monolog B 2011 Jordi Boggiano lib/3rdParty/Monolog B 2011 Jordi Boggiano
lib/3rdParty/Psr B 2012 PHP Framework Interoperability Group lib/3rdParty/Psr B 2012 PHP Framework Interoperability Group

View File

@ -526,16 +526,16 @@ class WebauthnProvider extends BaseProvider {
*/ */
public function addCustomInput(&$row, $userDn) { public function addCustomInput(&$row, $userDn) {
if (version_compare(phpversion(), '7.2.0') < 0) { if (version_compare(phpversion(), '7.2.0') < 0) {
$row->add(new htmlStatusMessage('ERROR', 'Webauthn requires PHP 7.2.'), 12); $row->add(new htmlStatusMessage('ERROR', 'WebAuthn requires PHP 7.2.'), 12);
return; return;
} }
if (!extension_loaded('PDO')) { if (!extension_loaded('PDO')) {
$row->add(new htmlStatusMessage('ERROR', 'Webauthn requires the PDO extension for PHP.'), 12); $row->add(new htmlStatusMessage('ERROR', 'WebAuthn requires the PDO extension for PHP.'), 12);
return; return;
} }
$pdoDrivers = \PDO::getAvailableDrivers(); $pdoDrivers = \PDO::getAvailableDrivers();
if (!in_array('sqlite', $pdoDrivers)) { if (!in_array('sqlite', $pdoDrivers)) {
$row->add(new htmlStatusMessage('ERROR', 'Webauthn requires the sqlite PDO driver for PHP.'), 12); $row->add(new htmlStatusMessage('ERROR', 'WebAuthn requires the sqlite PDO driver for PHP.'), 12);
return; return;
} }
include_once __DIR__ . '/webauthn.inc'; include_once __DIR__ . '/webauthn.inc';
@ -567,7 +567,7 @@ class WebauthnProvider extends BaseProvider {
} }
$errorMessageDiv = new htmlDiv('generic-webauthn-error', new htmlOutputText('')); $errorMessageDiv = new htmlDiv('generic-webauthn-error', new htmlOutputText(''));
$errorMessageDiv->addDataAttribute('button', _('Ok')); $errorMessageDiv->addDataAttribute('button', _('Ok'));
$errorMessageDiv->addDataAttribute('title', _('Webauthn failed')); $errorMessageDiv->addDataAttribute('title', _('WebAuthn failed'));
$row->add($errorMessageDiv, 12); $row->add($errorMessageDiv, 12);
$row->add(new htmlJavaScript('window.lam.webauthn.start(\'' . $pathPrefix . '\', ' . $selfServiceParam . ');'), 0); $row->add(new htmlJavaScript('window.lam.webauthn.start(\'' . $pathPrefix . '\', ' . $selfServiceParam . ');'), 0);
} }

View File

@ -808,17 +808,17 @@
}, },
{ {
"name": "phpmailer/phpmailer", "name": "phpmailer/phpmailer",
"version": "v6.1.5", "version": "v6.1.6",
"version_normalized": "6.1.5.0", "version_normalized": "6.1.6.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/PHPMailer/PHPMailer.git", "url": "https://github.com/PHPMailer/PHPMailer.git",
"reference": "a8bf068f64a580302026e484ee29511f661b2ad3" "reference": "c2796cb1cb99d7717290b48c4e6f32cb6c60b7b3"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/a8bf068f64a580302026e484ee29511f661b2ad3", "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/c2796cb1cb99d7717290b48c4e6f32cb6c60b7b3",
"reference": "a8bf068f64a580302026e484ee29511f661b2ad3", "reference": "c2796cb1cb99d7717290b48c4e6f32cb6c60b7b3",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -839,7 +839,7 @@
"stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication", "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication",
"symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)" "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)"
}, },
"time": "2020-03-14T14:23:48+00:00", "time": "2020-05-27T12:24:03+00:00",
"type": "library", "type": "library",
"installation-source": "dist", "installation-source": "dist",
"autoload": { "autoload": {

View File

@ -2,6 +2,8 @@
Please disclose any vulnerabilities found responsibly - report any security problems found to the maintainers privately. Please disclose any vulnerabilities found responsibly - report any security problems found to the maintainers privately.
PHPMailer versions 6.1.5 and earlier contain an output escaping bug that occurs in `Content-Type` and `Content-Disposition` when filenames passed into `addAttachment` and other methods that accept attachment names contain double quote characters, in contravention of RFC822 3.4.1. No specific vulnerability has been found relating to this, but it could allow file attachments to bypass attachment filters that are based on matching filename extensions. Recorded as [CVE-2020-13625](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-13625). Reported by Elar Lang of Clarified Security.
PHPMailer versions prior to 6.0.6 and 5.2.27 are vulnerable to an object injection attack by passing `phar://` paths into `addAttachment()` and other functions that may receive unfiltered local paths, possibly leading to RCE. Recorded as [CVE-2018-19296](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2018-19296). See [this article](https://knasmueller.net/5-answers-about-php-phar-exploitation) for more info on this type of vulnerability. Mitigated by blocking the use of paths containing URL-protocol style prefixes such as `phar://`. Reported by Sehun Oh of cyberone.kr. PHPMailer versions prior to 6.0.6 and 5.2.27 are vulnerable to an object injection attack by passing `phar://` paths into `addAttachment()` and other functions that may receive unfiltered local paths, possibly leading to RCE. Recorded as [CVE-2018-19296](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2018-19296). See [this article](https://knasmueller.net/5-answers-about-php-phar-exploitation) for more info on this type of vulnerability. Mitigated by blocking the use of paths containing URL-protocol style prefixes such as `phar://`. Reported by Sehun Oh of cyberone.kr.
PHPMailer versions prior to 5.2.24 (released July 26th 2017) have an XSS vulnerability in one of the code examples, [CVE-2017-11503](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2017-11503). The `code_generator.phps` example did not filter user input prior to output. This file is distributed with a `.phps` extension, so it it not normally executable unless it is explicitly renamed, and the file is not included when PHPMailer is loaded through composer, so it is safe by default. There was also an undisclosed potential XSS vulnerability in the default exception handler (unused by default). Patches for both issues kindly provided by Patrick Monnerat of the Fedora Project. PHPMailer versions prior to 5.2.24 (released July 26th 2017) have an XSS vulnerability in one of the code examples, [CVE-2017-11503](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2017-11503). The `code_generator.phps` example did not filter user input prior to output. This file is distributed with a `.phps` extension, so it it not normally executable unless it is explicitly renamed, and the file is not included when PHPMailer is loaded through composer, so it is safe by default. There was also an undisclosed potential XSS vulnerability in the default exception handler (unused by default). Patches for both issues kindly provided by Patrick Monnerat of the Fedora Project.

View File

@ -1 +1 @@
6.1.5 6.1.6

View File

@ -19,6 +19,12 @@
"name": "Brent R. Matzelle" "name": "Brent R. Matzelle"
} }
], ],
"funding": [
{
"url": "https://github.com/synchro",
"type": "github"
}
],
"require": { "require": {
"php": ">=5.5.0", "php": ">=5.5.0",
"ext-ctype": "*", "ext-ctype": "*",

View File

@ -745,7 +745,7 @@ class PHPMailer
* *
* @var string * @var string
*/ */
const VERSION = '6.1.5'; const VERSION = '6.1.6';
/** /**
* Error severity: message only, continue processing. * Error severity: message only, continue processing.
@ -2086,6 +2086,7 @@ class PHPMailer
'se' => 'sv', 'se' => 'sv',
'rs' => 'sr', 'rs' => 'sr',
'tg' => 'tl', 'tg' => 'tl',
'am' => 'hy',
]; ];
if (isset($renamed_langcodes[$langcode])) { if (isset($renamed_langcodes[$langcode])) {
@ -2606,7 +2607,7 @@ class PHPMailer
$altBodyEncoding = static::ENCODING_QUOTED_PRINTABLE; $altBodyEncoding = static::ENCODING_QUOTED_PRINTABLE;
} }
//Use this as a preamble in all multipart message types //Use this as a preamble in all multipart message types
$mimepre = 'This is a multi-part message in MIME format.' . static::$LE . static::$LE; $mimepre = 'This is a multi-part message in MIME format.' . static::$LE . static::$LE;
switch ($this->message_type) { switch ($this->message_type) {
case 'inline': case 'inline':
$body .= $mimepre; $body .= $mimepre;
@ -3063,9 +3064,9 @@ class PHPMailer
//Only include a filename property if we have one //Only include a filename property if we have one
if (!empty($name)) { if (!empty($name)) {
$mime[] = sprintf( $mime[] = sprintf(
'Content-Type: %s; name="%s"%s', 'Content-Type: %s; name=%s%s',
$type, $type,
$this->encodeHeader($this->secureHeader($name)), static::quotedString($this->encodeHeader($this->secureHeader($name))),
static::$LE static::$LE
); );
} else { } else {
@ -3085,24 +3086,14 @@ class PHPMailer
$mime[] = 'Content-ID: <' . $this->encodeHeader($this->secureHeader($cid)) . '>' . static::$LE; $mime[] = 'Content-ID: <' . $this->encodeHeader($this->secureHeader($cid)) . '>' . static::$LE;
} }
// If a filename contains any of these chars, it should be quoted, // Allow for bypassing the Content-Disposition header
// but not otherwise: RFC2183 & RFC2045 5.1
// Fixes a warning in IETF's msglint MIME checker
// Allow for bypassing the Content-Disposition header totally
if (!empty($disposition)) { if (!empty($disposition)) {
$encoded_name = $this->encodeHeader($this->secureHeader($name)); $encoded_name = $this->encodeHeader($this->secureHeader($name));
if (preg_match('/[ ()<>@,;:"\/\[\]?=]/', $encoded_name)) { if (!empty($encoded_name)) {
$mime[] = sprintf(
'Content-Disposition: %s; filename="%s"%s',
$disposition,
$encoded_name,
static::$LE . static::$LE
);
} elseif (!empty($encoded_name)) {
$mime[] = sprintf( $mime[] = sprintf(
'Content-Disposition: %s; filename=%s%s', 'Content-Disposition: %s; filename=%s%s',
$disposition, $disposition,
$encoded_name, static::quotedString($encoded_name),
static::$LE . static::$LE static::$LE . static::$LE
); );
} else { } else {
@ -3162,6 +3153,7 @@ class PHPMailer
if ($this->exceptions) { if ($this->exceptions) {
throw $exc; throw $exc;
} }
return ''; return '';
} }
} }
@ -4726,6 +4718,28 @@ class PHPMailer
return (bool) preg_match('/^(.{' . (self::MAX_LINE_LENGTH + strlen(static::$LE)) . ',})/m', $str); return (bool) preg_match('/^(.{' . (self::MAX_LINE_LENGTH + strlen(static::$LE)) . ',})/m', $str);
} }
/**
* If a string contains any "special" characters, double-quote the name,
* and escape any double quotes with a backslash.
*
* @param string $str
*
* @return string
*
* @see RFC822 3.4.1
*/
public static function quotedString($str)
{
if (preg_match('/[ ()<>@,;:"\/\[\]?=]/', $str)) {
//If the string contains any of these chars, it must be double-quoted
//and any double quotes must be escaped with a backslash
return '"' . str_replace('"', '\\"', $str) . '"';
}
//Return the string untouched, it doesn't need quoting
return $str;
}
/** /**
* Allows for public read access to 'to' property. * Allows for public read access to 'to' property.
* Before the send() call, queued addresses (i.e. with IDN) are not yet included. * Before the send() call, queued addresses (i.e. with IDN) are not yet included.

View File

@ -45,7 +45,7 @@ class POP3
* *
* @var string * @var string
*/ */
const VERSION = '6.1.5'; const VERSION = '6.1.6';
/** /**
* Default POP3 port number. * Default POP3 port number.

View File

@ -34,7 +34,7 @@ class SMTP
* *
* @var string * @var string
*/ */
const VERSION = '6.1.5'; const VERSION = '6.1.6';
/** /**
* SMTP line break constant. * SMTP line break constant.
@ -1168,7 +1168,7 @@ class SMTP
//Must pass vars in here as params are by reference //Must pass vars in here as params are by reference
if (!stream_select($selR, $selW, $selW, $this->Timelimit)) { if (!stream_select($selR, $selW, $selW, $this->Timelimit)) {
$this->edebug( $this->edebug(
'SMTP -> get_lines(): timed-out (' . $this->Timeout . ' sec)', 'SMTP -> get_lines(): select timed-out in (' . $this->Timelimit . ' sec)',
self::DEBUG_LOWLEVEL self::DEBUG_LOWLEVEL
); );
break; break;
@ -1187,7 +1187,7 @@ class SMTP
$info = stream_get_meta_data($this->smtp_conn); $info = stream_get_meta_data($this->smtp_conn);
if ($info['timed_out']) { if ($info['timed_out']) {
$this->edebug( $this->edebug(
'SMTP -> get_lines(): timed-out (' . $this->Timeout . ' sec)', 'SMTP -> get_lines(): stream timed-out (' . $this->Timeout . ' sec)',
self::DEBUG_LOWLEVEL self::DEBUG_LOWLEVEL
); );
break; break;

View File

@ -6,7 +6,7 @@
* **category** Library * **category** Library
* **author** Nicola Asuni <info@tecnick.com> * **author** Nicola Asuni <info@tecnick.com>
* **copyright** 2002-2018 Nicola Asuni - Tecnick.com LTD * **copyright** 2002-2020 Nicola Asuni - Tecnick.com LTD
* **license** http://www.gnu.org/copyleft/lesser.html GNU-LGPL v3 (see LICENSE.TXT) * **license** http://www.gnu.org/copyleft/lesser.html GNU-LGPL v3 (see LICENSE.TXT)
* **link** http://www.tcpdf.org * **link** http://www.tcpdf.org
* **source** https://github.com/tecnickcom/TCPDF * **source** https://github.com/tecnickcom/TCPDF

1
lam/lib/3rdParty/tcpdf/VERSION vendored Normal file
View File

@ -0,0 +1 @@
6.3.5

View File

@ -1,6 +1,6 @@
{ {
"name": "tecnickcom/tcpdf", "name": "tecnickcom/tcpdf",
"version": "6.2.26", "version": "6.3.5",
"homepage": "http://www.tcpdf.org/", "homepage": "http://www.tcpdf.org/",
"type": "library", "type": "library",
"description": "TCPDF is a PHP class for generating PDF documents and barcodes.", "description": "TCPDF is a PHP class for generating PDF documents and barcodes.",
@ -13,7 +13,7 @@
"pdf417", "pdf417",
"barcodes" "barcodes"
], ],
"license": "LGPL-3.0", "license": "LGPL-3.0-only",
"authors": [ "authors": [
{ {
"name": "Nicola Asuni", "name": "Nicola Asuni",

View File

@ -63,7 +63,7 @@
* Default images directory. * Default images directory.
* By default it is automatically set but you can also set it as a fixed string to improve performances. * By default it is automatically set but you can also set it as a fixed string to improve performances.
*/ */
define ('K_PATH_IMAGES', ''); //define ('K_PATH_IMAGES', '');
/** /**
* Deafult image logo used be the default Header() method. * Deafult image logo used be the default Header() method.

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -629,7 +629,7 @@ class Datamatrix {
if ($numch[ENC_C40] == $numch[ENC_X12]) { if ($numch[ENC_C40] == $numch[ENC_X12]) {
$k = ($pos + $charscount + 1); $k = ($pos + $charscount + 1);
while ($k < $data_length) { while ($k < $data_length) {
$tmpchr = ord($data{$k}); $tmpchr = ord($data[$k]);
if ($this->isCharMode($tmpchr, ENC_X12)) { if ($this->isCharMode($tmpchr, ENC_X12)) {
return ENC_X12; return ENC_X12;
} elseif (!($this->isCharMode($tmpchr, ENC_X12) OR $this->isCharMode($tmpchr, ENC_C40))) { } elseif (!($this->isCharMode($tmpchr, ENC_X12) OR $this->isCharMode($tmpchr, ENC_C40))) {

View File

@ -878,7 +878,7 @@ class PDF417 {
$txtarr = array(); // array of characters and sub-mode switching characters $txtarr = array(); // array of characters and sub-mode switching characters
$codelen = strlen($code); $codelen = strlen($code);
for ($i = 0; $i < $codelen; ++$i) { for ($i = 0; $i < $codelen; ++$i) {
$chval = ord($code{$i}); $chval = ord($code[$i]);
if (($k = array_search($chval, $this->textsubmodes[$submode])) !== false) { if (($k = array_search($chval, $this->textsubmodes[$submode])) !== false) {
// we are on the same sub-mode // we are on the same sub-mode
$txtarr[] = $k; $txtarr[] = $k;
@ -888,7 +888,7 @@ class PDF417 {
// search new sub-mode // search new sub-mode
if (($s != $submode) AND (($k = array_search($chval, $this->textsubmodes[$s])) !== false)) { if (($s != $submode) AND (($k = array_search($chval, $this->textsubmodes[$s])) !== false)) {
// $s is the new submode // $s is the new submode
if (((($i + 1) == $codelen) OR ((($i + 1) < $codelen) AND (array_search(ord($code{($i + 1)}), $this->textsubmodes[$submode]) !== false))) AND (($s == 3) OR (($s == 0) AND ($submode == 1)))) { if (((($i + 1) == $codelen) OR ((($i + 1) < $codelen) AND (array_search(ord($code[($i + 1)]), $this->textsubmodes[$submode]) !== false))) AND (($s == 3) OR (($s == 0) AND ($submode == 1)))) {
// shift (temporary change only for this char) // shift (temporary change only for this char)
if ($s == 3) { if ($s == 3) {
// shift to puntuaction // shift to puntuaction
@ -952,7 +952,7 @@ class PDF417 {
$cw = array_merge($cw, $cw6); $cw = array_merge($cw, $cw6);
} else { } else {
for ($i = 0; $i < $sublen; ++$i) { for ($i = 0; $i < $sublen; ++$i) {
$cw[] = ord($code{$i}); $cw[] = ord($code[$i]);
} }
} }
$code = $rest; $code = $rest;

View File

@ -1686,7 +1686,7 @@ class QRcode {
/** /**
* Append data to an input object. * Append data to an input object.
* The data is copied and appended to the input object. * The data is copied and appended to the input object.
* @param $items (array) input items * @param $items (arrray) input items
* @param $mode (int) encoding mode. * @param $mode (int) encoding mode.
* @param $size (int) size of data (byte). * @param $size (int) size of data (byte).
* @param $data (array) array of input data. * @param $data (array) array of input data.

BIN
lam/lib/3rdParty/tcpdf/include/sRGB.icc vendored Normal file

Binary file not shown.

View File

@ -358,7 +358,7 @@ class TCPDF_COLORS {
$color_code = self::$webcolor[$color]; $color_code = self::$webcolor[$color];
} else { } else {
// spot color // spot color
$returncolor = self::getSpotColor($color, $spotc); $returncolor = self::getSpotColor($hcolor, $spotc);
if ($returncolor === false) { if ($returncolor === false) {
$returncolor = $defcol; $returncolor = $defcol;
} }

View File

@ -279,7 +279,7 @@ class TCPDF_FILTERS {
// convert string to binary string // convert string to binary string
$bitstring = ''; $bitstring = '';
for ($i = 0; $i < $data_length; ++$i) { for ($i = 0; $i < $data_length; ++$i) {
$bitstring .= sprintf('%08b', ord($data{$i})); $bitstring .= sprintf('%08b', ord($data[$i]));
} }
// get the number of bits // get the number of bits
$data_length = strlen($bitstring); $data_length = strlen($bitstring);
@ -376,7 +376,7 @@ class TCPDF_FILTERS {
$i = 0; $i = 0;
while($i < $data_length) { while($i < $data_length) {
// get current byte value // get current byte value
$byte = ord($data{$i}); $byte = ord($data[$i]);
if ($byte == 128) { if ($byte == 128) {
// a length value of 128 denote EOD // a length value of 128 denote EOD
break; break;
@ -389,7 +389,7 @@ class TCPDF_FILTERS {
} else { } else {
// if length is in the range 129 to 255, // if length is in the range 129 to 255,
// the following single byte shall be copied 257 - length (2 to 128) times during decompression // the following single byte shall be copied 257 - length (2 to 128) times during decompression
$decoded .= str_repeat($data{($i + 1)}, (257 - $byte)); $decoded .= str_repeat($data[($i + 1)], (257 - $byte));
// move to next block // move to next block
$i += 2; $i += 2;
} }

View File

@ -1664,6 +1664,7 @@ class TCPDF_FONTS {
* @public static * @public static
*/ */
public static function unichr($c, $unicode=true) { public static function unichr($c, $unicode=true) {
$c = intval($c);
if (!$unicode) { if (!$unicode) {
return chr($c); return chr($c);
} elseif ($c <= 0x7F) { } elseif ($c <= 0x7F) {

View File

@ -311,7 +311,7 @@ class TCPDF_IMAGES {
if ($n > 0) { if ($n > 0) {
$trns = array(); $trns = array();
for ($i = 0; $i < $n; ++ $i) { for ($i = 0; $i < $n; ++ $i) {
$trns[] = ord($t{$i}); $trns[] = ord($t[$i]);
} }
} }
} }

View File

@ -1,9 +1,9 @@
<?php <?php
//============================================================+ //============================================================+
// File name : tcpdf_static.php // File name : tcpdf_static.php
// Version : 1.1.3 // Version : 1.1.4
// Begin : 2002-08-03 // Begin : 2002-08-03
// Last Update : 2015-04-28 // Last Update : 2019-11-01
// Author : Nicola Asuni - Tecnick.com LTD - www.tecnick.com - info@tecnick.com // Author : Nicola Asuni - Tecnick.com LTD - www.tecnick.com - info@tecnick.com
// License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html) // License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html)
// ------------------------------------------------------------------- // -------------------------------------------------------------------
@ -55,7 +55,7 @@ class TCPDF_STATIC {
* Current TCPDF version. * Current TCPDF version.
* @private static * @private static
*/ */
private static $tcpdf_version = '6.2.26'; private static $tcpdf_version = '6.3.5';
/** /**
* String alias for total number of pages. * String alias for total number of pages.
@ -1829,6 +1829,8 @@ class TCPDF_STATIC {
*/ */
public static function url_exists($url) { public static function url_exists($url) {
$crs = curl_init(); $crs = curl_init();
// encode query params in URL to get right response form the server
$url = self::encodeUrlQuery($url);
curl_setopt($crs, CURLOPT_URL, $url); curl_setopt($crs, CURLOPT_URL, $url);
curl_setopt($crs, CURLOPT_NOBODY, true); curl_setopt($crs, CURLOPT_NOBODY, true);
curl_setopt($crs, CURLOPT_FAILONERROR, true); curl_setopt($crs, CURLOPT_FAILONERROR, true);
@ -1846,6 +1848,26 @@ class TCPDF_STATIC {
return ($code == 200); return ($code == 200);
} }
/**
* Encode query params in URL
*
* @param string $url
* @return string
* @since 6.3.3 (2019-11-01)
* @public static
*/
public static function encodeUrlQuery($url) {
$urlData = parse_url($url);
if (isset($urlData['query']) && $urlData['query']) {
$urlQueryData = [];
parse_str(urldecode($urlData['query']), $urlQueryData);
$updatedUrl = $urlData['scheme'] . '://' . $urlData['host'] . $urlData['path'] . '?' . http_build_query($urlQueryData);
} else {
$updatedUrl = $url;
}
return $updatedUrl;
}
/** /**
* Wrapper for file_exists. * Wrapper for file_exists.
* Checks whether a file or directory exists. * Checks whether a file or directory exists.
@ -1926,10 +1948,10 @@ class TCPDF_STATIC {
$alt = array_unique($alt); $alt = array_unique($alt);
foreach ($alt as $path) { foreach ($alt as $path) {
if (!self::file_exists($path)) { if (!self::file_exists($path)) {
return false; continue;
} }
$ret = @file_get_contents($path); $ret = @file_get_contents($path);
if ($ret !== false) { if ( $ret != false ) {
return $ret; return $ret;
} }
// try to use CURL for URLs // try to use CURL for URLs

View File

@ -1,13 +1,13 @@
<?php <?php
//============================================================+ //============================================================+
// File name : tcpdf.php // File name : tcpdf.php
// Version : 6.2.26 // Version : 6.3.2
// Begin : 2002-08-03 // Begin : 2002-08-03
// Last Update : 2018-09-14 // Last Update : 2019-09-20
// Author : Nicola Asuni - Tecnick.com LTD - www.tecnick.com - info@tecnick.com // Author : Nicola Asuni - Tecnick.com LTD - www.tecnick.com - info@tecnick.com
// License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html) // License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html)
// ------------------------------------------------------------------- // -------------------------------------------------------------------
// Copyright (C) 2002-2018 Nicola Asuni - Tecnick.com LTD // Copyright (C) 2002-2019 Nicola Asuni - Tecnick.com LTD
// //
// This file is part of TCPDF software library. // This file is part of TCPDF software library.
// //
@ -45,7 +45,7 @@
// * font subsetting; // * font subsetting;
// * methods to publish some XHTML + CSS code, Javascript and Forms; // * methods to publish some XHTML + CSS code, Javascript and Forms;
// * images, graphic (geometric figures) and transformation methods; // * images, graphic (geometric figures) and transformation methods;
// * supports JPEG, PNG and SVG images natively, all images supported by GD (GD, GD2, GD2PART, GIF, JPEG, PNG, BMP, XBM, XPM) and all images supported via ImagMagick (http://www.imagemagick.org/www/formats.html) // * supports JPEG, PNG and SVG images natively, all images supported by GD (GD, GD2, GD2PART, GIF, JPEG, PNG, BMP, XBM, XPM) and all images supported via ImageMagick (http://www.imagemagick.org/www/formats.html)
// * 1D and 2D barcodes: CODE 39, ANSI MH10.8M-1983, USD-3, 3 of 9, CODE 93, USS-93, Standard 2 of 5, Interleaved 2 of 5, CODE 128 A/B/C, 2 and 5 Digits UPC-Based Extension, EAN 8, EAN 13, UPC-A, UPC-E, MSI, POSTNET, PLANET, RMS4CC (Royal Mail 4-state Customer Code), CBC (Customer Bar Code), KIX (Klant index - Customer index), Intelligent Mail Barcode, Onecode, USPS-B-3200, CODABAR, CODE 11, PHARMACODE, PHARMACODE TWO-TRACKS, Datamatrix, QR-Code, PDF417; // * 1D and 2D barcodes: CODE 39, ANSI MH10.8M-1983, USD-3, 3 of 9, CODE 93, USS-93, Standard 2 of 5, Interleaved 2 of 5, CODE 128 A/B/C, 2 and 5 Digits UPC-Based Extension, EAN 8, EAN 13, UPC-A, UPC-E, MSI, POSTNET, PLANET, RMS4CC (Royal Mail 4-state Customer Code), CBC (Customer Bar Code), KIX (Klant index - Customer index), Intelligent Mail Barcode, Onecode, USPS-B-3200, CODABAR, CODE 11, PHARMACODE, PHARMACODE TWO-TRACKS, Datamatrix, QR-Code, PDF417;
// * JPEG and PNG ICC profiles, Grayscale, RGB, CMYK, Spot Colors and Transparencies; // * JPEG and PNG ICC profiles, Grayscale, RGB, CMYK, Spot Colors and Transparencies;
// * automatic page header and footer management; // * automatic page header and footer management;
@ -80,7 +80,7 @@
* <li>font subsetting;</li> * <li>font subsetting;</li>
* <li>methods to publish some XHTML + CSS code, Javascript and Forms;</li> * <li>methods to publish some XHTML + CSS code, Javascript and Forms;</li>
* <li>images, graphic (geometric figures) and transformation methods; * <li>images, graphic (geometric figures) and transformation methods;
* <li>supports JPEG, PNG and SVG images natively, all images supported by GD (GD, GD2, GD2PART, GIF, JPEG, PNG, BMP, XBM, XPM) and all images supported via ImagMagick (http://www.imagemagick.org/www/formats.html)</li> * <li>supports JPEG, PNG and SVG images natively, all images supported by GD (GD, GD2, GD2PART, GIF, JPEG, PNG, BMP, XBM, XPM) and all images supported via ImageMagick (http://www.imagemagick.org/www/formats.html)</li>
* <li>1D and 2D barcodes: CODE 39, ANSI MH10.8M-1983, USD-3, 3 of 9, CODE 93, USS-93, Standard 2 of 5, Interleaved 2 of 5, CODE 128 A/B/C, 2 and 5 Digits UPC-Based Extension, EAN 8, EAN 13, UPC-A, UPC-E, MSI, POSTNET, PLANET, RMS4CC (Royal Mail 4-state Customer Code), CBC (Customer Bar Code), KIX (Klant index - Customer index), Intelligent Mail Barcode, Onecode, USPS-B-3200, CODABAR, CODE 11, PHARMACODE, PHARMACODE TWO-TRACKS, Datamatrix, QR-Code, PDF417;</li> * <li>1D and 2D barcodes: CODE 39, ANSI MH10.8M-1983, USD-3, 3 of 9, CODE 93, USS-93, Standard 2 of 5, Interleaved 2 of 5, CODE 128 A/B/C, 2 and 5 Digits UPC-Based Extension, EAN 8, EAN 13, UPC-A, UPC-E, MSI, POSTNET, PLANET, RMS4CC (Royal Mail 4-state Customer Code), CBC (Customer Bar Code), KIX (Klant index - Customer index), Intelligent Mail Barcode, Onecode, USPS-B-3200, CODABAR, CODE 11, PHARMACODE, PHARMACODE TWO-TRACKS, Datamatrix, QR-Code, PDF417;</li>
* <li>JPEG and PNG ICC profiles, Grayscale, RGB, CMYK, Spot Colors and Transparencies;</li> * <li>JPEG and PNG ICC profiles, Grayscale, RGB, CMYK, Spot Colors and Transparencies;</li>
* <li>automatic page header and footer management;</li> * <li>automatic page header and footer management;</li>
@ -104,7 +104,7 @@
* Tools to encode your unicode fonts are on fonts/utils directory.</p> * Tools to encode your unicode fonts are on fonts/utils directory.</p>
* @package com.tecnick.tcpdf * @package com.tecnick.tcpdf
* @author Nicola Asuni * @author Nicola Asuni
* @version 6.2.26 * @version 6.3.2
*/ */
// TCPDF configuration // TCPDF configuration
@ -128,7 +128,7 @@ require_once(dirname(__FILE__).'/include/tcpdf_static.php');
* TCPDF project (http://www.tcpdf.org) has been originally derived in 2002 from the Public Domain FPDF class by Olivier Plathey (http://www.fpdf.org), but now is almost entirely rewritten.<br> * TCPDF project (http://www.tcpdf.org) has been originally derived in 2002 from the Public Domain FPDF class by Olivier Plathey (http://www.fpdf.org), but now is almost entirely rewritten.<br>
* @package com.tecnick.tcpdf * @package com.tecnick.tcpdf
* @brief PHP class for generating PDF documents without requiring external extensions. * @brief PHP class for generating PDF documents without requiring external extensions.
* @version 6.2.26 * @version 6.3.2
* @author Nicola Asuni - info@tecnick.com * @author Nicola Asuni - info@tecnick.com
* @IgnoreAnnotation("protected") * @IgnoreAnnotation("protected")
* @IgnoreAnnotation("public") * @IgnoreAnnotation("public")
@ -1760,6 +1760,13 @@ class TCPDF {
*/ */
protected $pdfa_mode = false; protected $pdfa_mode = false;
/**
* version of PDF/A mode (1 - 3).
* @protected
* @since 6.2.26 (2019-03-12)
*/
protected $pdfa_version = 1;
/** /**
* Document creation date-time * Document creation date-time
* @protected * @protected
@ -1781,6 +1788,13 @@ class TCPDF {
*/ */
protected $custom_xmp = ''; protected $custom_xmp = '';
/**
* Custom XMP RDF data.
* @protected
* @since 6.3.0 (2019-09-19)
*/
protected $custom_xmp_rdf = '';
/** /**
* Overprint mode array. * Overprint mode array.
* (Check the "Entries in a Graphics State Parameter Dictionary" on PDF 32000-1:2008). * (Check the "Entries in a Graphics State Parameter Dictionary" on PDF 32000-1:2008).
@ -1834,7 +1848,7 @@ class TCPDF {
* @param $unicode (boolean) TRUE means that the input text is unicode (default = true) * @param $unicode (boolean) TRUE means that the input text is unicode (default = true)
* @param $encoding (string) Charset encoding (used only when converting back html entities); default is UTF-8. * @param $encoding (string) Charset encoding (used only when converting back html entities); default is UTF-8.
* @param $diskcache (boolean) DEPRECATED FEATURE * @param $diskcache (boolean) DEPRECATED FEATURE
* @param $pdfa (boolean) If TRUE set the document to PDF/A mode. * @param $pdfa (integer) If not false, set the document to PDF/A mode and the good version (1 or 3).
* @public * @public
* @see getPageSizeFromFormat(), setPageFormat() * @see getPageSizeFromFormat(), setPageFormat()
*/ */
@ -1850,8 +1864,14 @@ class TCPDF {
$this->font_obj_ids = array(); $this->font_obj_ids = array();
$this->page_obj_id = array(); $this->page_obj_id = array();
$this->form_obj_id = array(); $this->form_obj_id = array();
// set pdf/a mode // set pdf/a mode
$this->pdfa_mode = $pdfa; if ($pdfa != false) {
$this->pdfa_mode = true;
$this->pdfa_version = $pdfa; // 1 or 3
} else
$this->pdfa_mode = false;
$this->force_srgb = false; $this->force_srgb = false;
// set language direction // set language direction
$this->rtl = false; $this->rtl = false;
@ -1960,7 +1980,7 @@ class TCPDF {
// set default JPEG quality // set default JPEG quality
$this->jpeg_quality = 75; $this->jpeg_quality = 75;
// initialize some settings // initialize some settings
TCPDF_FONTS::utf8Bidi(array(''), '', false, $this->isunicode, $this->CurrentFont); TCPDF_FONTS::utf8Bidi(array(), '', false, $this->isunicode, $this->CurrentFont);
// set default font // set default font
$this->SetFont($this->FontFamily, $this->FontStyle, $this->FontSizePt); $this->SetFont($this->FontFamily, $this->FontStyle, $this->FontSizePt);
$this->setHeaderFont(array($this->FontFamily, $this->FontStyle, $this->FontSizePt)); $this->setHeaderFont(array($this->FontFamily, $this->FontStyle, $this->FontSizePt));
@ -1986,6 +2006,7 @@ class TCPDF {
$this->default_graphic_vars = $this->getGraphicVars(); $this->default_graphic_vars = $this->getGraphicVars();
$this->header_xobj_autoreset = false; $this->header_xobj_autoreset = false;
$this->custom_xmp = ''; $this->custom_xmp = '';
$this->custom_xmp_rdf = '';
// Call cleanup method after script execution finishes or exit() is called. // Call cleanup method after script execution finishes or exit() is called.
// NOTE: This will not be executed if the process is killed with a SIGTERM or SIGKILL signal. // NOTE: This will not be executed if the process is killed with a SIGTERM or SIGKILL signal.
register_shutdown_function(array($this, '_destroy'), true); register_shutdown_function(array($this, '_destroy'), true);
@ -2828,10 +2849,13 @@ class TCPDF {
* @since 1.4 * @since 1.4
*/ */
public function SetCompression($compress=true) { public function SetCompression($compress=true) {
$this->compress = false;
if (function_exists('gzcompress')) { if (function_exists('gzcompress')) {
$this->compress = $compress ? true : false; if ($compress) {
} else { if ( !$this->pdfa_mode) {
$this->compress = false; $this->compress = true;
}
}
} }
} }
@ -4691,14 +4715,14 @@ class TCPDF {
* Defines the page and position a link points to. * Defines the page and position a link points to.
* @param $link (int) The link identifier returned by AddLink() * @param $link (int) The link identifier returned by AddLink()
* @param $y (float) Ordinate of target position; -1 indicates the current position. The default value is 0 (top of page) * @param $y (float) Ordinate of target position; -1 indicates the current position. The default value is 0 (top of page)
* @param $page (int) Number of target page; -1 indicates the current page (default value). If you prefix a page number with the * character, then this page will not be changed when adding/deleting/moving pages. * @param $page (int|string) Number of target page; -1 indicates the current page (default value). If you prefix a page number with the * character, then this page will not be changed when adding/deleting/moving pages.
* @public * @public
* @since 1.5 * @since 1.5
* @see AddLink() * @see AddLink()
*/ */
public function SetLink($link, $y=0, $page=-1) { public function SetLink($link, $y=0, $page=-1) {
$fixed = false; $fixed = false;
if (!empty($page) AND ($page[0] == '*')) { if (!empty($page) AND (substr($page, 0, 1) == '*')) {
$page = intval(substr($page, 1)); $page = intval(substr($page, 1));
// this page number will not be changed when moving/add/deleting pages // this page number will not be changed when moving/add/deleting pages
$fixed = true; $fixed = true;
@ -4807,7 +4831,7 @@ class TCPDF {
$this->PageAnnots[$page] = array(); $this->PageAnnots[$page] = array();
} }
$this->PageAnnots[$page][] = array('n' => ++$this->n, 'x' => $x, 'y' => $y, 'w' => $w, 'h' => $h, 'txt' => $text, 'opt' => $opt, 'numspaces' => $spaces); $this->PageAnnots[$page][] = array('n' => ++$this->n, 'x' => $x, 'y' => $y, 'w' => $w, 'h' => $h, 'txt' => $text, 'opt' => $opt, 'numspaces' => $spaces);
if (!$this->pdfa_mode) { if (!$this->pdfa_mode || ($this->pdfa_mode && $this->pdfa_version == 3)) {
if ((($opt['Subtype'] == 'FileAttachment') OR ($opt['Subtype'] == 'Sound')) AND (!TCPDF_STATIC::empty_string($opt['FS'])) if ((($opt['Subtype'] == 'FileAttachment') OR ($opt['Subtype'] == 'Sound')) AND (!TCPDF_STATIC::empty_string($opt['FS']))
AND (@TCPDF_STATIC::file_exists($opt['FS']) OR TCPDF_STATIC::isValidURL($opt['FS'])) AND (@TCPDF_STATIC::file_exists($opt['FS']) OR TCPDF_STATIC::isValidURL($opt['FS']))
AND (!isset($this->embeddedfiles[basename($opt['FS'])]))) { AND (!isset($this->embeddedfiles[basename($opt['FS'])]))) {
@ -4833,8 +4857,8 @@ class TCPDF {
* @see Annotation() * @see Annotation()
*/ */
protected function _putEmbeddedFiles() { protected function _putEmbeddedFiles() {
if ($this->pdfa_mode) { if ($this->pdfa_mode && $this->pdfa_version != 3) {
// embedded files are not allowed in PDF/A mode // embedded files are not allowed in PDF/A mode version 1 and 2
return; return;
} }
reset($this->embeddedfiles); reset($this->embeddedfiles);
@ -4847,7 +4871,10 @@ class TCPDF {
$this->efnames[$filename] = $filedata['f'].' 0 R'; $this->efnames[$filename] = $filedata['f'].' 0 R';
// embedded file specification object // embedded file specification object
$out = $this->_getobj($filedata['f'])."\n"; $out = $this->_getobj($filedata['f'])."\n";
$out .= '<</Type /Filespec /F '.$this->_datastring($filename, $filedata['f']).' /EF <</F '.$filedata['n'].' 0 R>> >>'; $out .= '<</Type /Filespec /F '.$this->_datastring($filename, $filedata['f']);
$out .= ' /UF '.$this->_datastring($filename, $filedata['f']);
$out .= ' /AFRelationship /Source';
$out .= ' /EF <</F '.$filedata['n'].' 0 R>> >>';
$out .= "\n".'endobj'; $out .= "\n".'endobj';
$this->_out($out); $this->_out($out);
// embedded file object // embedded file object
@ -4856,6 +4883,11 @@ class TCPDF {
$data = gzcompress($data); $data = gzcompress($data);
$filter = ' /Filter /FlateDecode'; $filter = ' /Filter /FlateDecode';
} }
if ($this->pdfa_version == 3) {
$filter = ' /Subtype /text#2Fxml';
}
$stream = $this->_getrawstream($data, $filedata['n']); $stream = $this->_getrawstream($data, $filedata['n']);
$out = $this->_getobj($filedata['n'])."\n"; $out = $this->_getobj($filedata['n'])."\n";
$out .= '<< /Type /EmbeddedFile'.$filter.' /Length '.strlen($stream).' /Params <</Size '.$rawsize.'>> >>'; $out .= '<< /Type /EmbeddedFile'.$filter.' /Length '.strlen($stream).' /Params <</Size '.$rawsize.'>> >>';
@ -6219,12 +6251,12 @@ class TCPDF {
* $this->setPage($page); * $this->setPage($page);
* if ($page == $start_page) { * if ($page == $start_page) {
* // first page * // first page
* $height = $this->h - $start_y - $this->bMargin; * $height += $this->h - $start_y - $this->bMargin;
* } elseif ($page == $end_page) { * } elseif ($page == $end_page) {
* // last page * // last page
* $height = $end_y - $this->tMargin; * $height += $end_y - $this->tMargin;
* } else { * } else {
* $height = $this->h - $this->tMargin - $this->bMargin; * $height += $this->h - $this->tMargin - $this->bMargin;
* } * }
* } * }
* } * }
@ -7133,31 +7165,20 @@ class TCPDF {
$info['i'] = $this->setImageBuffer($file, $info); $info['i'] = $this->setImageBuffer($file, $info);
} }
// set alignment // set alignment
$this->img_rb_x = $x + $w;
$this->img_rb_y = $y + $h; $this->img_rb_y = $y + $h;
// set alignment // set alignment
if ($this->rtl) { if ($palign == 'L') {
if ($palign == 'L') { $ximg = $this->lMargin;
$ximg = $this->lMargin; } elseif ($palign == 'C') {
} elseif ($palign == 'C') { $ximg = ($this->w + $this->lMargin - $this->rMargin - $w) / 2;
$ximg = ($this->w + $this->lMargin - $this->rMargin - $w) / 2; } elseif ($palign == 'R') {
} elseif ($palign == 'R') { $ximg = $this->w - $this->rMargin - $w;
$ximg = $this->w - $this->rMargin - $w;
} else {
$ximg = $x - $w;
}
$this->img_rb_x = $ximg;
} else { } else {
if ($palign == 'L') { $ximg = $x;
$ximg = $this->lMargin;
} elseif ($palign == 'C') {
$ximg = ($this->w + $this->lMargin - $this->rMargin - $w) / 2;
} elseif ($palign == 'R') {
$ximg = $this->w - $this->rMargin - $w;
} else {
$ximg = $x;
}
$this->img_rb_x = $ximg + $w;
} }
if ($ismask OR $hidden) { if ($ismask OR $hidden) {
// image is not displayed // image is not displayed
return $info['i']; return $info['i'];
@ -7737,6 +7758,7 @@ class TCPDF {
return ''; return '';
} }
protected static $cleaned_ids = array();
/** /**
* Unset all class variables except the following critical variables. * Unset all class variables except the following critical variables.
* @param $destroyall (boolean) if true destroys all class variables, otherwise preserves critical variables. * @param $destroyall (boolean) if true destroys all class variables, otherwise preserves critical variables.
@ -7749,11 +7771,26 @@ class TCPDF {
if (isset($this->internal_encoding) AND !empty($this->internal_encoding)) { if (isset($this->internal_encoding) AND !empty($this->internal_encoding)) {
mb_internal_encoding($this->internal_encoding); mb_internal_encoding($this->internal_encoding);
} }
if (isset(self::$cleaned_ids[$this->file_id])) {
$destroyall = false;
}
if ($destroyall AND !$preserve_objcopy) { if ($destroyall AND !$preserve_objcopy) {
self::$cleaned_ids[$this->file_id] = true;
// remove all temporary files // remove all temporary files
$tmpfiles = glob(K_PATH_CACHE.'__tcpdf_'.$this->file_id.'_*'); if ($handle = @opendir(K_PATH_CACHE)) {
if (!empty($tmpfiles)) { while ( false !== ( $file_name = readdir( $handle ) ) ) {
array_map('unlink', $tmpfiles); if (strpos($file_name, '__tcpdf_'.$this->file_id.'_') === 0) {
unlink(K_PATH_CACHE.$file_name);
}
}
closedir($handle);
}
if (isset($this->imagekeys)) {
foreach($this->imagekeys as $file) {
if (strpos($file, K_PATH_CACHE) === 0) {
@unlink($file);
}
}
} }
} }
$preserve = array( $preserve = array(
@ -7763,6 +7800,7 @@ class TCPDF {
'bufferlen', 'bufferlen',
'buffer', 'buffer',
'cached_files', 'cached_files',
'imagekeys',
'sign', 'sign',
'signature_data', 'signature_data',
'signature_max_length', 'signature_max_length',
@ -8368,7 +8406,7 @@ class TCPDF {
if (is_string($pl['txt']) && !empty($pl['txt'])) { if (is_string($pl['txt']) && !empty($pl['txt'])) {
if ($pl['txt'][0] == '#') { if ($pl['txt'][0] == '#') {
// internal destination // internal destination
$annots .= ' /Dest /'.TCPDF_STATIC::encodeNameObject(substr($pl['txt'], 1)); $annots .= ' /A <</S /GoTo /D '.TCPDF_STATIC::encodeNameObject(substr($pl['txt'], 1)).'>>';
} elseif ($pl['txt'][0] == '%') { } elseif ($pl['txt'][0] == '%') {
// embedded PDF file // embedded PDF file
$filename = basename(substr($pl['txt'], 1)); $filename = basename(substr($pl['txt'], 1));
@ -8380,7 +8418,7 @@ class TCPDF {
$annots .= ' /A << /S /JavaScript /JS '.$this->_textstring($jsa, $annot_obj_id).'>>'; $annots .= ' /A << /S /JavaScript /JS '.$this->_textstring($jsa, $annot_obj_id).'>>';
} else { } else {
$parsedUrl = parse_url($pl['txt']); $parsedUrl = parse_url($pl['txt']);
if (empty($parsedUrl['scheme']) AND (strtolower(substr($parsedUrl['path'], -4)) == '.pdf')) { if (empty($parsedUrl['scheme']) AND (!empty($parsedUrl['path']) && strtolower(substr($parsedUrl['path'], -4)) == '.pdf')) {
// relative link to a PDF file // relative link to a PDF file
$dest = '[0 /Fit]'; // default page 0 $dest = '[0 /Fit]'; // default page 0
if (!empty($parsedUrl['fragment'])) { if (!empty($parsedUrl['fragment'])) {
@ -8487,8 +8525,8 @@ class TCPDF {
break; break;
} }
case 'fileattachment': { case 'fileattachment': {
if ($this->pdfa_mode) { if ($this->pdfa_mode && $this->pdfa_version != 3) {
// embedded files are not allowed in PDF/A mode // embedded files are not allowed in PDF/A mode version 1 and 2
break; break;
} }
if (!isset($pl['opt']['fs'])) { if (!isset($pl['opt']['fs'])) {
@ -9500,6 +9538,17 @@ class TCPDF {
$this->custom_xmp = $xmp; $this->custom_xmp = $xmp;
} }
/**
* Set additional XMP data to be added on the default XMP data just before the end of "rdf:RDF" tag.
* IMPORTANT: This data is added as-is without controls, so you have to validate your data before using this method!
* @param $xmp (string) Custom XMP RDF data.
* @since 6.3.0 (2019-09-19)
* @public
*/
public function setExtraXMPRDF($xmp) {
$this->custom_xmp_rdf = $xmp;
}
/** /**
* Put XMP data object and return ID. * Put XMP data object and return ID.
* @return (int) The object ID. * @return (int) The object ID.
@ -9569,7 +9618,7 @@ class TCPDF {
$xmp .= "\t\t".'</rdf:Description>'."\n"; $xmp .= "\t\t".'</rdf:Description>'."\n";
if ($this->pdfa_mode) { if ($this->pdfa_mode) {
$xmp .= "\t\t".'<rdf:Description rdf:about="" xmlns:pdfaid="http://www.aiim.org/pdfa/ns/id/">'."\n"; $xmp .= "\t\t".'<rdf:Description rdf:about="" xmlns:pdfaid="http://www.aiim.org/pdfa/ns/id/">'."\n";
$xmp .= "\t\t\t".'<pdfaid:part>1</pdfaid:part>'."\n"; $xmp .= "\t\t\t".'<pdfaid:part>'.$this->pdfa_version.'</pdfaid:part>'."\n";
$xmp .= "\t\t\t".'<pdfaid:conformance>B</pdfaid:conformance>'."\n"; $xmp .= "\t\t\t".'<pdfaid:conformance>B</pdfaid:conformance>'."\n";
$xmp .= "\t\t".'</rdf:Description>'."\n"; $xmp .= "\t\t".'</rdf:Description>'."\n";
} }
@ -9581,6 +9630,16 @@ class TCPDF {
$xmp .= "\t\t\t\t\t\t".'<pdfaSchema:namespaceURI>http://ns.adobe.com/pdf/1.3/</pdfaSchema:namespaceURI>'."\n"; $xmp .= "\t\t\t\t\t\t".'<pdfaSchema:namespaceURI>http://ns.adobe.com/pdf/1.3/</pdfaSchema:namespaceURI>'."\n";
$xmp .= "\t\t\t\t\t\t".'<pdfaSchema:prefix>pdf</pdfaSchema:prefix>'."\n"; $xmp .= "\t\t\t\t\t\t".'<pdfaSchema:prefix>pdf</pdfaSchema:prefix>'."\n";
$xmp .= "\t\t\t\t\t\t".'<pdfaSchema:schema>Adobe PDF Schema</pdfaSchema:schema>'."\n"; $xmp .= "\t\t\t\t\t\t".'<pdfaSchema:schema>Adobe PDF Schema</pdfaSchema:schema>'."\n";
$xmp .= "\t\t\t\t\t\t".'<pdfaSchema:property>'."\n";
$xmp .= "\t\t\t\t\t\t\t".'<rdf:Seq>'."\n";
$xmp .= "\t\t\t\t\t\t\t\t".'<rdf:li rdf:parseType="Resource">'."\n";
$xmp .= "\t\t\t\t\t\t\t\t\t".'<pdfaProperty:category>internal</pdfaProperty:category>'."\n";
$xmp .= "\t\t\t\t\t\t\t\t\t".'<pdfaProperty:description>Adobe PDF Schema</pdfaProperty:description>'."\n";
$xmp .= "\t\t\t\t\t\t\t\t\t".'<pdfaProperty:name>InstanceID</pdfaProperty:name>'."\n";
$xmp .= "\t\t\t\t\t\t\t\t\t".'<pdfaProperty:valueType>URI</pdfaProperty:valueType>'."\n";
$xmp .= "\t\t\t\t\t\t\t\t".'</rdf:li>'."\n";
$xmp .= "\t\t\t\t\t\t\t".'</rdf:Seq>'."\n";
$xmp .= "\t\t\t\t\t\t".'</pdfaSchema:property>'."\n";
$xmp .= "\t\t\t\t\t".'</rdf:li>'."\n"; $xmp .= "\t\t\t\t\t".'</rdf:li>'."\n";
$xmp .= "\t\t\t\t\t".'<rdf:li rdf:parseType="Resource">'."\n"; $xmp .= "\t\t\t\t\t".'<rdf:li rdf:parseType="Resource">'."\n";
$xmp .= "\t\t\t\t\t\t".'<pdfaSchema:namespaceURI>http://ns.adobe.com/xap/1.0/mm/</pdfaSchema:namespaceURI>'."\n"; $xmp .= "\t\t\t\t\t\t".'<pdfaSchema:namespaceURI>http://ns.adobe.com/xap/1.0/mm/</pdfaSchema:namespaceURI>'."\n";
@ -9627,6 +9686,7 @@ class TCPDF {
$xmp .= "\t\t\t\t".'</rdf:Bag>'."\n"; $xmp .= "\t\t\t\t".'</rdf:Bag>'."\n";
$xmp .= "\t\t\t".'</pdfaExtension:schemas>'."\n"; $xmp .= "\t\t\t".'</pdfaExtension:schemas>'."\n";
$xmp .= "\t\t".'</rdf:Description>'."\n"; $xmp .= "\t\t".'</rdf:Description>'."\n";
$xmp .= $this->custom_xmp_rdf;
$xmp .= "\t".'</rdf:RDF>'."\n"; $xmp .= "\t".'</rdf:RDF>'."\n";
$xmp .= $this->custom_xmp; $xmp .= $this->custom_xmp;
$xmp .= '</x:xmpmeta>'."\n"; $xmp .= '</x:xmpmeta>'."\n";
@ -12221,7 +12281,7 @@ class TCPDF {
$x = $this->w; $x = $this->w;
} }
$fixed = false; $fixed = false;
if (!empty($page) AND ($page[0] == '*')) { if (!empty($page) AND (substr($page, 0, 1) == '*')) {
$page = intval(substr($page, 1)); $page = intval(substr($page, 1));
// this page number will not be changed when moving/add/deleting pages // this page number will not be changed when moving/add/deleting pages
$fixed = true; $fixed = true;
@ -12324,7 +12384,8 @@ class TCPDF {
$x = $this->w; $x = $this->w;
} }
$fixed = false; $fixed = false;
if (!empty($page) AND ($page[0] == '*')) { $pageAsString = (string) $page;
if ($pageAsString && $pageAsString[0] == '*') {
$page = intval(substr($page, 1)); $page = intval(substr($page, 1));
// this page number will not be changed when moving/add/deleting pages // this page number will not be changed when moving/add/deleting pages
$fixed = true; $fixed = true;
@ -13988,7 +14049,7 @@ class TCPDF {
* @since 3.1.000 (2008-06-09) * @since 3.1.000 (2008-06-09)
*/ */
public function setPDFVersion($version='1.7') { public function setPDFVersion($version='1.7') {
if ($this->pdfa_mode) { if ($this->pdfa_mode && $this->pdfa_version == 1 ) {
// PDF/A mode // PDF/A mode
$this->PDFVersion = '1.4'; $this->PDFVersion = '1.4';
} else { } else {
@ -15502,8 +15563,7 @@ class TCPDF {
* <li>int $style['module_height'] height of a single module in points</li> * <li>int $style['module_height'] height of a single module in points</li>
* <li>array $style['fgcolor'] color array for bars and text</li> * <li>array $style['fgcolor'] color array for bars and text</li>
* <li>mixed $style['bgcolor'] color array for background or false for transparent</li> * <li>mixed $style['bgcolor'] color array for background or false for transparent</li>
* <li>string $style['position'] barcode position on the page: L = left margin; C = center; R = right margin; S = stretch</li><li>$style['module_width'] width of a single module in points</li> * <li>string $style['position'] barcode position on the page: L = left margin; C = center; R = right margin; S = stretch</li>
* <li>$style['module_height'] height of a single module in points</li></ul>
* @param $align (string) Indicates the alignment of the pointer next to barcode insertion relative to barcode height. The value can be:<ul><li>T: top-right for LTR or top-left for RTL</li><li>M: middle-right for LTR or middle-left for RTL</li><li>B: bottom-right for LTR or bottom-left for RTL</li><li>N: next line</li></ul> * @param $align (string) Indicates the alignment of the pointer next to barcode insertion relative to barcode height. The value can be:<ul><li>T: top-right for LTR or top-left for RTL</li><li>M: middle-right for LTR or middle-left for RTL</li><li>B: bottom-right for LTR or bottom-left for RTL</li><li>N: next line</li></ul>
* @param $distort (boolean) if true distort the barcode to fit width and height, otherwise preserve aspect ratio * @param $distort (boolean) if true distort the barcode to fit width and height, otherwise preserve aspect ratio
* @author Nicola Asuni * @author Nicola Asuni
@ -16897,10 +16957,10 @@ class TCPDF {
if (($dom[$key]['value'] == 'pre') OR ($dom[$key]['value'] == 'tt')) { if (($dom[$key]['value'] == 'pre') OR ($dom[$key]['value'] == 'tt')) {
$dom[$key]['fontname'] = $this->default_monospaced_font; $dom[$key]['fontname'] = $this->default_monospaced_font;
} }
if (!empty($dom[$key]['value']) AND ($dom[$key]['value'][0] == 'h') AND (intval($dom[$key]['value']{1}) > 0) AND (intval($dom[$key]['value']{1}) < 7)) { if (!empty($dom[$key]['value']) AND ($dom[$key]['value'][0] == 'h') AND (intval($dom[$key]['value'][1]) > 0) AND (intval($dom[$key]['value'][1]) < 7)) {
// headings h1, h2, h3, h4, h5, h6 // headings h1, h2, h3, h4, h5, h6
if (!isset($dom[$key]['attribute']['size']) AND !isset($dom[$key]['style']['font-size'])) { if (!isset($dom[$key]['attribute']['size']) AND !isset($dom[$key]['style']['font-size'])) {
$headsize = (4 - intval($dom[$key]['value']{1})) * 2; $headsize = (4 - intval($dom[$key]['value'][1])) * 2;
$dom[$key]['fontsize'] = $dom[0]['fontsize'] + $headsize; $dom[$key]['fontsize'] = $dom[0]['fontsize'] + $headsize;
} }
if (!isset($dom[$key]['style']['font-weight'])) { if (!isset($dom[$key]['style']['font-weight'])) {
@ -18686,7 +18746,7 @@ Putting 1 is equivalent to putting 0 and calling Ln() just after. Default value:
$hbz = 0; // distance from y to line bottom $hbz = 0; // distance from y to line bottom
$hb = 0; // vertical space between block tags $hb = 0; // vertical space between block tags
// calculate vertical space for block tags // calculate vertical space for block tags
if (isset($this->tagvspaces[$tag['value']][0]['h']) AND ($this->tagvspaces[$tag['value']][0]['h'] >= 0)) { if (isset($this->tagvspaces[$tag['value']][0]['h']) && !empty($this->tagvspaces[$tag['value']][0]['h']) && ($this->tagvspaces[$tag['value']][0]['h'] >= 0)) {
$cur_h = $this->tagvspaces[$tag['value']][0]['h']; $cur_h = $this->tagvspaces[$tag['value']][0]['h'];
} elseif (isset($tag['fontsize'])) { } elseif (isset($tag['fontsize'])) {
$cur_h = $this->getCellHeight($tag['fontsize'] / $this->k); $cur_h = $this->getCellHeight($tag['fontsize'] / $this->k);
@ -18718,7 +18778,7 @@ Putting 1 is equivalent to putting 0 and calling Ln() just after. Default value:
} }
// closing vertical space // closing vertical space
$hbc = 0; $hbc = 0;
if (isset($this->tagvspaces[$tag['value']][1]['h']) AND ($this->tagvspaces[$tag['value']][1]['h'] >= 0)) { if (isset($this->tagvspaces[$tag['value']][1]['h']) && !empty($this->tagvspaces[$tag['value']][1]['h']) && ($this->tagvspaces[$tag['value']][1]['h'] >= 0)) {
$pre_h = $this->tagvspaces[$tag['value']][1]['h']; $pre_h = $this->tagvspaces[$tag['value']][1]['h'];
} elseif (isset($parent['fontsize'])) { } elseif (isset($parent['fontsize'])) {
$pre_h = $this->getCellHeight($parent['fontsize'] / $this->k); $pre_h = $this->getCellHeight($parent['fontsize'] / $this->k);
@ -19379,7 +19439,7 @@ Putting 1 is equivalent to putting 0 and calling Ln() just after. Default value:
$hbz = 0; // distance from y to line bottom $hbz = 0; // distance from y to line bottom
$hb = 0; // vertical space between block tags $hb = 0; // vertical space between block tags
// calculate vertical space for block tags // calculate vertical space for block tags
if (isset($this->tagvspaces[$tag['value']][1]['h']) AND ($this->tagvspaces[$tag['value']][1]['h'] >= 0)) { if (isset($this->tagvspaces[$tag['value']][1]['h']) && !empty($this->tagvspaces[$tag['value']][1]['h']) && ($this->tagvspaces[$tag['value']][1]['h'] >= 0)) {
$pre_h = $this->tagvspaces[$tag['value']][1]['h']; $pre_h = $this->tagvspaces[$tag['value']][1]['h'];
} elseif (isset($parent['fontsize'])) { } elseif (isset($parent['fontsize'])) {
$pre_h = $this->getCellHeight($parent['fontsize'] / $this->k); $pre_h = $this->getCellHeight($parent['fontsize'] / $this->k);
@ -23349,7 +23409,7 @@ Putting 1 is equivalent to putting 0 and calling Ln() just after. Default value:
*/ */
protected function SVGPath($d, $style='') { protected function SVGPath($d, $style='') {
if ($this->state != 2) { if ($this->state != 2) {
return; return;
} }
// set fill/stroke style // set fill/stroke style
$op = TCPDF_STATIC::getPathPaintOperator($style, ''); $op = TCPDF_STATIC::getPathPaintOperator($style, '');
@ -23369,6 +23429,8 @@ Putting 1 is equivalent to putting 0 and calling Ln() just after. Default value:
$xmax = 0; $xmax = 0;
$ymin = 2147483647; $ymin = 2147483647;
$ymax = 0; $ymax = 0;
$xinitial = 0;
$yinitial = 0;
$relcoord = false; $relcoord = false;
$minlen = (0.01 / $this->k); // minimum acceptable length (3 point) $minlen = (0.01 / $this->k); // minimum acceptable length (3 point)
$firstcmd = true; // used to print first point $firstcmd = true; // used to print first point
@ -23413,6 +23475,8 @@ Putting 1 is equivalent to putting 0 and calling Ln() just after. Default value:
if ($ck == 1) { if ($ck == 1) {
$this->_outPoint($x, $y); $this->_outPoint($x, $y);
$firstcmd = false; $firstcmd = false;
$xinitial = $x;
$yinitial = $y;
} else { } else {
$this->_outLine($x, $y); $this->_outLine($x, $y);
} }
@ -23600,8 +23664,8 @@ Putting 1 is equivalent to putting 0 and calling Ln() just after. Default value:
if ((($ck + 1) % 7) == 0) { if ((($ck + 1) % 7) == 0) {
$x0 = $x; $x0 = $x;
$y0 = $y; $y0 = $y;
$rx = abs($params[($ck - 6)]); $rx = max(abs($params[($ck - 6)]), .000000001);
$ry = abs($params[($ck - 5)]); $ry = max(abs($params[($ck - 5)]), .000000001);
$ang = -$rawparams[($ck - 4)]; $ang = -$rawparams[($ck - 4)];
$angle = deg2rad($ang); $angle = deg2rad($ang);
$fa = $rawparams[($ck - 3)]; // large-arc-flag $fa = $rawparams[($ck - 3)]; // large-arc-flag
@ -23688,6 +23752,8 @@ Putting 1 is equivalent to putting 0 and calling Ln() just after. Default value:
} }
case 'Z': { case 'Z': {
$this->_out('h'); $this->_out('h');
$x = $x0 = $xinitial;
$y = $y0 = $yinitial;
break; break;
} }
} }
@ -23995,7 +24061,7 @@ Putting 1 is equivalent to putting 0 and calling Ln() just after. Default value:
case 'stop': { case 'stop': {
// gradient stops // gradient stops
if (substr($attribs['offset'], -1) == '%') { if (substr($attribs['offset'], -1) == '%') {
$offset = floatval(substr($attribs['offset'], -1)) / 100; $offset = floatval(substr($attribs['offset'], 0, -1)) / 100;
} else { } else {
$offset = floatval($attribs['offset']); $offset = floatval($attribs['offset']);
if ($offset > 1) { if ($offset > 1) {

View File

@ -453,7 +453,7 @@ class TCPDFBarcode {
$k = 0; $k = 0;
$clen = strlen($code); $clen = strlen($code);
for ($i = 0; $i < $clen; ++$i) { for ($i = 0; $i < $clen; ++$i) {
$char = $code{$i}; $char = $code[$i];
if(!isset($chr[$char])) { if(!isset($chr[$char])) {
// invalid character // invalid character
return false; return false;
@ -464,7 +464,7 @@ class TCPDFBarcode {
} else { } else {
$t = false; // space $t = false; // space
} }
$w = $chr[$char]{$j}; $w = $chr[$char][$j];
$bararray['bcode'][$k] = array('t' => $t, 'w' => $w, 'h' => 1, 'p' => 0); $bararray['bcode'][$k] = array('t' => $t, 'w' => $w, 'h' => 1, 'p' => 0);
$bararray['maxw'] += $w; $bararray['maxw'] += $w;
++$k; ++$k;
@ -520,10 +520,10 @@ class TCPDFBarcode {
$code_ext = ''; $code_ext = '';
$clen = strlen($code); $clen = strlen($code);
for ($i = 0 ; $i < $clen; ++$i) { for ($i = 0 ; $i < $clen; ++$i) {
if (ord($code{$i}) > 127) { if (ord($code[$i]) > 127) {
return false; return false;
} }
$code_ext .= $encode[$code{$i}]; $code_ext .= $encode[$code[$i]];
} }
return $code_ext; return $code_ext;
} }
@ -543,7 +543,7 @@ class TCPDFBarcode {
$sum = 0; $sum = 0;
$clen = strlen($code); $clen = strlen($code);
for ($i = 0 ; $i < $clen; ++$i) { for ($i = 0 ; $i < $clen; ++$i) {
$k = array_keys($chars, $code{$i}); $k = array_keys($chars, $code[$i]);
$sum += $k[0]; $sum += $k[0];
} }
$j = ($sum % 43); $j = ($sum % 43);
@ -643,10 +643,10 @@ class TCPDFBarcode {
$code_ext = ''; $code_ext = '';
$clen = strlen($code); $clen = strlen($code);
for ($i = 0 ; $i < $clen; ++$i) { for ($i = 0 ; $i < $clen; ++$i) {
if (ord($code{$i}) > 127) { if (ord($code[$i]) > 127) {
return false; return false;
} }
$code_ext .= $encode[$code{$i}]; $code_ext .= $encode[$code[$i]];
} }
// checksum // checksum
$code_ext .= $this->checksum_code93($code_ext); $code_ext .= $this->checksum_code93($code_ext);
@ -656,7 +656,7 @@ class TCPDFBarcode {
$k = 0; $k = 0;
$clen = strlen($code); $clen = strlen($code);
for ($i = 0; $i < $clen; ++$i) { for ($i = 0; $i < $clen; ++$i) {
$char = ord($code{$i}); $char = ord($code[$i]);
if(!isset($chr[$char])) { if(!isset($chr[$char])) {
// invalid character // invalid character
return false; return false;
@ -667,7 +667,7 @@ class TCPDFBarcode {
} else { } else {
$t = false; // space $t = false; // space
} }
$w = $chr[$char]{$j}; $w = $chr[$char][$j];
$bararray['bcode'][$k] = array('t' => $t, 'w' => $w, 'h' => 1, 'p' => 0); $bararray['bcode'][$k] = array('t' => $t, 'w' => $w, 'h' => 1, 'p' => 0);
$bararray['maxw'] += $w; $bararray['maxw'] += $w;
++$k; ++$k;
@ -699,7 +699,7 @@ class TCPDFBarcode {
$p = 1; $p = 1;
$check = 0; $check = 0;
for ($i = ($len - 1); $i >= 0; --$i) { for ($i = ($len - 1); $i >= 0; --$i) {
$k = array_keys($chars, $code{$i}); $k = array_keys($chars, $code[$i]);
$check += ($k[0] * $p); $check += ($k[0] * $p);
++$p; ++$p;
if ($p > 20) { if ($p > 20) {
@ -713,7 +713,7 @@ class TCPDFBarcode {
$p = 1; $p = 1;
$check = 0; $check = 0;
for ($i = $len; $i >= 0; --$i) { for ($i = $len; $i >= 0; --$i) {
$k = array_keys($chars, $code{$i}); $k = array_keys($chars, $code[$i]);
$check += ($k[0] * $p); $check += ($k[0] * $p);
++$p; ++$p;
if ($p > 15) { if ($p > 15) {
@ -738,11 +738,11 @@ class TCPDFBarcode {
$len = strlen($code); $len = strlen($code);
$sum = 0; $sum = 0;
for ($i = 0; $i < $len; $i+=2) { for ($i = 0; $i < $len; $i+=2) {
$sum += $code{$i}; $sum += $code[$i];
} }
$sum *= 3; $sum *= 3;
for ($i = 1; $i < $len; $i+=2) { for ($i = 1; $i < $len; $i+=2) {
$sum += ($code{$i}); $sum += ($code[$i]);
} }
$r = $sum % 10; $r = $sum % 10;
if($r > 0) { if($r > 0) {
@ -783,7 +783,7 @@ class TCPDFBarcode {
$p = 2; $p = 2;
$check = 0; $check = 0;
for ($i = ($clen - 1); $i >= 0; --$i) { for ($i = ($clen - 1); $i >= 0; --$i) {
$check += (hexdec($code{$i}) * $p); $check += (hexdec($code[$i]) * $p);
++$p; ++$p;
if ($p > 7) { if ($p > 7) {
$p = 2; $p = 2;
@ -798,7 +798,7 @@ class TCPDFBarcode {
$seq = '110'; // left guard $seq = '110'; // left guard
$clen = strlen($code); $clen = strlen($code);
for ($i = 0; $i < $clen; ++$i) { for ($i = 0; $i < $clen; ++$i) {
$digit = $code{$i}; $digit = $code[$i];
if (!isset($chr[$digit])) { if (!isset($chr[$digit])) {
// invalid character // invalid character
return false; return false;
@ -841,7 +841,7 @@ class TCPDFBarcode {
$seq = '11011010'; $seq = '11011010';
$clen = strlen($code); $clen = strlen($code);
for ($i = 0; $i < $clen; ++$i) { for ($i = 0; $i < $clen; ++$i) {
$digit = $code{$i}; $digit = $code[$i];
if (!isset($chr[$digit])) { if (!isset($chr[$digit])) {
// invalid character // invalid character
return false; return false;
@ -867,8 +867,8 @@ class TCPDFBarcode {
$k = 0; $k = 0;
for ($i = 0; $i < $len; ++$i) { for ($i = 0; $i < $len; ++$i) {
$w += 1; $w += 1;
if (($i == ($len - 1)) OR (($i < ($len - 1)) AND ($seq{$i} != $seq{($i+1)}))) { if (($i == ($len - 1)) OR (($i < ($len - 1)) AND ($seq[$i] != $seq[($i+1)]))) {
if ($seq{$i} == '1') { if ($seq[$i] == '1') {
$t = true; // bar $t = true; // bar
} else { } else {
$t = false; // space $t = false; // space
@ -919,8 +919,8 @@ class TCPDFBarcode {
$k = 0; $k = 0;
$clen = strlen($code); $clen = strlen($code);
for ($i = 0; $i < $clen; $i = ($i + 2)) { for ($i = 0; $i < $clen; $i = ($i + 2)) {
$char_bar = $code{$i}; $char_bar = $code[$i];
$char_space = $code{$i+1}; $char_space = $code[$i+1];
if((!isset($chr[$char_bar])) OR (!isset($chr[$char_space]))) { if((!isset($chr[$char_bar])) OR (!isset($chr[$char_space]))) {
// invalid character // invalid character
return false; return false;
@ -929,7 +929,7 @@ class TCPDFBarcode {
$seq = ''; $seq = '';
$chrlen = strlen($chr[$char_bar]); $chrlen = strlen($chr[$char_bar]);
for ($s = 0; $s < $chrlen; $s++){ for ($s = 0; $s < $chrlen; $s++){
$seq .= $chr[$char_bar]{$s} . $chr[$char_space]{$s}; $seq .= $chr[$char_bar][$s] . $chr[$char_space][$s];
} }
$seqlen = strlen($seq); $seqlen = strlen($seq);
for ($j = 0; $j < $seqlen; ++$j) { for ($j = 0; $j < $seqlen; ++$j) {
@ -938,7 +938,7 @@ class TCPDFBarcode {
} else { } else {
$t = false; // space $t = false; // space
} }
$w = $seq{$j}; $w = $seq[$j];
$bararray['bcode'][$k] = array('t' => $t, 'w' => $w, 'h' => 1, 'p' => 0); $bararray['bcode'][$k] = array('t' => $t, 'w' => $w, 'h' => 1, 'p' => 0);
$bararray['maxw'] += $w; $bararray['maxw'] += $w;
++$k; ++$k;
@ -1085,7 +1085,7 @@ class TCPDFBarcode {
case 'A': { // MODE A case 'A': { // MODE A
$startid = 103; $startid = 103;
for ($i = 0; $i < $len; ++$i) { for ($i = 0; $i < $len; ++$i) {
$char = $code{$i}; $char = $code[$i];
$char_id = ord($char); $char_id = ord($char);
if (($char_id >= 241) AND ($char_id <= 244)) { if (($char_id >= 241) AND ($char_id <= 244)) {
$code_data[] = $fnc_a[$char_id]; $code_data[] = $fnc_a[$char_id];
@ -1100,7 +1100,7 @@ class TCPDFBarcode {
case 'B': { // MODE B case 'B': { // MODE B
$startid = 104; $startid = 104;
for ($i = 0; $i < $len; ++$i) { for ($i = 0; $i < $len; ++$i) {
$char = $code{$i}; $char = $code[$i];
$char_id = ord($char); $char_id = ord($char);
if (($char_id >= 241) AND ($char_id <= 244)) { if (($char_id >= 241) AND ($char_id <= 244)) {
$code_data[] = $fnc_b[$char_id]; $code_data[] = $fnc_b[$char_id];
@ -1124,7 +1124,7 @@ class TCPDFBarcode {
return false; return false;
} }
for ($i = 0; $i < $len; $i+=2) { for ($i = 0; $i < $len; $i+=2) {
$chrnum = $code{$i}.$code{$i+1}; $chrnum = $code[$i].$code[$i+1];
if (preg_match('/([0-9]{2})/', $chrnum) > 0) { if (preg_match('/([0-9]{2})/', $chrnum) > 0) {
$code_data[] = intval($chrnum); $code_data[] = intval($chrnum);
} else { } else {
@ -1180,7 +1180,7 @@ class TCPDFBarcode {
} }
} }
for ($i = 0; $i < $seq[2]; ++$i) { for ($i = 0; $i < $seq[2]; ++$i) {
$char = $seq[1]{$i}; $char = $seq[1][$i];
$char_id = ord($char); $char_id = ord($char);
if (($char_id >= 241) AND ($char_id <= 244)) { if (($char_id >= 241) AND ($char_id <= 244)) {
$code_data[] = $fnc_a[$char_id]; $code_data[] = $fnc_a[$char_id];
@ -1223,7 +1223,7 @@ class TCPDFBarcode {
} }
} }
for ($i = 0; $i < $seq[2]; ++$i) { for ($i = 0; $i < $seq[2]; ++$i) {
$char = $seq[1]{$i}; $char = $seq[1][$i];
$char_id = ord($char); $char_id = ord($char);
if (($char_id >= 241) AND ($char_id <= 244)) { if (($char_id >= 241) AND ($char_id <= 244)) {
$code_data[] = $fnc_b[$char_id]; $code_data[] = $fnc_b[$char_id];
@ -1240,7 +1240,7 @@ class TCPDFBarcode {
$code_data[] = 99; $code_data[] = 99;
} }
for ($i = 0; $i < $seq[2]; $i+=2) { for ($i = 0; $i < $seq[2]; $i+=2) {
$chrnum = $seq[1]{$i}.$seq[1]{$i+1}; $chrnum = $seq[1][$i].$seq[1][$i+1];
$code_data[] = intval($chrnum); $code_data[] = intval($chrnum);
} }
break; break;
@ -1271,7 +1271,7 @@ class TCPDFBarcode {
} else { } else {
$t = false; // space $t = false; // space
} }
$w = $seq{$j}; $w = $seq[$j];
$bararray['bcode'][] = array('t' => $t, 'w' => $w, 'h' => 1, 'p' => 0); $bararray['bcode'][] = array('t' => $t, 'w' => $w, 'h' => 1, 'p' => 0);
$bararray['maxw'] += $w; $bararray['maxw'] += $w;
} }
@ -1337,14 +1337,14 @@ class TCPDFBarcode {
// calculate check digit // calculate check digit
$sum_a = 0; $sum_a = 0;
for ($i = 1; $i < $data_len; $i+=2) { for ($i = 1; $i < $data_len; $i+=2) {
$sum_a += $code{$i}; $sum_a += $code[$i];
} }
if ($len > 12) { if ($len > 12) {
$sum_a *= 3; $sum_a *= 3;
} }
$sum_b = 0; $sum_b = 0;
for ($i = 0; $i < $data_len; $i+=2) { for ($i = 0; $i < $data_len; $i+=2) {
$sum_b += ($code{$i}); $sum_b += ($code[$i]);
} }
if ($len < 13) { if ($len < 13) {
$sum_b *= 3; $sum_b *= 3;
@ -1356,7 +1356,7 @@ class TCPDFBarcode {
if ($code_len == $data_len) { if ($code_len == $data_len) {
// add check digit // add check digit
$code .= $r; $code .= $r;
} elseif ($r !== intval($code{$data_len})) { } elseif ($r !== intval($code[$data_len])) {
// wrong checkdigit // wrong checkdigit
return false; return false;
} }
@ -1467,7 +1467,7 @@ class TCPDFBarcode {
$bararray = array('code' => $upce_code, 'maxw' => 0, 'maxh' => 1, 'bcode' => array()); $bararray = array('code' => $upce_code, 'maxw' => 0, 'maxh' => 1, 'bcode' => array());
$p = $upce_parities[$code[1]][$r]; $p = $upce_parities[$code[1]][$r];
for ($i = 0; $i < 6; ++$i) { for ($i = 0; $i < 6; ++$i) {
$seq .= $codes[$p[$i]][$upce_code{$i}]; $seq .= $codes[$p[$i]][$upce_code[$i]];
} }
$seq .= '010101'; // right guard bar $seq .= '010101'; // right guard bar
} else { } else {
@ -1475,17 +1475,17 @@ class TCPDFBarcode {
$half_len = intval(ceil($len / 2)); $half_len = intval(ceil($len / 2));
if ($len == 8) { if ($len == 8) {
for ($i = 0; $i < $half_len; ++$i) { for ($i = 0; $i < $half_len; ++$i) {
$seq .= $codes['A'][$code{$i}]; $seq .= $codes['A'][$code[$i]];
} }
} else { } else {
$p = $parities[$code[0]]; $p = $parities[$code[0]];
for ($i = 1; $i < $half_len; ++$i) { for ($i = 1; $i < $half_len; ++$i) {
$seq .= $codes[$p[$i-1]][$code{$i}]; $seq .= $codes[$p[$i-1]][$code[$i]];
} }
} }
$seq .= '01010'; // center guard bar $seq .= '01010'; // center guard bar
for ($i = $half_len; $i < $len; ++$i) { for ($i = $half_len; $i < $len; ++$i) {
$seq .= $codes['C'][$code{$i}]; $seq .= $codes['C'][$code[$i]];
} }
$seq .= '101'; // right guard bar $seq .= '101'; // right guard bar
} }
@ -1493,8 +1493,8 @@ class TCPDFBarcode {
$w = 0; $w = 0;
for ($i = 0; $i < $clen; ++$i) { for ($i = 0; $i < $clen; ++$i) {
$w += 1; $w += 1;
if (($i == ($clen - 1)) OR (($i < ($clen - 1)) AND ($seq{$i} != $seq{($i+1)}))) { if (($i == ($clen - 1)) OR (($i < ($clen - 1)) AND ($seq[$i] != $seq[$i+1]))) {
if ($seq{$i} == '1') { if ($seq[$i] == '1') {
$t = true; // bar $t = true; // bar
} else { } else {
$t = false; // space $t = false; // space
@ -1578,7 +1578,7 @@ class TCPDFBarcode {
$seq .= $codes[$p[0]][$code[0]]; $seq .= $codes[$p[0]][$code[0]];
for ($i = 1; $i < $len; ++$i) { for ($i = 1; $i < $len; ++$i) {
$seq .= '01'; // separator $seq .= '01'; // separator
$seq .= $codes[$p[$i]][$code{$i}]; $seq .= $codes[$p[$i]][$code[$i]];
} }
$bararray = array('code' => $code, 'maxw' => 0, 'maxh' => 1, 'bcode' => array()); $bararray = array('code' => $code, 'maxw' => 0, 'maxh' => 1, 'bcode' => array());
return $this->binseq_to_array($seq, $bararray); return $this->binseq_to_array($seq, $bararray);
@ -1629,7 +1629,7 @@ class TCPDFBarcode {
// calculate checksum // calculate checksum
$sum = 0; $sum = 0;
for ($i = 0; $i < $len; ++$i) { for ($i = 0; $i < $len; ++$i) {
$sum += intval($code{$i}); $sum += intval($code[$i]);
} }
$chkd = ($sum % 10); $chkd = ($sum % 10);
if($chkd > 0) { if($chkd > 0) {
@ -1643,7 +1643,7 @@ class TCPDFBarcode {
$bararray['maxw'] += 2; $bararray['maxw'] += 2;
for ($i = 0; $i < $len; ++$i) { for ($i = 0; $i < $len; ++$i) {
for ($j = 0; $j < 5; ++$j) { for ($j = 0; $j < 5; ++$j) {
$h = $barlen[$code{$i}][$j]; $h = $barlen[$code[$i]][$j];
$p = floor(1 / $h); $p = floor(1 / $h);
$bararray['bcode'][$k++] = array('t' => 1, 'w' => 1, 'h' => $h, 'p' => $p); $bararray['bcode'][$k++] = array('t' => 1, 'w' => 1, 'h' => $h, 'p' => $p);
$bararray['bcode'][$k++] = array('t' => 0, 'w' => 1, 'h' => 2, 'p' => 0); $bararray['bcode'][$k++] = array('t' => 0, 'w' => 1, 'h' => 2, 'p' => 0);
@ -1756,8 +1756,8 @@ class TCPDFBarcode {
$row = 0; $row = 0;
$col = 0; $col = 0;
for ($i = 0; $i < $len; ++$i) { for ($i = 0; $i < $len; ++$i) {
$row += $checktable[$code{$i}][0]; $row += $checktable[$code[$i]][0];
$col += $checktable[$code{$i}][1]; $col += $checktable[$code[$i]][1];
} }
$row %= 6; $row %= 6;
$col %= 6; $col %= 6;
@ -1774,7 +1774,7 @@ class TCPDFBarcode {
} }
for ($i = 0; $i < $len; ++$i) { for ($i = 0; $i < $len; ++$i) {
for ($j = 0; $j < 4; ++$j) { for ($j = 0; $j < 4; ++$j) {
switch ($barmode[$code{$i}][$j]) { switch ($barmode[$code[$i]][$j]) {
case 1: { case 1: {
$p = 0; $p = 0;
$h = 2; $h = 2;
@ -1846,17 +1846,17 @@ class TCPDFBarcode {
$code = 'A'.strtoupper($code).'A'; $code = 'A'.strtoupper($code).'A';
$len = strlen($code); $len = strlen($code);
for ($i = 0; $i < $len; ++$i) { for ($i = 0; $i < $len; ++$i) {
if (!isset($chr[$code{$i}])) { if (!isset($chr[$code[$i]])) {
return false; return false;
} }
$seq = $chr[$code{$i}]; $seq = $chr[$code[$i]];
for ($j = 0; $j < 8; ++$j) { for ($j = 0; $j < 8; ++$j) {
if (($j % 2) == 0) { if (($j % 2) == 0) {
$t = true; // bar $t = true; // bar
} else { } else {
$t = false; // space $t = false; // space
} }
$w = $seq{$j}; $w = $seq[$j];
$bararray['bcode'][$k] = array('t' => $t, 'w' => $w, 'h' => 1, 'p' => 0); $bararray['bcode'][$k] = array('t' => $t, 'w' => $w, 'h' => 1, 'p' => 0);
$bararray['maxw'] += $w; $bararray['maxw'] += $w;
++$k; ++$k;
@ -1896,7 +1896,7 @@ class TCPDFBarcode {
$p = 1; $p = 1;
$check = 0; $check = 0;
for ($i = ($len - 1); $i >= 0; --$i) { for ($i = ($len - 1); $i >= 0; --$i) {
$digit = $code{$i}; $digit = $code[$i];
if ($digit == '-') { if ($digit == '-') {
$dval = 10; $dval = 10;
} else { } else {
@ -1918,7 +1918,7 @@ class TCPDFBarcode {
$p = 1; $p = 1;
$check = 0; $check = 0;
for ($i = $len; $i >= 0; --$i) { for ($i = $len; $i >= 0; --$i) {
$digit = $code{$i}; $digit = $code[$i];
if ($digit == '-') { if ($digit == '-') {
$dval = 10; $dval = 10;
} else { } else {
@ -1937,17 +1937,17 @@ class TCPDFBarcode {
$code = 'S'.$code.'S'; $code = 'S'.$code.'S';
$len += 3; $len += 3;
for ($i = 0; $i < $len; ++$i) { for ($i = 0; $i < $len; ++$i) {
if (!isset($chr[$code{$i}])) { if (!isset($chr[$code[$i]])) {
return false; return false;
} }
$seq = $chr[$code{$i}]; $seq = $chr[$code[$i]];
for ($j = 0; $j < 6; ++$j) { for ($j = 0; $j < 6; ++$j) {
if (($j % 2) == 0) { if (($j % 2) == 0) {
$t = true; // bar $t = true; // bar
} else { } else {
$t = false; // space $t = false; // space
} }
$w = $seq{$j}; $w = $seq[$j];
$bararray['bcode'][$k] = array('t' => $t, 'w' => $w, 'h' => 1, 'p' => 0); $bararray['bcode'][$k] = array('t' => $t, 'w' => $w, 'h' => 1, 'p' => 0);
$bararray['maxw'] += $w; $bararray['maxw'] += $w;
++$k; ++$k;
@ -2016,7 +2016,7 @@ class TCPDFBarcode {
$bararray = array('code' => $code, 'maxw' => 0, 'maxh' => 2, 'bcode' => array()); $bararray = array('code' => $code, 'maxw' => 0, 'maxh' => 2, 'bcode' => array());
$len = strlen($seq); $len = strlen($seq);
for ($i = 0; $i < $len; ++$i) { for ($i = 0; $i < $len; ++$i) {
switch ($seq{$i}) { switch ($seq[$i]) {
case '1': { case '1': {
$p = 1; $p = 1;
$h = 1; $h = 1;
@ -2255,7 +2255,7 @@ class TCPDFBarcode {
$bitval = 1; $bitval = 1;
$len = strlen($hex); $len = strlen($hex);
for($pos = ($len - 1); $pos >= 0; --$pos) { for($pos = ($len - 1); $pos >= 0; --$pos) {
$dec = bcadd($dec, bcmul(hexdec($hex{$pos}), $bitval)); $dec = bcadd($dec, bcmul(hexdec($hex[$pos]), $bitval));
$bitval = bcmul($bitval, 16); $bitval = bcmul($bitval, 16);
} }
return $dec; return $dec;

View File

@ -531,10 +531,10 @@ class TCPDF_PARSER {
if ($char == '(') { if ($char == '(') {
$open_bracket = 1; $open_bracket = 1;
while ($open_bracket > 0) { while ($open_bracket > 0) {
if (!isset($this->pdfdata{$strpos})) { if (!isset($this->pdfdata[$strpos])) {
break; break;
} }
$ch = $this->pdfdata{$strpos}; $ch = $this->pdfdata[$strpos];
switch ($ch) { switch ($ch) {
case '\\': { // REVERSE SOLIDUS (5Ch) (Backslash) case '\\': { // REVERSE SOLIDUS (5Ch) (Backslash)
// skip next character // skip next character
@ -578,7 +578,7 @@ class TCPDF_PARSER {
} }
case '<': // \x3C LESS-THAN SIGN case '<': // \x3C LESS-THAN SIGN
case '>': { // \x3E GREATER-THAN SIGN case '>': { // \x3E GREATER-THAN SIGN
if (isset($this->pdfdata{($offset + 1)}) AND ($this->pdfdata{($offset + 1)} == $char)) { if (isset($this->pdfdata[($offset + 1)]) AND ($this->pdfdata[($offset + 1)] == $char)) {
// dictionary object // dictionary object
$objtype = $char.$char; $objtype = $char.$char;
$offset += 2; $offset += 2;

View File

@ -227,7 +227,7 @@ function generateSalt($len) {
$salt = ''; $salt = '';
for ($i = 0; $i < $len; $i++) { for ($i = 0; $i < $len; $i++) {
$pos = abs(getRandomNumber() % strlen($chars)); $pos = abs(getRandomNumber() % strlen($chars));
$salt .= $chars{$pos}; $salt .= $chars[$pos];
} }
return $salt; return $salt;
} }

View File

@ -128,7 +128,7 @@ function checkChmod($right, $target, $chmod) {
} }
// Cut the number from the chmod: // Cut the number from the chmod:
$chmod_num = $chmod{$chmod_num}; $chmod_num = $chmod[$chmod_num];
// Now check, if the chmod_num can be right with the $right // Now check, if the chmod_num can be right with the $right
// What numbers allow "read" // What numbers allow "read"

View File

@ -327,6 +327,9 @@ class posixGroup extends baseModule implements passwordService {
if ($gon == null) { if ($gon == null) {
$gon = $this->getAccountContainer()->getAccountModule('groupOfUniqueNames'); $gon = $this->getAccountContainer()->getAccountModule('groupOfUniqueNames');
} }
if ($gon == null) {
$gon = $this->getAccountContainer()->getAccountModule('groupOfMembers');
}
if ($gon != null) { if ($gon != null) {
$return->addVerticalSpacer('2rem'); $return->addVerticalSpacer('2rem');
$syncButton = new htmlButton('syncGON', sprintf(_('Sync from %s'), $gon->get_alias())); $syncButton = new htmlButton('syncGON', sprintf(_('Sync from %s'), $gon->get_alias()));
@ -514,7 +517,7 @@ class posixGroup extends baseModule implements passwordService {
$this->addAccountSpecificConfigOptions($configContainer, $typeId); $this->addAccountSpecificConfigOptions($configContainer, $typeId);
$configContainer->addVerticalSpacer('2rem'); $configContainer->addVerticalSpacer('2rem');
} }
$gonModules = array('groupOfNames', 'groupOfUniqueNames'); $gonModules = array('groupOfNames', 'groupOfUniqueNames', 'groupOfMembers');
$gonFound = false; $gonFound = false;
foreach ($gonModules as $gonModule) { foreach ($gonModules as $gonModule) {
if (!empty($allScopes[$gonModule])) { if (!empty($allScopes[$gonModule])) {
@ -978,6 +981,9 @@ class posixGroup extends baseModule implements passwordService {
if ($gon == null) { if ($gon == null) {
$gon = $this->getAccountContainer()->getAccountModule('groupOfUniqueNames'); $gon = $this->getAccountContainer()->getAccountModule('groupOfUniqueNames');
} }
if ($gon == null) {
$gon = $this->getAccountContainer()->getAccountModule('groupOfMembers');
}
if ($gon == null) { if ($gon == null) {
return; return;
} }

View File

@ -206,8 +206,10 @@ class quota extends baseModule {
} }
$allQuotas[$i] = substr($allQuotas[$i], strlen(self::$QUOTA_PREFIX)); $allQuotas[$i] = substr($allQuotas[$i], strlen(self::$QUOTA_PREFIX));
$singleQuota = explode(",", $allQuotas[$i]); $singleQuota = explode(",", $allQuotas[$i]);
$singleQuota[1] = $this->formatBlockUsage($singleQuota[1]);
$singleQuota[2] = $this->addBlockUnits($singleQuota[2]); $singleQuota[2] = $this->addBlockUnits($singleQuota[2]);
$singleQuota[3] = $this->addBlockUnits($singleQuota[3]); $singleQuota[3] = $this->addBlockUnits($singleQuota[3]);
$singleQuota[5] = $this->formatInodeUsage($singleQuota[5]);
$singleQuota[6] = $this->addInodeUnits($singleQuota[6]); $singleQuota[6] = $this->addInodeUnits($singleQuota[6]);
$singleQuota[7] = $this->addInodeUnits($singleQuota[7]); $singleQuota[7] = $this->addInodeUnits($singleQuota[7]);
$this->quota[$server][$i] = $singleQuota; $this->quota[$server][$i] = $singleQuota;
@ -231,8 +233,9 @@ class quota extends baseModule {
* Adds units (M/G/T) for block numbers. * Adds units (M/G/T) for block numbers.
* *
* @param int $value raw value * @param int $value raw value
* @return string value with unit
*/ */
private function addBlockUnits($value) { public function addBlockUnits($value) {
$mebibytes = 1024; $mebibytes = 1024;
$gibibytes = 1024 * $mebibytes; $gibibytes = 1024 * $mebibytes;
$tebibytes = 1024 * $gibibytes; $tebibytes = 1024 * $gibibytes;
@ -248,19 +251,45 @@ class quota extends baseModule {
if (($value >= $mebibytes) && (($value % $mebibytes) === 0)) { if (($value >= $mebibytes) && (($value % $mebibytes) === 0)) {
return ($value / $mebibytes) . 'M'; return ($value / $mebibytes) . 'M';
} }
return $value;
}
/**
* Formats block usage.
*
* @param int $value raw value
*/
public function formatBlockUsage($value) {
$mebibytes = 1024;
$gibibytes = 1024 * $mebibytes;
$tebibytes = 1024 * $gibibytes;
if (empty($value) || !get_preg($value, 'digit') || ($value < $mebibytes)) {
return $value;
}
if ($value >= $tebibytes) {
return round($value / $tebibytes, 3) . 'T';
}
if ($value >= $gibibytes) {
return round($value / $gibibytes, 3) . 'G';
}
if ($value >= $mebibytes) {
return round($value / $mebibytes, 3) . 'M';
}
return $value;
} }
/** /**
* Adds units (m/g/t) for inode numbers. * Adds units (m/g/t) for inode numbers.
* *
* @param int $value raw value * @param int $value raw value
* @return string value with unit
*/ */
private function addInodeUnits($value) { public function addInodeUnits($value) {
$kilo = 1000; $kilo = 1000;
$million = 1000 * $kilo; $million = 1000 * $kilo;
$billion = 1000 * $million; $billion = 1000 * $million;
$trillion = 1000 * $billion; $trillion = 1000 * $billion;
if (empty($value) || !get_preg($value, 'digit') || ($value < $million)) { if (empty($value) || !get_preg($value, 'digit')) {
return $value; return $value;
} }
if (($value >= $trillion) && (($value % $trillion) === 0)) { if (($value >= $trillion) && (($value % $trillion) === 0)) {
@ -275,6 +304,36 @@ class quota extends baseModule {
if (($value >= $kilo) && (($value % $kilo) === 0)) { if (($value >= $kilo) && (($value % $kilo) === 0)) {
return ($value / $kilo) . 'k'; return ($value / $kilo) . 'k';
} }
return $value;
}
/**
* Formats the inode usage.
*
* @param int $value raw value
* @return string value with unit
*/
public function formatInodeUsage($value) {
$kilo = 1000;
$million = 1000 * $kilo;
$billion = 1000 * $million;
$trillion = 1000 * $billion;
if (empty($value) || !get_preg($value, 'digit')) {
return $value;
}
if ($value >= $trillion) {
return round($value / $trillion, 3) . 't';
}
if ($value >= $billion) {
return round($value / $billion, 3) . 'g';
}
if ($value >= $million) {
return round($value / $million, 3) . 'm';
}
if ($value >= $kilo) {
return round($value / $kilo, 3) . 'k';
}
return $value;
} }
/** /**

View File

@ -1817,6 +1817,7 @@ class windowsUser extends baseModule implements passwordService {
*/ */
public function display_html_group() { public function display_html_group() {
$return = new htmlResponsiveRow(); $return = new htmlResponsiveRow();
$return->setCSSClasses(array('maxrow'));
$return->add(new htmlSubTitle(_("Groups")), 12); $return->add(new htmlSubTitle(_("Groups")), 12);
$groups = $this->findGroups(); $groups = $this->findGroups();
// sort by DN // sort by DN

View File

@ -43,7 +43,7 @@ class toolWebauthn implements \LAMTool {
* @return string name * @return string name
*/ */
function getName() { function getName() {
return _('Webauthn devices'); return _('WebAuthn devices');
} }
/** /**

View File

@ -110,6 +110,7 @@ class WebauthnManager {
$credentialParameters = $this->getCredentialParameters(); $credentialParameters = $this->getCredentialParameters();
$excludedKeys = $this->getExcludedKeys($userEntity, $extraExcludedKeys); $excludedKeys = $this->getExcludedKeys($userEntity, $extraExcludedKeys);
$timeout = $this->getTimeout(); $timeout = $this->getTimeout();
$authenticatorSelectionCriteria = new AuthenticatorSelectionCriteria(null, false, AuthenticatorSelectionCriteria::USER_VERIFICATION_REQUIREMENT_DISCOURAGED);
$registrationObject = new PublicKeyCredentialCreationOptions( $registrationObject = new PublicKeyCredentialCreationOptions(
$rpEntity, $rpEntity,
$userEntity, $userEntity,
@ -117,7 +118,7 @@ class WebauthnManager {
$credentialParameters, $credentialParameters,
$timeout, $timeout,
$excludedKeys, $excludedKeys,
new AuthenticatorSelectionCriteria(), $authenticatorSelectionCriteria,
PublicKeyCredentialCreationOptions::ATTESTATION_CONVEYANCE_PREFERENCE_NONE, PublicKeyCredentialCreationOptions::ATTESTATION_CONVEYANCE_PREFERENCE_NONE,
new AuthenticationExtensionsClientInputs()); new AuthenticationExtensionsClientInputs());
logNewMessage(LOG_DEBUG, 'Webauthn registration: ' . json_encode($registrationObject)); logNewMessage(LOG_DEBUG, 'Webauthn registration: ' . json_encode($registrationObject));

View File

@ -189,7 +189,7 @@ class TemplateRender extends PageRender {
$next_number = $vals; $next_number = $vals;
foreach ($mod as $calc) { foreach ($mod as $calc) {
$operand = $calc{0}; $operand = $calc[0];
$operator = substr ($calc,1); $operator = substr ($calc,1);
switch ($operand) { switch ($operand) {

View File

@ -217,7 +217,7 @@ abstract class Export {
*/ */
protected function isSafeAscii($str) { protected function isSafeAscii($str) {
for ($i=0;$i<strlen($str);$i++) for ($i=0;$i<strlen($str);$i++)
if (ord($str{$i}) < 32 || ord($str{$i}) > 127) if (ord($str[$i]) < 32 || ord($str[$i]) > 127)
return false; return false;
return true; return true;

View File

@ -1446,7 +1446,7 @@ function get_icon($server_id,$dn,$object_classes=array()) {
# Return icon filename based upon objectClass value # Return icon filename based upon objectClass value
if (in_array('sambaaccount',$object_classes) && if (in_array('sambaaccount',$object_classes) &&
'$' == $rdn{ strlen($rdn) - 1 }) '$' == $rdn[ strlen($rdn) - 1 ])
return 'nt_machine.png'; return 'nt_machine.png';
if (in_array('sambaaccount',$object_classes)) if (in_array('sambaaccount',$object_classes))

View File

@ -512,7 +512,7 @@ printHeaderContents(_("Edit general settings"), '../..');
include_once __DIR__ . '/../../lib/webauthn.inc'; include_once __DIR__ . '/../../lib/webauthn.inc';
$database = new \LAM\LOGIN\WEBAUTHN\PublicKeyCredentialSourceRepositorySQLite(); $database = new \LAM\LOGIN\WEBAUTHN\PublicKeyCredentialSourceRepositorySQLite();
if ($database->hasRegisteredCredentials()) { if ($database->hasRegisteredCredentials()) {
$row->add(new htmlSubTitle(_('Webauthn devices')), 12); $row->add(new htmlSubTitle(_('WebAuthn devices')), 12);
$webauthnSearchField = new htmlResponsiveInputField(_('User DN'), 'webauthn_searchTerm', null, '252'); $webauthnSearchField = new htmlResponsiveInputField(_('User DN'), 'webauthn_searchTerm', null, '252');
$row->add($webauthnSearchField, 12); $row->add($webauthnSearchField, 12);
$row->addVerticalSpacer('0.5rem'); $row->addVerticalSpacer('0.5rem');

View File

@ -1453,7 +1453,7 @@ window.lam.webauthn.run = function(prefix, isSelfService) {
} }
}) })
.fail(function() { .fail(function() {
console.log('Webauthn failed'); console.log('WebAuthn failed');
}); });
} }
@ -1602,7 +1602,7 @@ window.lam.webauthn.searchDevices = function(event) {
window.lam.webauthn.addDeviceActionListeners(); window.lam.webauthn.addDeviceActionListeners();
}) })
.fail(function() { .fail(function() {
console.log('Webauthn search failed'); console.log('WebAuthn search failed');
}); });
return false; return false;
} }
@ -1721,7 +1721,7 @@ window.lam.webauthn.sendRemoveDeviceRequest = function(element, action, successC
} }
}) })
.fail(function() { .fail(function() {
console.log('Webauthn device deletion failed'); console.log('WebAuthn device deletion failed');
}); });
} }
@ -1763,7 +1763,7 @@ window.lam.webauthn.registerOwnDevice = function(event, isSelfService) {
resultDiv.html(jsonData.content); resultDiv.html(jsonData.content);
}) })
.fail(function() { .fail(function() {
console.log('Webauthn device registration failed'); console.log('WebAuthn device registration failed');
}); });
}; };
} }

View File

@ -343,7 +343,7 @@ class Ajax {
$dn = $_POST['dn']; $dn = $_POST['dn'];
$sessionDn = $_SESSION['ldap']->getUserName(); $sessionDn = $_SESSION['ldap']->getUserName();
if ($sessionDn !== $dn) { if ($sessionDn !== $dn) {
logNewMessage(LOG_ERR, 'Webauthn delete canceled, DN does not match.'); logNewMessage(LOG_ERR, 'WebAuthn delete canceled, DN does not match.');
die(); die();
} }
if ($action === 'delete') { if ($action === 'delete') {

View File

@ -0,0 +1,95 @@
<?php
use PHPUnit\Framework\TestCase;
/*
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
Copyright (C) 2020 Roland Gruber
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
include_once __DIR__ . '/../../../lib/baseModule.inc';
include_once __DIR__ . '/../../../lib/modules.inc';
include_once __DIR__ . '/../../../lib/modules/quota.inc';
/**
* Checks the quota class.
*
* @author Roland Gruber
*/
class QuotaTest extends TestCase {
protected function setUp(): void {
$_SESSION = array('language' => 'en_GB.utf8');
}
public function testAddBlockUnits() {
$quota = new quota('user');
$this->assertEquals('123T', $quota->addBlockUnits(1024*1024*1024*123));
$this->assertEquals('123G', $quota->addBlockUnits(1024*1024*123));
$this->assertEquals('123M', $quota->addBlockUnits(1024*123));
$this->assertEquals('123', $quota->addBlockUnits(123));
$this->assertEquals('1025', $quota->addBlockUnits(1025));
$this->assertEquals('5000G', $quota->addBlockUnits(1024*1024*5000));
$this->assertEquals('5000M', $quota->addBlockUnits(1024*5000));
$this->assertEquals('5000', $quota->addBlockUnits(5000));
}
public function testFormatBlockUsage() {
$quota = new quota('user');
$this->assertEquals('123T', $quota->formatBlockUsage(1024*1024*1024*123));
$this->assertEquals('123G', $quota->formatBlockUsage(1024*1024*123));
$this->assertEquals('123M', $quota->formatBlockUsage(1024*123));
$this->assertEquals('123', $quota->formatBlockUsage(123));
$this->assertEquals('1.001M', $quota->formatBlockUsage(1025));
$this->assertEquals('4.883T', $quota->formatBlockUsage(1024*1024*5000));
$this->assertEquals('4.883G', $quota->formatBlockUsage(1024*5000));
$this->assertEquals('4.883M', $quota->formatBlockUsage(5000));
}
public function testAddInodeUnits() {
$quota = new quota('user');
$this->assertEquals('123t', $quota->addInodeUnits(1000*1000*1000*1000*123));
$this->assertEquals('123g', $quota->addInodeUnits(1000*1000*1000*123));
$this->assertEquals('123m', $quota->addInodeUnits(1000*1000*123));
$this->assertEquals('123k', $quota->addInodeUnits(1000*123));
$this->assertEquals('123', $quota->addInodeUnits(123));
$this->assertEquals('1025', $quota->addInodeUnits(1025));
$this->assertEquals('5001g', $quota->addInodeUnits(1000*1000*1000*5001));
$this->assertEquals('5001m', $quota->addInodeUnits(1000*1000*5001));
$this->assertEquals('5001k', $quota->addInodeUnits(1000*5001));
$this->assertEquals('5001', $quota->addInodeUnits(5001));
}
public function testFormatInodeUsage() {
$quota = new quota('user');
$this->assertEquals('123t', $quota->formatInodeUsage(1000*1000*1000*1000*123));
$this->assertEquals('123g', $quota->formatInodeUsage(1000*1000*1000*123));
$this->assertEquals('123m', $quota->formatInodeUsage(1000*1000*123));
$this->assertEquals('123k', $quota->formatInodeUsage(1000*123));
$this->assertEquals('123', $quota->formatInodeUsage(123));
$this->assertEquals('1.025k', $quota->formatInodeUsage(1025));
$this->assertEquals('5.001t', $quota->formatInodeUsage(1000*1000*1000*5001));
$this->assertEquals('5.001g', $quota->formatInodeUsage(1000*1000*5001));
$this->assertEquals('5.001m', $quota->formatInodeUsage(1000*5001));
$this->assertEquals('5.001k', $quota->formatInodeUsage(5001));
}
}