rusty-razorpay 0.3.2

Razorpay SDK for Rust
Documentation
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
#[cfg(not(feature = "std"))]
use alloc::{borrow::ToOwned, format, string::String, vec::Vec};
#[cfg(not(feature = "std"))]
use core::fmt::{Display, Formatter, Result as FormatterResult};
#[cfg(feature = "std")]
use std::{
    collections::HashMap,
    fmt::{Display, Formatter, Result as FormatterResult},
};

use chrono::{
    serde::{ts_seconds, ts_seconds_option},
    DateTime, Utc,
};
#[cfg(not(feature = "std"))]
use hashbrown::HashMap;
use serde::{Deserialize, Serialize};
use serde_json::Value;

use crate::{
    account::Account,
    api::RequestParams,
    dispute::Dispute,
    error::{InternalApiResult, RazorpayResult},
    invoice::Invoice,
    order::Order,
    payment::Payment,
    refund::Refund,
    subscription::Subscription,
    util::generate_webhook_signature,
    AccountId, Collection, Filter, Razorpay,
};

#[derive(Debug)]
pub enum WebhookError {
    ParseError(serde_json::error::Error),
    BadSignature,
}

impl Display for WebhookError {
    fn fmt(&self, f: &mut Formatter<'_>) -> FormatterResult {
        match self {
            WebhookError::ParseError(error) => {
                write!(f, "Parsing error: {}", error)
            }
            WebhookError::BadSignature => write!(f, "Bad signature"),
        }
    }
}

#[cfg(feature = "std")]
impl std::error::Error for WebhookError {}

impl From<serde_json::error::Error> for WebhookError {
    fn from(error: serde_json::error::Error) -> Self {
        Self::ParseError(error)
    }
}

#[derive(Debug, Serialize, Deserialize, Clone, Eq, PartialEq)]
pub enum EventType {
    // Payment events
    #[serde(rename = "payment.authorized")]
    PaymentAuthorized,
    #[serde(rename = "payment.failed")]
    PaymentFailed,
    #[serde(rename = "payment.captured")]
    PaymentCaptured,
    #[serde(rename = "payment.dispute.created")]
    PaymentDisputeCreated,
    #[serde(rename = "payment.dispute.won")]
    PaymentDisputeWon,
    #[serde(rename = "payment.dispute.lost")]
    PaymentDisputeLost,
    #[serde(rename = "payment.dispute.closed")]
    PaymentDisputeClosed,
    #[serde(rename = "payment.dispute.under_review")]
    PaymentDisputeUnderReview,
    #[serde(rename = "payment.dispute.action_required")]
    PaymentDisputeActionRequired,
    #[serde(rename = "payment.downtime.started")]
    PaymentDowntimeStarted,
    #[serde(rename = "payment.downtime.updated")]
    PaymentDowntimeUpdated,
    #[serde(rename = "payment.downtime.resolved")]
    PaymentDowntimeResolved,

    // Order events
    #[serde(rename = "order.paid")]
    OrderPaid,

    // Invoice events
    #[serde(rename = "invoice.paid")]
    InvoicePaid,
    #[serde(rename = "invoice.partially_paid")]
    InvoicePartiallyPaid,
    #[serde(rename = "invoice.expired")]
    InvoiceExpired,

    // Subscription events
    #[serde(rename = "subscription.authenticated")]
    SubscriptionAuthenticated,
    #[serde(rename = "subscription.paused")]
    SubscriptionPaused,
    #[serde(rename = "subscription.resumed")]
    SubscriptionResumed,
    #[serde(rename = "subscription.activated")]
    SubscriptionActivated,
    #[serde(rename = "subscription.pending")]
    SubscriptionPending,
    #[serde(rename = "subscription.halted")]
    SubscriptionHalted,
    #[serde(rename = "subscription.charged")]
    SubscriptionCharged,
    #[serde(rename = "subscription.cancelled")]
    SubscriptionCancelled,
    #[serde(rename = "subscription.completed")]
    SubscriptionCompleted,
    #[serde(rename = "subscription.updated")]
    SubscriptionUpdated,

    // Settlement events
    #[serde(rename = "settlement.processed")]
    SettlementProcessed,

