Better error message and updated licence

Cette révision appartient à :
Lukas Metzger 2018-05-13 16:16:26 +02:00
Parent bf9f68a450
révision 7cb02511ae
2 fichiers modifiés avec 3 ajouts et 3 suppressions

Voir le fichier

@ -187,7 +187,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.
Copyright 2016-2017 Lukas Metzger
Copyright 2016-2018 Lukas Metzger
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

Voir le fichier

@ -73,8 +73,8 @@ class Remote
$this->logger->debug('User tried to update non existent record via changekey api.');
return $res->withJson(['error' => 'The given record does not exist.'], 404);
} catch (\Exceptions\ForbiddenException $e) {
$this->logger->debug('User tried to update an record via changekey api with incorrect password.');
return $res->withJson(['error' => 'The provided password was invalid.'], 403);
$this->logger->debug('User tried to update an record via changekey api with incorrect signature.');
return $res->withJson(['error' => 'The provided signature was invalid.'], 403);
}
$this->logger->info('Record ' . $record . ' was changed via the changekey api.');