Created
October 21, 2022 15:40
-
-
Save Mr-Malomz/c248099e44b4b4a6e76c03355a64c45b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use std::{collections::HashMap, env}; | |
use dotenv::dotenv; | |
use reqwest::{header, Client}; | |
use crate::models::{OTPResponse, OTPVerifyResponse}; | |
pub struct TwilioService {} | |
impl TwilioService { | |
fn env_loader(key: &str) -> String { | |
dotenv().ok(); | |
match env::var(key) { | |
Ok(v) => v.to_string(), | |
Err(_) => format!("Error loading env variable"), | |
} | |
} | |
pub async fn send_otp(phone_number: &String) -> Result<OTPResponse, &'static str> { | |
let account_sid = TwilioService::env_loader("TWILIO_ACCOUNT_SID"); | |
let auth_token = TwilioService::env_loader("TWILIO_AUTHTOKEN"); | |
let service_id = TwilioService::env_loader("TWILIO_SERVICES_ID"); | |
let url = format!( | |
"https://verify.twilio.com/v2/Services/{serv_id}/Verifications", | |
serv_id = service_id | |
); | |
let mut headers = header::HeaderMap::new(); | |
headers.insert( | |
"Content-Type", | |
"application/x-www-form-urlencoded".parse().unwrap(), | |
); | |
let mut form_body: HashMap<&str, String> = HashMap::new(); | |
form_body.insert("To", phone_number.to_string()); | |
form_body.insert("Channel", "sms".to_string()); | |
let client = Client::new(); | |
let res = client | |
.post(url) | |
.basic_auth(account_sid, Some(auth_token)) | |
.headers(headers) | |
.form(&form_body) | |
.send() | |
.await; | |
match res { | |
Ok(response) => { | |
let result = response.json::<OTPResponse>().await; | |
match result { | |
Ok(data) => Ok(data), | |
Err(_) => Err("Error sending OTP"), | |
} | |
} | |
Err(_) => Err("Error sending OTP"), | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment