| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- /*
- * Copyright 1999-2019 Alibaba Cloud All rights reserved.
- *
- * Licensed 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.
- */
- #include <alibabacloud/core/AlibabaCloud.h>
- #include <alibabacloud/core/RpcServiceClient.h>
- #include <alibabacloud/core/HmacSha1Signer.h>
- #include <algorithm>
- #include <iomanip>
- #include <sstream>
- #include <alibabacloud/core/Utils.h>
- namespace AlibabaCloud {
- RpcServiceClient::RpcServiceClient(const std::string & servicename,
- const std::shared_ptr<CredentialsProvider> &credentialsProvider,
- const ClientConfiguration &configuration,
- const std::shared_ptr<Signer> &signer) :
- CoreClient(servicename, configuration),
- credentialsProvider_(credentialsProvider),
- signer_(signer) {
- }
- RpcServiceClient::~RpcServiceClient() {
- }
- RpcServiceClient::JsonOutcome RpcServiceClient::makeRequest(
- const std::string &endpoint,
- const RpcServiceRequest &request, HttpRequest::Method method) const
- {
- if (method == HttpRequest::Method::Get)
- {
- method = request.method();
- }
- auto outcome = AttemptRequest(endpoint, request, method);
- if (outcome.isSuccess())
- return JsonOutcome(std::string(outcome.result().body(),
- outcome.result().bodySize()));
- else
- return JsonOutcome(outcome.error());
- }
- HttpRequest RpcServiceClient::buildHttpRequest(const std::string & endpoint,
- const ServiceRequest &msg, HttpRequest::Method method)const {
- return buildHttpRequest(endpoint,
- dynamic_cast<const RpcServiceRequest& >(msg), method);
- }
- HttpRequest RpcServiceClient::buildHttpRequest(const std::string & endpoint,
- const RpcServiceRequest &msg, HttpRequest::Method method) const {
- const Credentials credentials = credentialsProvider_->getCredentials();
- Url url;
- if (msg.scheme().empty())
- {
- url.setScheme("https");
- }
- else
- {
- url.setScheme(msg.scheme());
- }
- url.setHost(endpoint);
- url.setPath(msg.resourcePath());
- std::map<std::string, std::string> signParams;
- auto params = msg.parameters();
- for (const auto &p : params)
- {
- if (!p.second.empty())
- signParams[p.first] = p.second;
- }
- signParams["AccessKeyId"] = credentials.accessKeyId();
- signParams["Format"] = "JSON";
- signParams["RegionId"] = configuration().regionId();
- signParams["SecurityToken"] = credentials.sessionToken();
- signParams["SignatureMethod"] = signer_->name();
- signParams["SignatureNonce"] = GenerateUuid();
- signParams["SignatureVersion"] = signer_->version();
- std::time_t t = std::time(nullptr);
- std::stringstream ss;
- #if defined(__GNUG__) && __GNUC__ < 5
- char tmbuff[26];
- strftime(tmbuff, 26, "%FT%TZ", std::gmtime(&t));
- ss << tmbuff;
- #else
- ss << std::put_time(std::gmtime(&t), "%FT%TZ");
- #endif
- signParams["Timestamp"] = ss.str();
- signParams["Version"] = msg.version();
- std::map<std::string, std::string> query;
- for (const auto &p : signParams)
- {
- query[p.first] = p.second;
- }
- auto body_params = msg.bodyParameters();
- for (const auto &p : body_params)
- {
- signParams[p.first] = p.second;
- }
- std::stringstream plaintext;
- plaintext << HttpMethodToString(method)
- << "&"
- << UrlEncode(url.path())
- << "&"
- << UrlEncode(canonicalizedQuery(signParams));
- query["Signature"] = signer_->generate(plaintext.str(),
- credentials.accessKeySecret() + "&");
- std::stringstream queryString;
- for (const auto &p : query)
- queryString << "&" << p.first << "=" << UrlEncode(p.second);
- url.setQuery(queryString.str().substr(1));
- HttpRequest request(url);
- if (msg.connectTimeout() != kInvalidTimeout)
- {
- request.setConnectTimeout(msg.connectTimeout());
- }
- else
- {
- request.setConnectTimeout(configuration().connectTimeout());
- }
- for (const auto &h : msg.headers())
- {
- if (!h.second.empty())
- {
- request.setHeader(h.first, h.second);
- }
- }
- if (msg.readTimeout() != kInvalidTimeout)
- {
- request.setReadTimeout(msg.readTimeout());
- }
- else
- {
- request.setReadTimeout(configuration().readTimeout());
- }
- request.setMethod(method);
- request.setHeader("Host", url.host());
- request.setHeader("x-sdk-client",
- std::string("CPP/").append(ALIBABACLOUD_VERSION_STR));
- std::stringstream tmp;
- for (const auto &p : body_params)
- tmp << "&" << p.first << "=" << UrlEncode(p.second);
- if(tmp.str().length() > 0){
- std::string body = tmp.str().substr(1);
- request.setBody(body.c_str(), body.length());
- }
- return request;
- }
- } // namespace AlibabaCloud
|