包含:登录失败锁定、90天密码有效期、30分钟会话超时、 强制改密、登录审计日志、屏幕水印、企业背景图、 备案信息固定底部、favicon、JS空集合保护、 会话过期体验优化(403 JSON)、display_errors 关闭、 固定 key 根治 Integrity check failed 等全部改动 注意:config.inc.php/.htaccess/.user.ini 含敏感信息, 通过 .gitignore 排除,勿推送到公开仓库。
117 lines
2.3 KiB
PHP
117 lines
2.3 KiB
PHP
<?php
|
|
/**
|
|
* Class QRString
|
|
*
|
|
* @created 05.12.2015
|
|
* @author Smiley <smiley@chillerlan.net>
|
|
* @copyright 2015 Smiley
|
|
* @license MIT
|
|
*
|
|
* @noinspection PhpComposerExtensionStubsInspection
|
|
*/
|
|
|
|
namespace chillerlan\QRCode\Output;
|
|
|
|
use function implode;
|
|
use function is_string;
|
|
use function json_encode;
|
|
use function max;
|
|
use function min;
|
|
use function sprintf;
|
|
use const JSON_THROW_ON_ERROR;
|
|
|
|
/**
|
|
* Converts the matrix data into string types
|
|
*
|
|
* @deprecated 5.0.0 this class will be removed in future versions, use one of QRStringText or QRStringJSON instead
|
|
*/
|
|
class QRString extends QROutputAbstract{
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public static function moduleValueIsValid($value):bool{
|
|
return is_string($value);
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
protected function prepareModuleValue($value):string{
|
|
return $value;
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
protected function getDefaultModuleValue(bool $isDark):string{
|
|
return ($isDark) ? '██' : '░░';
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function dump(?string $file = null):string{
|
|
|
|
switch($this->options->outputType){
|
|
case QROutputInterface::STRING_TEXT:
|
|
$data = $this->text();
|
|
break;
|
|
case QROutputInterface::STRING_JSON:
|
|
default:
|
|
$data = $this->json();
|
|
}
|
|
|
|
$this->saveToFile($data, $file);
|
|
|
|
return $data;
|
|
}
|
|
|
|
/**
|
|
* string output
|
|
*/
|
|
protected function text():string{
|
|
$lines = [];
|
|
$linestart = $this->options->textLineStart;
|
|
|
|
for($y = 0; $y < $this->moduleCount; $y++){
|
|
$r = [];
|
|
|
|
for($x = 0; $x < $this->moduleCount; $x++){
|
|
$r[] = $this->getModuleValueAt($x, $y);
|
|
}
|
|
|
|
$lines[] = $linestart.implode('', $r);
|
|
}
|
|
|
|
return implode($this->eol, $lines);
|
|
}
|
|
|
|
/**
|
|
* JSON output
|
|
*
|
|
* @throws \JsonException
|
|
*/
|
|
protected function json():string{
|
|
return json_encode($this->matrix->getMatrix($this->options->jsonAsBooleans), JSON_THROW_ON_ERROR);
|
|
}
|
|
|
|
//
|
|
|
|
/**
|
|
* a little helper to create a proper ANSI 8-bit color escape sequence
|
|
*
|
|
* @see https://en.wikipedia.org/wiki/ANSI_escape_code#8-bit
|
|
* @see https://en.wikipedia.org/wiki/Block_Elements
|
|
*
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public static function ansi8(string $str, int $color, ?bool $background = null):string{
|
|
$color = max(0, min($color, 255));
|
|
$background = ($background === true) ? 48 : 38;
|
|
|
|
return sprintf("\x1b[%s;5;%sm%s\x1b[0m", $background, $color, $str);
|
|
}
|
|
|
|
}
|