| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- <?php
- /**
- * 重庆赤晓店信息科技有限公司
- * https://www.chixiaodian.com
- * Copyright (c) 2023 赤店商城 All rights reserved.
- */
- namespace app\utils\Ocr\Http;
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- class HttpResponse
- {
- private $content;
- private $body;
- private $header;
- private $requestId;
- private $errorMessage;
- private $contentType;
- private $httpStatusCode;
-
- public function getContent()
- {
- return $this->content;
- }
- public function setContent($content)
- {
- $this->content = $content;
- }
- public function setHeader($header)
- {
- $this->header = $header;
- }
- public function getHeader()
- {
- return $this->header;
- }
- public function setBody($body)
- {
- $this->body = $body;
- }
- public function getBody()
- {
- return $this->body;
- }
- public function getRequestId()
- {
- return $this->requestId;
- }
- public function getErrorMessage()
- {
- return $this->errorMessage;
- }
-
- public function getHttpStatusCode()
- {
- return $this->httpStatusCode;
- }
-
- public function setHttpStatusCode($httpStatusCode)
- {
- $this->httpStatusCode = $httpStatusCode;
- }
- public function getContentType()
- {
- return $this->contentType;
- }
-
- public function setContentType($contentType)
- {
- $this->contentType = $contentType;
- }
-
- public function getSuccess()
- {
- if(200 <= $this->httpStatusCode && 300 > $this->httpStatusCode)
- {
- return true;
- }
- return false;
- }
- /**
- *根据headersize大小,区分返回的header和body
- */
- public function setHeaderSize($headerSize) {
- if (0 < $headerSize && 0 < strlen($this->content)) {
- $this->header = substr($this->content, 0, $headerSize);
- self::extractKey();
- }
- if (0 < $headerSize && $headerSize < strlen($this->content)) {
- $this->body = substr($this->content, $headerSize);
- }
- }
- /**
- *提取header中的requestId和errorMessage
- */
- private function extractKey() {
- if (0 < strlen($this->header)) {
- $headers = explode("\r\n", $this->header);
- foreach ($headers as $value) {
- if(strpos($value, "X-Ca-Request-Id:") !== false)
- {
- $this->requestId = trim(substr($value, strlen("X-Ca-Request-Id:")));
- }
- if(strpos($value, "X-Ca-Error-Message:") !== false)
- {
- $this->errorMessage = trim(substr($value, strlen("X-Ca-Error-Message:")));
- }
- }
- }
- }
- }
|