the37lab-authlib 0.1.1756739540__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.

Files changed (15) hide show
  1. {the37lab_authlib-0.1.1756739540 → the37lab_authlib-0.1.1757062387}/PKG-INFO +2 -1
  2. {the37lab_authlib-0.1.1756739540 → the37lab_authlib-0.1.1757062387}/pyproject.toml +2 -2
  3. {the37lab_authlib-0.1.1756739540 → the37lab_authlib-0.1.1757062387}/src/the37lab_authlib/auth.py +5 -2
  4. {the37lab_authlib-0.1.1756739540 → the37lab_authlib-0.1.1757062387}/src/the37lab_authlib.egg-info/PKG-INFO +2 -1
  5. {the37lab_authlib-0.1.1756739540 → the37lab_authlib-0.1.1757062387}/src/the37lab_authlib.egg-info/requires.txt +1 -0
  6. {the37lab_authlib-0.1.1756739540 → the37lab_authlib-0.1.1757062387}/README.md +0 -0
  7. {the37lab_authlib-0.1.1756739540 → the37lab_authlib-0.1.1757062387}/setup.cfg +0 -0
  8. {the37lab_authlib-0.1.1756739540 → the37lab_authlib-0.1.1757062387}/src/the37lab_authlib/__init__.py +0 -0
  9. {the37lab_authlib-0.1.1756739540 → the37lab_authlib-0.1.1757062387}/src/the37lab_authlib/db.py +0 -0
  10. {the37lab_authlib-0.1.1756739540 → the37lab_authlib-0.1.1757062387}/src/the37lab_authlib/decorators.py +0 -0
  11. {the37lab_authlib-0.1.1756739540 → the37lab_authlib-0.1.1757062387}/src/the37lab_authlib/exceptions.py +0 -0
  12. {the37lab_authlib-0.1.1756739540 → the37lab_authlib-0.1.1757062387}/src/the37lab_authlib/models.py +0 -0
  13. {the37lab_authlib-0.1.1756739540 → the37lab_authlib-0.1.1757062387}/src/the37lab_authlib.egg-info/SOURCES.txt +0 -0
  14. {the37lab_authlib-0.1.1756739540 → the37lab_authlib-0.1.1757062387}/src/the37lab_authlib.egg-info/dependency_links.txt +0 -0
  15. {the37lab_authlib-0.1.1756739540 → the37lab_authlib-0.1.1757062387}/src/the37lab_authlib.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: the37lab_authlib
3
- Version: 0.1.1756739540
3
+ Version: 0.1.1757062387
4
4
  Summary: Python SDK for the Authlib
5
5
  Author-email: the37lab <info@the37lab.com>
6
6
  Classifier: Programming Language :: Python :: 3
@@ -14,6 +14,7 @@ Requires-Dist: python-dotenv
14
14
  Requires-Dist: requests
15
15
  Requires-Dist: authlib
16
16
  Requires-Dist: bcrypt
17
+ Requires-Dist: msal
17
18
 
18
19
  # AuthLib
19
20
 
@@ -4,10 +4,10 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "the37lab_authlib"
7
- version = "0.1.1756739540"
7
+ version = "0.1.1757062387"
8
8
  description = "Python SDK for the Authlib"
9
9
  authors = [{name = "the37lab", email = "info@the37lab.com"}]
10
- dependencies = ["flask", "psycopg2-binary", "pyjwt", "python-dotenv", "requests", "authlib", "bcrypt"]
10
+ dependencies = ["flask", "psycopg2-binary", "pyjwt", "python-dotenv", "requests", "authlib", "bcrypt", "msal"]
11
11
  requires-python = ">=3.9"
12
12
  readme = "README.md"
13
13
  classifiers = [
@@ -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
- frontend_url = os.getenv('FRONTEND_URL', 'http://localhost:5173')
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(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: the37lab_authlib
3
- Version: 0.1.1756739540
3
+ Version: 0.1.1757062387
4
4
  Summary: Python SDK for the Authlib
5
5
  Author-email: the37lab <info@the37lab.com>
6
6
  Classifier: Programming Language :: Python :: 3
@@ -14,6 +14,7 @@ Requires-Dist: python-dotenv
14
14
  Requires-Dist: requests
15
15
  Requires-Dist: authlib
16
16
  Requires-Dist: bcrypt
17
+ Requires-Dist: msal
17
18
 
18
19
  # AuthLib
19
20