mirror of
https://github.com/simple-login/app.git
synced 2024-11-02 20:01:01 +01:00
85964f283e
* Add timeout to any outbound connection * Change log message to error --------- Co-authored-by: Adrià Casajús <adria.casajus@proton.ch>
34 lines
1.0 KiB
Python
34 lines
1.0 KiB
Python
import requests
|
|
from requests import RequestException
|
|
|
|
from app import config
|
|
from app.log import LOG
|
|
from app.models import User
|
|
|
|
|
|
def execute_subscription_webhook(user: User):
|
|
webhook_url = config.SUBSCRIPTION_CHANGE_WEBHOOK
|
|
if webhook_url is None:
|
|
return
|
|
subscription_end = user.get_active_subscription_end(
|
|
include_partner_subscription=False
|
|
)
|
|
sl_subscription_end = None
|
|
if subscription_end:
|
|
sl_subscription_end = subscription_end.timestamp
|
|
payload = {
|
|
"user_id": user.id,
|
|
"is_premium": user.is_premium(),
|
|
"active_subscription_end": sl_subscription_end,
|
|
}
|
|
try:
|
|
response = requests.post(webhook_url, json=payload, timeout=2)
|
|
if response.status_code == 200:
|
|
LOG.i("Sent request to subscription update webhook successfully")
|
|
else:
|
|
LOG.i(
|
|
f"Request to webhook failed with statue {response.status_code}: {response.text}"
|
|
)
|
|
except RequestException as e:
|
|
LOG.error(f"Subscription request exception: {e}")
|