| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- <?php
- /**
- * This file is part of GameQ.
- *
- * GameQ is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation; either version 3 of the License, or
- * (at your option) any later version.
- *
- * GameQ 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 Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- namespace GameQ\Filters;
- use GameQ\Server;
- /**
- * Class Secondstohuman
- *
- * This class converts seconds into a human readable time string 'hh:mm:ss'. This is mainly for converting
- * a player's connected time into a readable string. Note that most game servers DO NOT return a player's connected
- * time. Source (A2S) based games generally do but not always. This class can also be used to convert other time
- * responses into readable time
- *
- * @package GameQ\Filters
- * @author Austin Bischoff <[email protected]>
- */
- class Secondstohuman extends Base
- {
- /**
- * The options key for setting the data key(s) to look for to convert
- */
- const OPTION_TIMEKEYS = 'timekeys';
- /**
- * The result key added when applying this filter to a result
- */
- const RESULT_KEY = 'gq_%s_human';
- /**
- * Holds the default 'time' keys from the response array. This is key is usually 'time' from A2S responses
- *
- * @var array
- */
- protected $timeKeysDefault = ['time'];
- /**
- * Secondstohuman constructor.
- *
- * @param array $options
- */
- public function __construct(array $options = [])
- {
- // Check for passed keys
- if (!array_key_exists(self::OPTION_TIMEKEYS, $options)) {
- // Use default
- $options[self::OPTION_TIMEKEYS] = $this->timeKeysDefault;
- } else {
- // Used passed key(s) and make sure it is an array
- $options[self::OPTION_TIMEKEYS] = (!is_array($options[self::OPTION_TIMEKEYS])) ?
- [$options[self::OPTION_TIMEKEYS]] : $options[self::OPTION_TIMEKEYS];
- }
- parent::__construct($options);
- }
- /**
- * Apply this filter to the result data
- *
- * @param array $result
- * @param Server $server
- *
- * @return array
- */
- public function apply(array $result, Server $server)
- {
- // Send the results off to be iterated and return the updated result
- return $this->iterate($result);
- }
- /**
- * Home grown iterate function. Would like to replace this with an internal PHP method(s) but could not find a way
- * to make the iterate classes add new keys to the response. They all seemed to be read-only.
- *
- * @todo: See if there is a more internal way of handling this instead of foreach looping and recursive calling
- *
- * @param array $result
- *
- * @return array
- */
- protected function iterate(array &$result)
- {
- // Iterate over the results
- foreach ($result as $key => $value) {
- // Offload to itself if we have another array
- if (is_array($value)) {
- // Iterate and update the result
- $result[$key] = $this->iterate($value);
- } elseif (in_array($key, $this->options[self::OPTION_TIMEKEYS])) {
- // Make sure the value is a float (throws E_WARNING in PHP 7.1+)
- $value = floatval($value);
- // We match one of the keys we are wanting to convert so add it and move on
- $result[sprintf(self::RESULT_KEY, $key)] = sprintf(
- "%02d:%02d:%02d",
- floor($value / 3600),
- ($value / 60) % 60,
- $value % 60
- );
- }
- }
- return $result;
- }
- }
|