mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 17:58:41 +00:00
194 lines
3.9 KiB
PHP
Executable File
194 lines
3.9 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Jingga
|
|
*
|
|
* PHP Version 8.1
|
|
*
|
|
* @package phpOMS\Localization\LanguageDetection
|
|
* @author Patrick Schur <patrick_schur@outlook.de>
|
|
* @copyright Patrick Schur
|
|
* @license https://opensource.org/licenses/mit-license.html MIT
|
|
* @link https://github.com/patrickschur/language-detection
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace phpOMS\Localization\LanguageDetection;
|
|
|
|
/**
|
|
* Langauge match result
|
|
*
|
|
* @package phpOMS\Localization\LanguageDetection
|
|
* @license https://opensource.org/licenses/mit-license.html MIT
|
|
* @link https://github.com/patrickschur/language-detection
|
|
* @since 1.0.0
|
|
*/
|
|
class LanguageResult implements \ArrayAccess, \IteratorAggregate, \JsonSerializable
|
|
{
|
|
/**
|
|
* Match threshold
|
|
*
|
|
* @var int
|
|
* @since 1.0.0
|
|
*/
|
|
private const THRESHOLD = .025;
|
|
|
|
/**
|
|
* Match values per language
|
|
*
|
|
* @var array<int|float, int|float>
|
|
* @sicne 1.0.0
|
|
*/
|
|
private array $result = [];
|
|
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param array $result Langauge match results
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public function __construct(array $result = [])
|
|
{
|
|
$this->result = $result;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function offsetExists($offset) : bool
|
|
{
|
|
return isset($this->result[$offset]);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function offsetGet($offset) : ?float
|
|
{
|
|
return $this->result[$offset] ?? null;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function offsetSet($offset, $value) : void
|
|
{
|
|
if ($offset === null) {
|
|
$this->result[] = $value;
|
|
} else {
|
|
$this->result[$offset] = $value;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function offsetUnset($offset) : void
|
|
{
|
|
unset($this->result[$offset]);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function jsonSerialize() : array
|
|
{
|
|
return $this->result;
|
|
}
|
|
|
|
/**
|
|
* Stringify
|
|
*
|
|
* @return string
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public function __toString() : string
|
|
{
|
|
return (string) \key($this->result);
|
|
}
|
|
|
|
/**
|
|
* Only return whitelisted results
|
|
*
|
|
* @param string[] ...$whitelist List of whitelisted languages
|
|
*
|
|
* @return self
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public function whitelist(string ...$whitelist) : self
|
|
{
|
|
return new self(\array_intersect_key($this->result, \array_flip($whitelist)));
|
|
}
|
|
|
|
/**
|
|
* Remove blacklisted languages
|
|
*
|
|
* @param string[] ...$blacklist List of blacklist languages
|
|
*
|
|
* @return self
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public function blacklist(string ...$blacklist) : self
|
|
{
|
|
return new self(\array_diff_key($this->result, \array_flip($blacklist)));
|
|
}
|
|
|
|
/**
|
|
* Get languages results
|
|
*
|
|
* @return array
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public function close() : array
|
|
{
|
|
return $this->result;
|
|
}
|
|
|
|
/**
|
|
* Get results based on internally defined threshold
|
|
*
|
|
* @return self
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public function bestResults() : self
|
|
{
|
|
if (empty($this->result)) {
|
|
return new self();
|
|
}
|
|
|
|
$first = \array_values($this->result)[0];
|
|
|
|
return new self(\array_filter($this->result, function ($value) use ($first) {
|
|
return ($first - $value) <= self::THRESHOLD;
|
|
}));
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function getIterator() : \ArrayIterator
|
|
{
|
|
return new \ArrayIterator($this->result);
|
|
}
|
|
|
|
/**
|
|
* Get results A to B
|
|
*
|
|
* @param int $offset Zero indexed start value
|
|
* @param null|int $length Number of results
|
|
*
|
|
* @return self
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public function limit(int $offset, int $length = null) : self
|
|
{
|
|
return new self(\array_slice($this->result, $offset, $length));
|
|
}
|
|
}
|