You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

V2Response.php 2.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <?php
  2. /**
  3. * @copyright 2016 Roeland Jago Douma <roeland@famdouma.nl>
  4. *
  5. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  6. * @author Roeland Jago Douma <roeland@famdouma.nl>
  7. *
  8. * @license GNU AGPL version 3 or any later version
  9. *
  10. * This program is free software: you can redistribute it and/or modify
  11. * it under the terms of the GNU Affero General Public License as
  12. * published by the Free Software Foundation, either version 3 of the
  13. * License, or (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU Affero General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU Affero General Public License
  21. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. *
  23. */
  24. namespace OC\AppFramework\OCS;
  25. use OCP\AppFramework\Http;
  26. use OCP\AppFramework\OCSController;
  27. class V2Response extends BaseResponse {
  28. /**
  29. * The V2 endpoint just passes on status codes.
  30. * Of course we have to map the OCS specific codes to proper HTTP status codes
  31. *
  32. * @return int
  33. */
  34. public function getStatus() {
  35. $status = parent::getStatus();
  36. if ($status === OCSController::RESPOND_UNAUTHORISED) {
  37. return Http::STATUS_UNAUTHORIZED;
  38. } elseif ($status === OCSController::RESPOND_NOT_FOUND) {
  39. return Http::STATUS_NOT_FOUND;
  40. } elseif ($status === OCSController::RESPOND_SERVER_ERROR || $status === OCSController::RESPOND_UNKNOWN_ERROR) {
  41. return Http::STATUS_INTERNAL_SERVER_ERROR;
  42. } elseif ($status < 200 || $status > 600) {
  43. return Http::STATUS_BAD_REQUEST;
  44. }
  45. return $status;
  46. }
  47. /**
  48. * Construct the meta part of the response
  49. * And then late the base class render
  50. *
  51. * @return string
  52. */
  53. public function render() {
  54. $status = parent::getStatus();
  55. $meta = [
  56. 'status' => $status >= 200 && $status < 300 ? 'ok' : 'failure',
  57. 'statuscode' => $this->getOCSStatus(),
  58. 'message' => $status >= 200 && $status < 300 ? 'OK' : $this->statusMessage,
  59. ];
  60. if ($this->itemsCount !== null) {
  61. $meta['totalitems'] = $this->itemsCount;
  62. }
  63. if ($this->itemsPerPage !== null) {
  64. $meta['itemsperpage'] = $this->itemsPerPage;
  65. }
  66. return $this->renderResult($meta);
  67. }
  68. }