1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
use crate::client::endpoint::Endpoint;
use crate::client::error::PayPalError;
use crate::client::paypal::Client;
use crate::resources::enums::verification_status::VerificationStatus;
use reqwest::Method;
use serde::{Deserialize, Serialize};
use serde_with::skip_serializing_none;
use std::borrow::Cow;
pub struct Webhook;
impl Webhook {
pub async fn verify(
client: &Client,
dto: VerifyWebhookSignatureDto,
) -> Result<VerifyWebhookSignatureResponse, PayPalError> {
client.post(&VerifyWebhookSignature::new(dto)).await
}
}
#[skip_serializing_none]
#[derive(Clone, Debug, Serialize)]
pub struct VerifyWebhookSignatureDto {
pub auth_algo: String,
pub cert_url: String,
pub transmission_id: String,
pub transmission_sig: String,
pub transmission_time: String,
pub webhook_event: String,
pub webhook_id: String,
}
#[derive(Clone, Debug, Deserialize)]
pub struct VerifyWebhookSignatureResponse {
pub verification_status: VerificationStatus,
}
#[derive(Debug)]
struct VerifyWebhookSignature {
pub body: VerifyWebhookSignatureDto,
}
impl VerifyWebhookSignature {
pub fn new(body: VerifyWebhookSignatureDto) -> Self {
Self { body }
}
}
impl Endpoint for VerifyWebhookSignature {
type QueryParams = ();
type RequestBody = VerifyWebhookSignatureDto;
type ResponseBody = VerifyWebhookSignatureResponse;
fn path(&self) -> Cow<str> {
Cow::Borrowed("v1/notifications/verify-webhook-signature")
}
fn request_body(&self) -> Option<Self::RequestBody> {
Some(self.body.clone())
}
fn request_method(&self) -> Method {
Method::POST
}
}