    // Virtual account events
    #[serde(rename = "virtual_account.credited")]
    VirtualAccountCredited,
    #[serde(rename = "virtual_account.created")]
    VirtualAccountCreated,
    #[serde(rename = "virtual_account.closed")]
    VirtualAccountClosed,

    // Fund account events
    #[serde(rename = "fund_account.validation.completed")]
    FundAccountValidationCompleted,
    #[serde(rename = "fund_account.validation.failed")]
    FundAccountValidationFailed,

    // Payout events
    #[serde(rename = "payout.processed")]
    PayoutProcessed,
    #[serde(rename = "payout.reversed")]
    PayoutReversed,
    #[serde(rename = "payout.initiated")]
    PayoutInitiated,
    #[serde(rename = "payout.updated")]
    PayoutUpdated,
    #[serde(rename = "payout.rejected")]
    PayoutRejected,
    #[serde(rename = "payout.pending")]
    PayoutPending,
    #[serde(rename = "payout.queued")]
    PayoutQueued,
    #[serde(rename = "payout.failed")]
    PayoutFailed,
    #[serde(rename = "payout.downtime.started")]
    PayoutDowntimeStarted,
    #[serde(rename = "payout.downtime.resolved")]
    PayoutDowntimeResolved,

    // Refund events
    #[serde(rename = "refund.speed_changed")]
    RefundSpeedChanged,
    #[serde(rename = "refund.processed")]
    RefundProcessed,
    #[serde(rename = "refund.failed")]
    RefundFailed,
    #[serde(rename = "refund.created")]
    RefundCreated,

    // Transfer events
    #[serde(rename = "transfer.processed")]
    TransferProcessed,
    #[serde(rename = "transfer.failed")]
    TransferFailed,

    // Account events
    #[serde(rename = "account.under_review")]
    AccountUnderReview,
    #[serde(rename = "account.needs_clarification")]
    AccountNeedsClarification,
    #[serde(rename = "account.activated")]
    AccountActivated,
    #[serde(rename = "account.rejected")]
    AccountRejected,
    #[serde(rename = "account.updated")]
    AccountUpdated,
    #[serde(rename = "account.suspended")]
    AccountSuspended,
    #[serde(rename = "account.funds_hold")]
    AccountFundsHold,
    #[serde(rename = "account.funds_unhold")]
    AccountFundsUnhold,
    #[serde(rename = "account.instantly_activated")]
    AccountInstantlyActivated,
    #[serde(rename = "account.payments_enabled")]
    AccountPaymentsEnabled,

    // Payment link events
    PaymentLinkPending,
    #[serde(rename = "payment_link.paid")]
    PaymentLinkPaid,
    #[serde(rename = "payment_link.partially_paid")]
    PaymentLinkPartiallyPaid,
    #[serde(rename = "payment_link.expired")]
    PaymentLinkExpired,
    #[serde(rename = "payment_link.cancelled")]
    PaymentLinkCancelled,

    // Product events
    #[serde(rename = "product.route.activated")]
    ProductRouteActivated,
    #[serde(rename = "product.route.under_review")]
    ProductRouteUnderReview,
    #[serde(rename = "product.route.needs_clarification")]
    ProductRouteNeedsClarification,
    #[serde(rename = "product.route.rejected")]
    ProductRouteRejected,
    #[serde(rename = "product.payment_gateway.activated")]
    ProductPaymentGatewayActivated,
    #[serde(rename = "product.payment_gateway.under_review")]
    ProductPaymentGatewayUnderReview,
    #[serde(rename = "product.payment_gateway.needs_clarification")]
    ProductPaymentGatewayNeedsClarification,
    #[serde(rename = "product.payment_gateway.rejected")]
    ProductPaymentGatewayRejected,
    #[serde(rename = "product.payment_gateway.activated_kyc_pending")]
    ProductPaymentGatewayActivatedKYCPending,

    // Oauth partner events
    #[serde(rename = "account.app.authorization_revoked")]
    AccountAppAuthorizationRevoked,

