90 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			90 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace ManiaControl\Server;
 | |
| 
 | |
| use ManiaControl\Callbacks\TimerListener;
 | |
| use ManiaControl\Logger;
 | |
| use ManiaControl\ManiaControl;
 | |
| use ManiaControl\Utils\Formatter;
 | |
| use Maniaplanet\DedicatedServer\Xmlrpc\GameModeException;
 | |
| 
 | |
| /**
 | |
|  * Class reporting ManiaControl Usage for the Server
 | |
|  *
 | |
|  * @author    ManiaControl Team <mail@maniacontrol.com>
 | |
|  * @copyright 2014 ManiaControl Team
 | |
|  * @license   http://www.gnu.org/licenses/ GNU General Public License, Version 3
 | |
|  */
 | |
| class UsageReporter implements TimerListener {
 | |
| 	/*
 | |
| 	 * Constants
 | |
| 	 */
 | |
| 	const UPDATE_MINUTE_COUNT  = 10;
 | |
| 	const SETTING_REPORT_USAGE = 'Report Usage to $lManiaControl.com$l';
 | |
| 
 | |
| 	/*
 | |
| 	 * Private properties
 | |
| 	 */
 | |
| 	/** @var ManiaControl $maniaControl */
 | |
| 	private $maniaControl = null;
 | |
| 
 | |
| 	/**
 | |
| 	 * Create a new Usage Reporter Instance
 | |
| 	 *
 | |
| 	 * @param ManiaControl $maniaControl
 | |
| 	 */
 | |
| 	public function __construct(ManiaControl $maniaControl) {
 | |
| 		$this->maniaControl = $maniaControl;
 | |
| 
 | |
| 		$this->maniaControl->getSettingManager()->initSetting($this, self::SETTING_REPORT_USAGE, true);
 | |
| 
 | |
| 		$this->maniaControl->getTimerManager()->registerTimerListening($this, 'reportUsage', 1000 * 60 * self::UPDATE_MINUTE_COUNT);
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * Report Usage of ManiaControl on the current Server
 | |
| 	 */
 | |
| 	public function reportUsage() {
 | |
| 		if (DEV_MODE
 | |
| 		    || !$this->maniaControl->getSettingManager()->getSettingValue($this, self::SETTING_REPORT_USAGE)
 | |
| 		) {
 | |
| 			return;
 | |
| 		}
 | |
| 
 | |
| 		$properties                        = array();
 | |
| 		$properties['ManiaControlVersion'] = ManiaControl::VERSION;
 | |
| 		$properties['OperatingSystem']     = php_uname();
 | |
| 		$properties['PHPVersion']          = phpversion();
 | |
| 		$properties['ServerLogin']         = $this->maniaControl->getServer()->login;
 | |
| 		$properties['TitleId']             = $this->maniaControl->getServer()->titleId;
 | |
| 		$properties['ServerName']          = Formatter::stripDirtyCodes($this->maniaControl->getClient()->getServerName());
 | |
| 		$properties['UpdateChannel']       = $this->maniaControl->getUpdateManager()->getCurrentUpdateChannelSetting();
 | |
| 
 | |
| 		$properties['PlayerCount']     = $this->maniaControl->getPlayerManager()->getPlayerCount();
 | |
| 		$properties['MemoryUsage']     = memory_get_usage();
 | |
| 		$properties['MemoryPeakUsage'] = memory_get_peak_usage();
 | |
| 
 | |
| 		$maxPlayers               = $this->maniaControl->getClient()->getMaxPlayers();
 | |
| 		$properties['MaxPlayers'] = $maxPlayers['CurrentValue'];
 | |
| 
 | |
| 		try {
 | |
| 			$scriptName               = $this->maniaControl->getClient()->getScriptName();
 | |
| 			$properties['ScriptName'] = $scriptName['CurrentValue'];
 | |
| 		} catch (GameModeException $e) {
 | |
| 			$properties['ScriptName'] = '';
 | |
| 		}
 | |
| 
 | |
| 		$properties['ActivePlugins'] = $this->maniaControl->getPluginManager()->getActivePluginsIds();
 | |
| 
 | |
| 		$usageReport = json_encode($properties);
 | |
| 
 | |
| 		$url = ManiaControl::URL_WEBSERVICE . 'usagereport';
 | |
| 		$this->maniaControl->getFileReader()->postData($url, function ($response, $error) {
 | |
| 			$response = json_decode($response);
 | |
| 			if ($error || !$response) {
 | |
| 				Logger::logError('Error while Sending data: ' . print_r($error, true));
 | |
| 			}
 | |
| 		}, $usageReport);
 | |
| 	}
 | |
| }
 |