mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-11-10 19:11:01 +00:00
Revert "unpatch mail"
This commit is contained in:
parent
bcc046c090
commit
69593b77b1
@ -7,32 +7,56 @@ class Mail:
|
|||||||
self.client = Session()
|
self.client = Session()
|
||||||
self.client.proxies = None #proxies
|
self.client.proxies = None #proxies
|
||||||
self.client.headers = {
|
self.client.headers = {
|
||||||
|
"host": "api.mail.tm",
|
||||||
|
"connection": "keep-alive",
|
||||||
|
"sec-ch-ua": "\"Google Chrome\";v=\"111\", \"Not(A:Brand\";v=\"8\", \"Chromium\";v=\"111\"",
|
||||||
|
"accept": "application/json, text/plain, */*",
|
||||||
|
"content-type": "application/json",
|
||||||
|
"sec-ch-ua-mobile": "?0",
|
||||||
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36",
|
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36",
|
||||||
"Accept": "application/json",
|
"sec-ch-ua-platform": "\"macOS\"",
|
||||||
"Content-Type": "application/json"
|
"origin": "https://mail.tm",
|
||||||
|
"sec-fetch-site": "same-site",
|
||||||
|
"sec-fetch-mode": "cors",
|
||||||
|
"sec-fetch-dest": "empty",
|
||||||
|
"referer": "https://mail.tm/",
|
||||||
|
"accept-encoding": "gzip, deflate, br",
|
||||||
|
"accept-language": "en-GB,en-US;q=0.9,en;q=0.8"
|
||||||
}
|
}
|
||||||
|
|
||||||
self.domain = "guerrillamail.com"
|
|
||||||
|
|
||||||
self.sid_token = self.client.get("https://api.guerrillamail.com/ajax.php?f=get_email_address").json()['sid_token']
|
|
||||||
|
|
||||||
def get_mail(self) -> str:
|
def get_mail(self) -> str:
|
||||||
token = ''.join(choices(ascii_letters, k=10)).lower()
|
token = ''.join(choices(ascii_letters, k=10)).lower()
|
||||||
|
|
||||||
email_id = f"{token}@{self.domain}"
|
init = self.client.post("https://api.mail.tm/accounts", json={
|
||||||
self.client.get(f"https://api.guerrillamail.com/ajax.php?f=set_email_user&email_user={token}&sid_token={self.sid_token}")
|
"address" : f"{token}@bugfoo.com",
|
||||||
|
"password": token
|
||||||
|
})
|
||||||
|
|
||||||
return email_id
|
if init.status_code == 201:
|
||||||
|
resp = self.client.post("https://api.mail.tm/token", json = {
|
||||||
|
**init.json(),
|
||||||
|
"password": token
|
||||||
|
})
|
||||||
|
|
||||||
|
self.client.headers['authorization'] = 'Bearer ' + resp.json()['token']
|
||||||
|
|
||||||
|
return f"{token}@bugfoo.com"
|
||||||
|
|
||||||
|
else:
|
||||||
|
raise Exception("Failed to create email")
|
||||||
|
|
||||||
def fetch_inbox(self):
|
def fetch_inbox(self):
|
||||||
return self.client.get(f"https://api.guerrillamail.com/ajax.php?f=get_emails&sid_token={self.sid_token}").json()
|
return self.client.get(f"https://api.mail.tm/messages").json()["hydra:member"]
|
||||||
|
|
||||||
def get_message(self, message_id: str):
|
def get_message(self, message_id: str):
|
||||||
return self.client.get(f"https://api.guerrillamail.com/ajax.php?f=fetch_email&email_id={message_id}&sid_token={self.sid_token}").json()
|
return self.client.get(f"https://api.mail.tm/messages/{message_id}").json()
|
||||||
|
|
||||||
def get_message_content(self, message_id: str):
|
def get_message_content(self, message_id: str):
|
||||||
return self.get_message(message_id)["mail_body"]
|
return self.get_message(message_id)["text"]
|
||||||
|
|
||||||
|
|
||||||
# if __name__ == "__main__":
|
# if __name__ == "__main__":
|
||||||
# client = Mail()
|
# client = Mail()
|
||||||
# client.get_mail()
|
# client.get_mail()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user