    // Payout link events
    #[serde(rename = "payout_link.pending")]
    PayoutLinkPending,
    #[serde(rename = "payout_link.issued")]
    PayoutLinkIssued,
    #[serde(rename = "payout_link.processing")]
    PayoutLinkProcessing,
    #[serde(rename = "payout_link.processed")]
    PayoutLinkProcessed,
    #[serde(rename = "payout_link.attempted")]
    PayoutLinkAttempted,
    #[serde(rename = "payout_link.cancelled")]
    PayoutLinkCancelled,
    #[serde(rename = "payout_link.rejected")]
    PayoutLinkRejected,
    #[serde(rename = "payout_link.expired")]
    PayoutLinkExpired,

    // Transaction events
    #[serde(rename = "transaction.created")]
    TransactionCreated,
}

#[derive(Debug, Deserialize, Clone, Eq, PartialEq, Hash)]
#[serde(rename_all = "snake_case")]
pub enum WebhookPayloadItemName {
    Order,
    Payment,
    Refund,
    Dispute,
    Invoice,
    Subscription,
    Transfer,
    VirtualAccount,
    PaymentLink,
    #[serde(rename = "fund_account.validation")]
    FundAccountValidation,
    Payout,
    PayoutLink,
    MerchantProduct,
    Account,
    #[serde(rename = "payout.downtime")]
    PayoutDowntime,
    Transaction,
}

#[derive(Debug, Deserialize, Clone, Eq, PartialEq)]
#[serde(untagged)]
pub enum WebhookPayloadItem {
    Order(Order),
    Payment(Payment),
    Refund(Refund),
    Dispute(Dispute),
    Invoice(Invoice),
    Subscription(Subscription),
    // TODO: Add missing webhook payload items
    //
    // the following items need to be implemented, the workaround for now is
    // the `Other` variant
    //        |
    //         "--------------------------------------------.
    //                                                       |
    // Transfer(Transfer),                                   |
    // VirtualAccount(VirtualAccount),                       |
    // PaymentLink(PaymentLink),                             |
    // FundAccountValidation(FundAccountValidation),         |
    // Payout(Payout),                                       |
    // PayoutLink(PayoutLink),                               |
    // MerchantProduct(MerchantProduct),                     |
    Account(Account),
    // PayoutDowntime(PayoutDowntime),                       |
    // Transaction(Transaction),                             |
    Other(Value),
    //^^^^^^^^^^                                             |
    //    |                                                  |
    //     "------------------------------------------------"
}

#[derive(Debug, Deserialize, Clone, Eq, PartialEq)]
pub struct WebhookPayload {
    pub entity: WebhookPayloadItem,
    pub data: Option<Value>,
    //  ^^^^
    //    |
    //     "--------------------.
    //                           |
    // TODO: add concrete type   |
    //                           |
    //                .---------"
    //               |
    // The type of this field is'nt clear in the docs, in the
    // [merchant account activated] docs it has the value `[]`
    // which indicates that it has the type `Vec<_>` but in
    // [merchant account needs clarification] docs it is an
    // object, I have previously came across this same problem
    // with `notes`, in the razorpay API an empty array `[]`
    // could represent an empty object `{}`, so it could be that
    // in the [merchant account activated] docs it is representing
    // an empty object, needs more testing.
    //
    // [merchant account activated]: https://razorpay.com/docs/webhooks/payloads/partners/
    // [merchant account needs clarification]: https://razorpay.com/docs/webhooks/payloads/partners/needs-clarification/
}

#[derive(Debug, Deserialize, Clone, Eq, PartialEq)]
#[serde(tag = "entity", rename = "event")]
pub struct WebhookEvent {
    pub account_id: String,
    #[serde(rename = "event")]
    pub type_: EventType,
    pub contains: Vec<WebhookPayloadItemName>,
    #[serde(default)]
    pub payload: HashMap<WebhookPayloadItemName, WebhookPayload>,
    #[serde(with = "ts_seconds")]
    pub created_at: DateTime<Utc>,
}

#[derive(Debug, Deserialize, Clone, Eq, PartialEq)]
#[serde(rename_all = "lowercase")]
pub enum WebhookOwnerType {
    Merchant,
}

