|
48 | 48 | class StudioController extends Controller
|
49 | 49 | {
|
50 | 50 | /**
|
51 |
| - * Operation studioIdPut. |
| 51 | + * Operation studioIdDelete. |
52 | 52 | *
|
53 |
| - * Update a Studio |
| 53 | + * Delete a studio (only available to studio admins) |
54 | 54 | *
|
55 | 55 | * @param Request $request the Symfony request to handle
|
56 | 56 | *
|
57 | 57 | * @return Response the Symfony response
|
58 | 58 | */
|
59 |
| - public function studioIdPutAction(Request $request, $id) |
| 59 | + public function studioIdDeleteAction(Request $request, $id) |
| 60 | + { |
| 61 | + // Handle authentication |
| 62 | + // Authentication 'BearerAuth' required |
| 63 | + // HTTP bearer authentication required |
| 64 | + $securityBearerAuth = $request->headers->get('authorization'); |
| 65 | + |
| 66 | + // Read out all input parameter values into variables |
| 67 | + $accept_language = $request->headers->get('Accept-Language', 'en'); |
| 68 | + |
| 69 | + // Use the default value if no value was provided |
| 70 | + |
| 71 | + // Deserialize the input values that needs it |
| 72 | + try { |
| 73 | + $id = $this->deserialize($id, 'string', 'string'); |
| 74 | + $accept_language = $this->deserialize($accept_language, 'string', 'string'); |
| 75 | + } catch (SerializerRuntimeException $exception) { |
| 76 | + return $this->createBadRequestResponse($exception->getMessage()); |
| 77 | + } |
| 78 | + |
| 79 | + // Validate the input values |
| 80 | + $asserts = []; |
| 81 | + $asserts[] = new Assert\NotNull(); |
| 82 | + $asserts[] = new Assert\Type('string'); |
| 83 | + $asserts[] = new Assert\Regex('/^[a-zA-Z0-9\\-]+$/'); |
| 84 | + $response = $this->validate($id, $asserts); |
| 85 | + if ($response instanceof Response) { |
| 86 | + return $response; |
| 87 | + } |
| 88 | + $asserts = []; |
| 89 | + $asserts[] = new Assert\Type('string'); |
| 90 | + $response = $this->validate($accept_language, $asserts); |
| 91 | + if ($response instanceof Response) { |
| 92 | + return $response; |
| 93 | + } |
| 94 | + |
| 95 | + try { |
| 96 | + $handler = $this->getApiHandler(); |
| 97 | + |
| 98 | + // Set authentication method 'BearerAuth' |
| 99 | + $handler->setBearerAuth($securityBearerAuth); |
| 100 | + |
| 101 | + // Make the call to the business logic |
| 102 | + $responseCode = 204; |
| 103 | + $responseHeaders = []; |
| 104 | + |
| 105 | + $handler->studioIdDelete($id, $accept_language, $responseCode, $responseHeaders); |
| 106 | + |
| 107 | + $message = match ($responseCode) { |
| 108 | + 204 => 'OK', |
| 109 | + 400 => 'Bad request (Invalid, or missing parameters)', |
| 110 | + 401 => 'Invalid JWT token | JWT token not found | JWT token expired', |
| 111 | + 403 => 'Insufficient privileges, action not allowed.', |
| 112 | + 404 => 'Not found', |
| 113 | + 406 => 'Not acceptable - client must accept application/json as content type', |
| 114 | + default => '', |
| 115 | + }; |
| 116 | + |
| 117 | + return new Response( |
| 118 | + '', |
| 119 | + $responseCode, |
| 120 | + array_merge( |
| 121 | + $responseHeaders, |
| 122 | + [ |
| 123 | + 'X-OpenAPI-Message' => $message, |
| 124 | + ] |
| 125 | + ) |
| 126 | + ); |
| 127 | + } catch (\Throwable $fallthrough) { |
| 128 | + return $this->createErrorResponse(new HttpException(500, 'An unsuspected error occurred.', $fallthrough)); |
| 129 | + } |
| 130 | + } |
| 131 | + |
| 132 | + /** |
| 133 | + * Operation studioIdGet. |
| 134 | + * |
| 135 | + * Get studio details (private studios are only available to members) |
| 136 | + * |
| 137 | + * @param Request $request the Symfony request to handle |
| 138 | + * |
| 139 | + * @return Response the Symfony response |
| 140 | + */ |
| 141 | + public function studioIdGetAction(Request $request, $id) |
| 142 | + { |
| 143 | + // Figure out what data format to return to the client |
| 144 | + $produces = ['application/json']; |
| 145 | + // Figure out what the client accepts |
| 146 | + $clientAccepts = $request->headers->has('Accept') ? $request->headers->get('Accept') : '*/*'; |
| 147 | + $responseFormat = $this->getOutputFormat($clientAccepts, $produces); |
| 148 | + if (null === $responseFormat) { |
| 149 | + return new Response('', 406); |
| 150 | + } |
| 151 | + |
| 152 | + // Handle authentication |
| 153 | + |
| 154 | + // Read out all input parameter values into variables |
| 155 | + $accept_language = $request->headers->get('Accept-Language', 'en'); |
| 156 | + |
| 157 | + // Use the default value if no value was provided |
| 158 | + |
| 159 | + // Deserialize the input values that needs it |
| 160 | + try { |
| 161 | + $id = $this->deserialize($id, 'string', 'string'); |
| 162 | + $accept_language = $this->deserialize($accept_language, 'string', 'string'); |
| 163 | + } catch (SerializerRuntimeException $exception) { |
| 164 | + return $this->createBadRequestResponse($exception->getMessage()); |
| 165 | + } |
| 166 | + |
| 167 | + // Validate the input values |
| 168 | + $asserts = []; |
| 169 | + $asserts[] = new Assert\NotNull(); |
| 170 | + $asserts[] = new Assert\Type('string'); |
| 171 | + $asserts[] = new Assert\Regex('/^[a-zA-Z0-9\\-]+$/'); |
| 172 | + $response = $this->validate($id, $asserts); |
| 173 | + if ($response instanceof Response) { |
| 174 | + return $response; |
| 175 | + } |
| 176 | + $asserts = []; |
| 177 | + $asserts[] = new Assert\Type('string'); |
| 178 | + $response = $this->validate($accept_language, $asserts); |
| 179 | + if ($response instanceof Response) { |
| 180 | + return $response; |
| 181 | + } |
| 182 | + |
| 183 | + try { |
| 184 | + $handler = $this->getApiHandler(); |
| 185 | + |
| 186 | + // Make the call to the business logic |
| 187 | + $responseCode = 200; |
| 188 | + $responseHeaders = []; |
| 189 | + |
| 190 | + $result = $handler->studioIdGet($id, $accept_language, $responseCode, $responseHeaders); |
| 191 | + |
| 192 | + $message = match ($responseCode) { |
| 193 | + 200 => 'OK', |
| 194 | + 400 => 'Bad request (Invalid, or missing parameters)', |
| 195 | + 401 => 'Invalid JWT token | JWT token not found | JWT token expired', |
| 196 | + 403 => 'Insufficient privileges, action not allowed.', |
| 197 | + 404 => 'Not found', |
| 198 | + 406 => 'Not acceptable - client must accept application/json as content type', |
| 199 | + default => '', |
| 200 | + }; |
| 201 | + |
| 202 | + return new Response( |
| 203 | + null !== $result ? $this->serialize($result, $responseFormat) : '', |
| 204 | + $responseCode, |
| 205 | + array_merge( |
| 206 | + $responseHeaders, |
| 207 | + [ |
| 208 | + 'Content-Type' => $responseFormat, |
| 209 | + 'X-OpenAPI-Message' => $message, |
| 210 | + ] |
| 211 | + ) |
| 212 | + ); |
| 213 | + } catch (\Throwable $fallthrough) { |
| 214 | + return $this->createErrorResponse(new HttpException(500, 'An unsuspected error occurred.', $fallthrough)); |
| 215 | + } |
| 216 | + } |
| 217 | + |
| 218 | + /** |
| 219 | + * Operation studioIdPost. |
| 220 | + * |
| 221 | + * Update a Studio (only available to studio admins) |
| 222 | + * |
| 223 | + * @param Request $request the Symfony request to handle |
| 224 | + * |
| 225 | + * @return Response the Symfony response |
| 226 | + */ |
| 227 | + public function studioIdPostAction(Request $request, $id) |
60 | 228 | {
|
61 | 229 | // Figure out what data format to return to the client
|
62 | 230 | $produces = ['application/json'];
|
@@ -150,7 +318,7 @@ public function studioIdPutAction(Request $request, $id)
|
150 | 318 | $responseCode = 200;
|
151 | 319 | $responseHeaders = [];
|
152 | 320 |
|
153 |
| - $result = $handler->studioIdPut($id, $accept_language, $name, $description, $is_public, $enable_comments, $image_file, $responseCode, $responseHeaders); |
| 321 | + $result = $handler->studioIdPost($id, $accept_language, $name, $description, $is_public, $enable_comments, $image_file, $responseCode, $responseHeaders); |
154 | 322 |
|
155 | 323 | $message = match ($responseCode) {
|
156 | 324 | 200 => 'Studio successfully updated.',
|
|
0 commit comments