AutorÃa | Ultima modificación | Ver Log |
<?php declare(strict_types=1);namespace EduSharingApiClient;use Exception;/*** Class AppAuthException** Class that describes the handling of curl requests** @author Torsten Simon <simon@edu-sharing.net>* @author Marian Ziegler <ziegler@edu-sharing.net>*/class AppAuthException extends Exception{private const KNOWN_ERRORS = ["the timestamp sent by your client was too old. Please check the clocks of both servers or increase the value 'message_offset_ms'/'message_send_offset_ms' in the app properties file"=> ['MESSAGE SEND TIMESTAMP TO OLD', 'MESSAGE SEND TIMESTAMP newer than MESSAGE ARRIVED TIMESTAMP'],"The ip your client is using for request is not known by the repository. Please add the ip into your 'host_aliases' app properties file"=> ['INVALID_HOST']];/*** AppAuthException constructor** @param string $message*/public function __construct(string $message = '') {parent::__construct($this->getExplanation($message));}/*** Function getExplanation** @param string $message* @return string*/private function getExplanation(string $message): string {foreach (static::KNOWN_ERRORS as $desc => $keys) {foreach ($keys as $k) {if (str_contains($message, $k))return $desc . '(' . $message . ')';}}return $message;}}