#[derive(Debug, Deserialize, Clone, Eq, PartialEq)]
#[serde(tag = "entity", rename = "webhook")]
pub struct Webhook {
    pub id: String,
    #[serde(with = "ts_seconds")]
    pub created_at: DateTime<Utc>,
    #[serde(with = "ts_seconds_option")]
    pub updated_at: Option<DateTime<Utc>>,
    pub owner_id: AccountId,
    pub owner_type: WebhookOwnerType,
    pub url: String,
    pub secret: Option<String>,
    pub alert_email: Option<String>,
    #[serde(default)]
    pub secret_exists: bool,
    pub active: bool,
    pub events: Vec<EventType>,
}

#[derive(Debug, Default, Serialize, Clone, PartialEq, Eq)]
pub struct CreateWebhook<'a> {
    pub url: &'a str,
    pub alert_email: Option<&'a str>,
    pub secret: Option<&'a str>,
    pub events: &'a [EventType],
}

#[derive(Debug, Default, Serialize, Clone, PartialEq, Eq)]
pub struct UpdateWebhook<'a> {
    pub url: Option<&'a str>,
    pub events: &'a [EventType],
}

impl Webhook {
    // utility method
    pub fn construct_event(
        payload: &str,
        sig: &str,
        secret: &str,
    ) -> Result<WebhookEvent, WebhookError> {
        let expected_sig = generate_webhook_signature(payload, secret);
        if sig != expected_sig {
            return Err(WebhookError::BadSignature);
        }

        Ok(serde_json::from_str(payload)?)
    }

    // APIs
    pub async fn create(
        razorpay: &Razorpay,
        account_id: &AccountId,
        params: CreateWebhook<'_>,
    ) -> RazorpayResult<Webhook> {
        let res = razorpay
            .api
            .post(RequestParams {
                url: format!("/accounts/{}/webhooks", account_id),
                version: Some("v2".to_owned()),
                data: Some(params),
            })
            .await?;

        match res {
            InternalApiResult::Ok(webhook) => Ok(webhook),
            InternalApiResult::Err { error } => Err(error.into()),
        }
    }

    pub async fn fetch(
        razorpay: &Razorpay,
        account_id: &AccountId,
        webhook_id: &str,
    ) -> RazorpayResult<Webhook> {
        let res = razorpay
            .api
            .get(RequestParams {
                url: format!(
                    "/accounts/{}/webhooks/{}",
                    account_id, webhook_id
                ),
                version: None,
                data: None::<()>,
            })
            .await?;

        match res {
            InternalApiResult::Ok(webhook) => Ok(webhook),
            InternalApiResult::Err { error } => Err(error.into()),
        }
    }

    pub async fn list<T>(
        razorpay: &Razorpay,
        account_id: &AccountId,
        params: T,
    ) -> RazorpayResult<Collection<Webhook>>
    where
        T: Into<Option<Filter>>,
    {
        let res = razorpay
            .api
            .get(RequestParams {
                url: format!("/accounts/{}/webhooks", account_id),
                version: Some("v2".to_owned()),
                data: params.into(),
            })
            .await?;

        match res {
            InternalApiResult::Ok(webhooks) => Ok(webhooks),
            InternalApiResult::Err { error } => Err(error.into()),
        }
    }

    pub async fn update(
        razorpay: &Razorpay,
        account_id: &AccountId,
        webhook_id: &str,
        params: UpdateWebhook<'_>,
    ) -> RazorpayResult<Webhook> {
        let res = razorpay
            .api
            .patch(RequestParams {
                url: format!(
                    "/accounts/{}/webhooks/{}",
                    account_id, webhook_id
                ),
                version: Some("v2".to_owned()),
                data: Some(params),
            })
            .await?;

        match res {
            InternalApiResult::Ok(webhook) => Ok(webhook),
            InternalApiResult::Err { error } => Err(error.into()),
        }
    }

    pub async fn delete(
        razorpay: &Razorpay,
        account_id: &AccountId,
        webhook_id: &str,
    ) -> RazorpayResult<()> {
        let res: InternalApiResult<Value> = razorpay
            .api
            .delete(RequestParams {
                url: format!(
                    "/accounts/{}/webhooks/{}",
                    account_id, webhook_id
                ),
                version: Some("v2".to_owned()),
                data: None::<()>,
            })
            .await?;

        match res {
            InternalApiResult::Ok(_) => Ok(()),
            InternalApiResult::Err { error } => Err(error.into()),
        }
    }
}