From 2ec5cbc2aa2fe992d2cccaf6d160950adef521ef Mon Sep 17 00:00:00 2001 From: steckbrief Date: Sun, 10 Dec 2017 20:22:33 +0100 Subject: create story and character improved --- createStory.php | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'createStory.php') diff --git a/createStory.php b/createStory.php index 83d9000..f3c5666 100644 --- a/createStory.php +++ b/createStory.php @@ -13,11 +13,20 @@ $storyName = getMandatoryPostParameter('story-name', '', true); $storyLogoFile = getOptionalFileParameter('story-logo'); $storyDescription = getOptionalPostParameter('story-description'); -$pathToStory = __DIR__.DIRECTORY_SEPARATOR.'stories'.DIRECTORY_SEPARATOR.generateDirectoryName($storyName); +$pathToStory = generatePath(['stories', $storyName], __DIR__); $result = createEntity($pathToStory, $storyDescription, $storyLogoFile, 'logo.png'); if (TRUE !== $result) { - sendHttpReturnCodeAndJson(500, $result); + switch ($result) { + case 1: + sendHttpReturnCodeAndJson(409, 'Story exists already'); + break; + case 2: + sendHttpReturnCodeAndJson(500, 'Could not create directory for story'); + break; + default: + sendHttpReturnCodeAndJson(500, 'Unexpected error'); + } } else { sendHttpReturnCodeAndMessage(201); } -- cgit v1.2.3