mirror of
				https://github.com/grocy/grocy.git
				synced 2025-10-31 18:49:38 +00:00 
			
		
		
		
	Always execute migration 9999 (can be used to fix things manually) Optimized meal plan navigation / date range filtering Prepared next release Pulled translations from Transifex Various code optimizations
		
			
				
	
	
		
			93 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			93 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Grocy\Controllers;
 | |
| 
 | |
| class SystemApiController extends BaseApiController
 | |
| {
 | |
| 	public function GetConfig(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args)
 | |
| 	{
 | |
| 		try
 | |
| 		{
 | |
| 			$constants = get_defined_constants();
 | |
| 
 | |
| 			// Some GROCY_* constants are not really config settings and therefore should not be exposed
 | |
| 			unset($constants['GROCY_AUTHENTICATED'], $constants['GROCY_DATAPATH'], $constants['GROCY_IS_EMBEDDED_INSTALL'], $constants['GROCY_USER_ID']);
 | |
| 
 | |
| 			$returnArray = [];
 | |
| 
 | |
| 			foreach ($constants as $constant => $value)
 | |
| 			{
 | |
| 				if (substr($constant, 0, 6) === 'GROCY_')
 | |
| 				{
 | |
| 					$returnArray[substr($constant, 6)] = $value;
 | |
| 				}
 | |
| 			}
 | |
| 
 | |
| 			return $this->ApiResponse($response, $returnArray);
 | |
| 		}
 | |
| 		catch (\Exception $ex)
 | |
| 		{
 | |
| 			return $this->GenericErrorResponse($response, $ex->getMessage());
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	public function GetDbChangedTime(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args)
 | |
| 	{
 | |
| 		return $this->ApiResponse($response, [
 | |
| 			'changed_time' => $this->getDatabaseService()->GetDbChangedTime()
 | |
| 		]);
 | |
| 	}
 | |
| 
 | |
| 	public function GetSystemInfo(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args)
 | |
| 	{
 | |
| 		return $this->ApiResponse($response, $this->getApplicationService()->GetSystemInfo());
 | |
| 	}
 | |
| 
 | |
| 	public function GetSystemTime(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args)
 | |
| 	{
 | |
| 		try
 | |
| 		{
 | |
| 			$offset = 0;
 | |
| 			$params = $request->getQueryParams();
 | |
| 			if (isset($params['offset']))
 | |
| 			{
 | |
| 				if (filter_var($params['offset'], FILTER_VALIDATE_INT) === false)
 | |
| 				{
 | |
| 					throw new \Exception('Query parameter "offset" is not a valid integer');
 | |
| 				}
 | |
| 
 | |
| 				$offset = $params['offset'];
 | |
| 			}
 | |
| 
 | |
| 			return $this->ApiResponse($response, $this->getApplicationService()->GetSystemTime($offset));
 | |
| 		}
 | |
| 		catch (\Exception $ex)
 | |
| 		{
 | |
| 			return $this->GenericErrorResponse($response, $ex->getMessage());
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	public function LogMissingLocalization(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args)
 | |
| 	{
 | |
| 		if (GROCY_MODE === 'dev')
 | |
| 		{
 | |
| 			try
 | |
| 			{
 | |
| 				$requestBody = $this->GetParsedAndFilteredRequestBody($request);
 | |
| 
 | |
| 				$this->getLocalizationService()->CheckAndAddMissingTranslationToPot($requestBody['text']);
 | |
| 				return $this->EmptyApiResponse($response);
 | |
| 			}
 | |
| 			catch (\Exception $ex)
 | |
| 			{
 | |
| 				return $this->GenericErrorResponse($response, $ex->getMessage());
 | |
| 			}
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	public function GetLocalizationStrings(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args)
 | |
| 	{
 | |
| 		return $this->ApiResponse($response, json_decode($this->getLocalizationService()->GetPoAsJsonString()), true);
 | |
| 	}
 | |
| }
 |