the37lab-authlib 0.1.1756740066__tar.gz → 0.1.1757062387__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of the37lab-authlib might be problematic. Click here for more details.
- {the37lab_authlib-0.1.1756740066 → the37lab_authlib-0.1.1757062387}/PKG-INFO +1 -1
- {the37lab_authlib-0.1.1756740066 → the37lab_authlib-0.1.1757062387}/pyproject.toml +1 -1
- {the37lab_authlib-0.1.1756740066 → the37lab_authlib-0.1.1757062387}/src/the37lab_authlib/auth.py +5 -2
- {the37lab_authlib-0.1.1756740066 → the37lab_authlib-0.1.1757062387}/src/the37lab_authlib.egg-info/PKG-INFO +1 -1
- {the37lab_authlib-0.1.1756740066 → the37lab_authlib-0.1.1757062387}/README.md +0 -0
- {the37lab_authlib-0.1.1756740066 → the37lab_authlib-0.1.1757062387}/setup.cfg +0 -0
- {the37lab_authlib-0.1.1756740066 → the37lab_authlib-0.1.1757062387}/src/the37lab_authlib/__init__.py +0 -0
- {the37lab_authlib-0.1.1756740066 → the37lab_authlib-0.1.1757062387}/src/the37lab_authlib/db.py +0 -0
- {the37lab_authlib-0.1.1756740066 → the37lab_authlib-0.1.1757062387}/src/the37lab_authlib/decorators.py +0 -0
- {the37lab_authlib-0.1.1756740066 → the37lab_authlib-0.1.1757062387}/src/the37lab_authlib/exceptions.py +0 -0
- {the37lab_authlib-0.1.1756740066 → the37lab_authlib-0.1.1757062387}/src/the37lab_authlib/models.py +0 -0
- {the37lab_authlib-0.1.1756740066 → the37lab_authlib-0.1.1757062387}/src/the37lab_authlib.egg-info/SOURCES.txt +0 -0
- {the37lab_authlib-0.1.1756740066 → the37lab_authlib-0.1.1757062387}/src/the37lab_authlib.egg-info/dependency_links.txt +0 -0
- {the37lab_authlib-0.1.1756740066 → the37lab_authlib-0.1.1757062387}/src/the37lab_authlib.egg-info/requires.txt +0 -0
- {the37lab_authlib-0.1.1756740066 → the37lab_authlib-0.1.1757062387}/src/the37lab_authlib.egg-info/top_level.txt +0 -0
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "the37lab_authlib"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.1757062387"
|
|
8
8
|
description = "Python SDK for the Authlib"
|
|
9
9
|
authors = [{name = "the37lab", email = "info@the37lab.com"}]
|
|
10
10
|
dependencies = ["flask", "psycopg2-binary", "pyjwt", "python-dotenv", "requests", "authlib", "bcrypt", "msal"]
|
{the37lab_authlib-0.1.1756740066 → the37lab_authlib-0.1.1757062387}/src/the37lab_authlib/auth.py
RENAMED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import inspect
|
|
2
|
+
import inspect
|
|
2
3
|
from flask import Blueprint, request, jsonify, current_app, url_for, redirect, g
|
|
3
4
|
import jwt
|
|
4
5
|
from datetime import datetime, timedelta
|
|
@@ -307,8 +308,10 @@ class AuthManager:
|
|
|
307
308
|
|
|
308
309
|
if not code or not provider:
|
|
309
310
|
raise AuthError('Invalid OAuth callback', 400)
|
|
310
|
-
from urllib.parse import urlencode
|
|
311
|
-
|
|
311
|
+
from urllib.parse import urlencode, urlparse, urlunparse
|
|
312
|
+
get_redirect_uri = self.get_redirect_uri()
|
|
313
|
+
parsed_uri = urlparse(get_redirect_uri)
|
|
314
|
+
frontend_url = os.getenv('FRONTEND_URL', urlunparse((parsed_uri.scheme, parsed_uri.netloc, '', '', '', '')))
|
|
312
315
|
|
|
313
316
|
#if provider == 'microsoft':
|
|
314
317
|
# client = msal.ConfidentialClientApplication(
|
|
File without changes
|
|
File without changes
|
{the37lab_authlib-0.1.1756740066 → the37lab_authlib-0.1.1757062387}/src/the37lab_authlib/__init__.py
RENAMED
|
File without changes
|
{the37lab_authlib-0.1.1756740066 → the37lab_authlib-0.1.1757062387}/src/the37lab_authlib/db.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{the37lab_authlib-0.1.1756740066 → the37lab_authlib-0.1.1757062387}/src/the37lab_authlib/models.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|