Generated 2023-03-05 for captcha.
This commit is contained in:
125
captcha/src/CaptchaClient.cc
Normal file
125
captcha/src/CaptchaClient.cc
Normal file
@@ -0,0 +1,125 @@
|
||||
/*
|
||||
* Copyright 2009-2017 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/captcha/CaptchaClient.h>
|
||||
#include <alibabacloud/core/SimpleCredentialsProvider.h>
|
||||
|
||||
using namespace AlibabaCloud;
|
||||
using namespace AlibabaCloud::Location;
|
||||
using namespace AlibabaCloud::Captcha;
|
||||
using namespace AlibabaCloud::Captcha::Model;
|
||||
|
||||
namespace
|
||||
{
|
||||
const std::string SERVICE_NAME = "captcha";
|
||||
}
|
||||
|
||||
CaptchaClient::CaptchaClient(const Credentials &credentials, const ClientConfiguration &configuration) :
|
||||
RpcServiceClient(SERVICE_NAME, std::make_shared<SimpleCredentialsProvider>(credentials), configuration)
|
||||
{
|
||||
auto locationClient = std::make_shared<LocationClient>(credentials, configuration);
|
||||
endpointProvider_ = std::make_shared<EndpointProvider>(locationClient, configuration.regionId(), SERVICE_NAME, "");
|
||||
}
|
||||
|
||||
CaptchaClient::CaptchaClient(const std::shared_ptr<CredentialsProvider>& credentialsProvider, const ClientConfiguration & configuration) :
|
||||
RpcServiceClient(SERVICE_NAME, credentialsProvider, configuration)
|
||||
{
|
||||
auto locationClient = std::make_shared<LocationClient>(credentialsProvider, configuration);
|
||||
endpointProvider_ = std::make_shared<EndpointProvider>(locationClient, configuration.regionId(), SERVICE_NAME, "");
|
||||
}
|
||||
|
||||
CaptchaClient::CaptchaClient(const std::string & accessKeyId, const std::string & accessKeySecret, const ClientConfiguration & configuration) :
|
||||
RpcServiceClient(SERVICE_NAME, std::make_shared<SimpleCredentialsProvider>(accessKeyId, accessKeySecret), configuration)
|
||||
{
|
||||
auto locationClient = std::make_shared<LocationClient>(accessKeyId, accessKeySecret, configuration);
|
||||
endpointProvider_ = std::make_shared<EndpointProvider>(locationClient, configuration.regionId(), SERVICE_NAME, "");
|
||||
}
|
||||
|
||||
CaptchaClient::~CaptchaClient()
|
||||
{}
|
||||
|
||||
CaptchaClient::VerifyCaptchaOutcome CaptchaClient::verifyCaptcha(const VerifyCaptchaRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
if (!endpointOutcome.isSuccess())
|
||||
return VerifyCaptchaOutcome(endpointOutcome.error());
|
||||
|
||||
auto outcome = makeRequest(endpointOutcome.result(), request);
|
||||
|
||||
if (outcome.isSuccess())
|
||||
return VerifyCaptchaOutcome(VerifyCaptchaResult(outcome.result()));
|
||||
else
|
||||
return VerifyCaptchaOutcome(outcome.error());
|
||||
}
|
||||
|
||||
void CaptchaClient::verifyCaptchaAsync(const VerifyCaptchaRequest& request, const VerifyCaptchaAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
|
||||
{
|
||||
auto fn = [this, request, handler, context]()
|
||||
{
|
||||
handler(this, request, verifyCaptcha(request), context);
|
||||
};
|
||||
|
||||
asyncExecute(new Runnable(fn));
|
||||
}
|
||||
|
||||
CaptchaClient::VerifyCaptchaOutcomeCallable CaptchaClient::verifyCaptchaCallable(const VerifyCaptchaRequest &request) const
|
||||
{
|
||||
auto task = std::make_shared<std::packaged_task<VerifyCaptchaOutcome()>>(
|
||||
[this, request]()
|
||||
{
|
||||
return this->verifyCaptcha(request);
|
||||
});
|
||||
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
CaptchaClient::VerifyIntelligentCaptchaOutcome CaptchaClient::verifyIntelligentCaptcha(const VerifyIntelligentCaptchaRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
if (!endpointOutcome.isSuccess())
|
||||
return VerifyIntelligentCaptchaOutcome(endpointOutcome.error());
|
||||
|
||||
auto outcome = makeRequest(endpointOutcome.result(), request);
|
||||
|
||||
if (outcome.isSuccess())
|
||||
return VerifyIntelligentCaptchaOutcome(VerifyIntelligentCaptchaResult(outcome.result()));
|
||||
else
|
||||
return VerifyIntelligentCaptchaOutcome(outcome.error());
|
||||
}
|
||||
|
||||
void CaptchaClient::verifyIntelligentCaptchaAsync(const VerifyIntelligentCaptchaRequest& request, const VerifyIntelligentCaptchaAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
|
||||
{
|
||||
auto fn = [this, request, handler, context]()
|
||||
{
|
||||
handler(this, request, verifyIntelligentCaptcha(request), context);
|
||||
};
|
||||
|
||||
asyncExecute(new Runnable(fn));
|
||||
}
|
||||
|
||||
CaptchaClient::VerifyIntelligentCaptchaOutcomeCallable CaptchaClient::verifyIntelligentCaptchaCallable(const VerifyIntelligentCaptchaRequest &request) const
|
||||
{
|
||||
auto task = std::make_shared<std::packaged_task<VerifyIntelligentCaptchaOutcome()>>(
|
||||
[this, request]()
|
||||
{
|
||||
return this->verifyIntelligentCaptcha(request);
|
||||
});
|
||||
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
36
captcha/src/model/VerifyCaptchaRequest.cc
Normal file
36
captcha/src/model/VerifyCaptchaRequest.cc
Normal file
@@ -0,0 +1,36 @@
|
||||
/*
|
||||
* Copyright 2009-2017 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/captcha/model/VerifyCaptchaRequest.h>
|
||||
|
||||
using AlibabaCloud::Captcha::Model::VerifyCaptchaRequest;
|
||||
|
||||
VerifyCaptchaRequest::VerifyCaptchaRequest()
|
||||
: RpcServiceRequest("captcha", "2023-03-05", "VerifyCaptcha") {
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
VerifyCaptchaRequest::~VerifyCaptchaRequest() {}
|
||||
|
||||
std::string VerifyCaptchaRequest::getCaptchaVerifyParam() const {
|
||||
return captchaVerifyParam_;
|
||||
}
|
||||
|
||||
void VerifyCaptchaRequest::setCaptchaVerifyParam(const std::string &captchaVerifyParam) {
|
||||
captchaVerifyParam_ = captchaVerifyParam;
|
||||
setParameter(std::string("CaptchaVerifyParam"), captchaVerifyParam);
|
||||
}
|
||||
|
||||
73
captcha/src/model/VerifyCaptchaResult.cc
Normal file
73
captcha/src/model/VerifyCaptchaResult.cc
Normal file
@@ -0,0 +1,73 @@
|
||||
/*
|
||||
* Copyright 2009-2017 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/captcha/model/VerifyCaptchaResult.h>
|
||||
#include <json/json.h>
|
||||
|
||||
using namespace AlibabaCloud::Captcha;
|
||||
using namespace AlibabaCloud::Captcha::Model;
|
||||
|
||||
VerifyCaptchaResult::VerifyCaptchaResult() :
|
||||
ServiceResult()
|
||||
{}
|
||||
|
||||
VerifyCaptchaResult::VerifyCaptchaResult(const std::string &payload) :
|
||||
ServiceResult()
|
||||
{
|
||||
parse(payload);
|
||||
}
|
||||
|
||||
VerifyCaptchaResult::~VerifyCaptchaResult()
|
||||
{}
|
||||
|
||||
void VerifyCaptchaResult::parse(const std::string &payload)
|
||||
{
|
||||
Json::Reader reader;
|
||||
Json::Value value;
|
||||
reader.parse(payload, value);
|
||||
setRequestId(value["RequestId"].asString());
|
||||
auto resultNode = value["Result"];
|
||||
if(!resultNode["VerifyResult"].isNull())
|
||||
result_.verifyResult = resultNode["VerifyResult"].asString() == "true";
|
||||
if(!value["Success"].isNull())
|
||||
success_ = value["Success"].asString() == "true";
|
||||
if(!value["Code"].isNull())
|
||||
code_ = value["Code"].asString();
|
||||
if(!value["Message"].isNull())
|
||||
message_ = value["Message"].asString();
|
||||
|
||||
}
|
||||
|
||||
std::string VerifyCaptchaResult::getMessage()const
|
||||
{
|
||||
return message_;
|
||||
}
|
||||
|
||||
std::string VerifyCaptchaResult::getCode()const
|
||||
{
|
||||
return code_;
|
||||
}
|
||||
|
||||
bool VerifyCaptchaResult::getSuccess()const
|
||||
{
|
||||
return success_;
|
||||
}
|
||||
|
||||
VerifyCaptchaResult::Result VerifyCaptchaResult::getResult()const
|
||||
{
|
||||
return result_;
|
||||
}
|
||||
|
||||
45
captcha/src/model/VerifyIntelligentCaptchaRequest.cc
Normal file
45
captcha/src/model/VerifyIntelligentCaptchaRequest.cc
Normal file
@@ -0,0 +1,45 @@
|
||||
/*
|
||||
* Copyright 2009-2017 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/captcha/model/VerifyIntelligentCaptchaRequest.h>
|
||||
|
||||
using AlibabaCloud::Captcha::Model::VerifyIntelligentCaptchaRequest;
|
||||
|
||||
VerifyIntelligentCaptchaRequest::VerifyIntelligentCaptchaRequest()
|
||||
: RpcServiceRequest("captcha", "2023-03-05", "VerifyIntelligentCaptcha") {
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
VerifyIntelligentCaptchaRequest::~VerifyIntelligentCaptchaRequest() {}
|
||||
|
||||
std::string VerifyIntelligentCaptchaRequest::getCaptchaVerifyParam() const {
|
||||
return captchaVerifyParam_;
|
||||
}
|
||||
|
||||
void VerifyIntelligentCaptchaRequest::setCaptchaVerifyParam(const std::string &captchaVerifyParam) {
|
||||
captchaVerifyParam_ = captchaVerifyParam;
|
||||
setBodyParameter(std::string("CaptchaVerifyParam"), captchaVerifyParam);
|
||||
}
|
||||
|
||||
std::string VerifyIntelligentCaptchaRequest::getSceneId() const {
|
||||
return sceneId_;
|
||||
}
|
||||
|
||||
void VerifyIntelligentCaptchaRequest::setSceneId(const std::string &sceneId) {
|
||||
sceneId_ = sceneId;
|
||||
setBodyParameter(std::string("SceneId"), sceneId);
|
||||
}
|
||||
|
||||
75
captcha/src/model/VerifyIntelligentCaptchaResult.cc
Normal file
75
captcha/src/model/VerifyIntelligentCaptchaResult.cc
Normal file
@@ -0,0 +1,75 @@
|
||||
/*
|
||||
* Copyright 2009-2017 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/captcha/model/VerifyIntelligentCaptchaResult.h>
|
||||
#include <json/json.h>
|
||||
|
||||
using namespace AlibabaCloud::Captcha;
|
||||
using namespace AlibabaCloud::Captcha::Model;
|
||||
|
||||
VerifyIntelligentCaptchaResult::VerifyIntelligentCaptchaResult() :
|
||||
ServiceResult()
|
||||
{}
|
||||
|
||||
VerifyIntelligentCaptchaResult::VerifyIntelligentCaptchaResult(const std::string &payload) :
|
||||
ServiceResult()
|
||||
{
|
||||
parse(payload);
|
||||
}
|
||||
|
||||
VerifyIntelligentCaptchaResult::~VerifyIntelligentCaptchaResult()
|
||||
{}
|
||||
|
||||
void VerifyIntelligentCaptchaResult::parse(const std::string &payload)
|
||||
{
|
||||
Json::Reader reader;
|
||||
Json::Value value;
|
||||
reader.parse(payload, value);
|
||||
setRequestId(value["RequestId"].asString());
|
||||
auto resultNode = value["Result"];
|
||||
if(!resultNode["VerifyResult"].isNull())
|
||||
result_.verifyResult = resultNode["VerifyResult"].asString() == "true";
|
||||
if(!resultNode["VerifyCode"].isNull())
|
||||
result_.verifyCode = resultNode["VerifyCode"].asString();
|
||||
if(!value["Success"].isNull())
|
||||
success_ = value["Success"].asString() == "true";
|
||||
if(!value["Code"].isNull())
|
||||
code_ = value["Code"].asString();
|
||||
if(!value["Message"].isNull())
|
||||
message_ = value["Message"].asString();
|
||||
|
||||
}
|
||||
|
||||
std::string VerifyIntelligentCaptchaResult::getMessage()const
|
||||
{
|
||||
return message_;
|
||||
}
|
||||
|
||||
std::string VerifyIntelligentCaptchaResult::getCode()const
|
||||
{
|
||||
return code_;
|
||||
}
|
||||
|
||||
bool VerifyIntelligentCaptchaResult::getSuccess()const
|
||||
{
|
||||
return success_;
|
||||
}
|
||||
|
||||
VerifyIntelligentCaptchaResult::Result VerifyIntelligentCaptchaResult::getResult()const
|
||||
{
|
||||
return result_;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user