the37lab-authlib 0.1.1750840380__tar.gz → 0.1.1750840415__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.1750840380 → the37lab_authlib-0.1.1750840415}/PKG-INFO +6 -6
- {the37lab_authlib-0.1.1750840380 → the37lab_authlib-0.1.1750840415}/README.md +5 -5
- {the37lab_authlib-0.1.1750840380 → the37lab_authlib-0.1.1750840415}/pyproject.toml +1 -1
- {the37lab_authlib-0.1.1750840380 → the37lab_authlib-0.1.1750840415}/src/the37lab_authlib/auth.py +11 -0
- {the37lab_authlib-0.1.1750840380 → the37lab_authlib-0.1.1750840415}/src/the37lab_authlib.egg-info/PKG-INFO +6 -6
- {the37lab_authlib-0.1.1750840380 → the37lab_authlib-0.1.1750840415}/setup.cfg +0 -0
- {the37lab_authlib-0.1.1750840380 → the37lab_authlib-0.1.1750840415}/src/the37lab_authlib/__init__.py +0 -0
- {the37lab_authlib-0.1.1750840380 → the37lab_authlib-0.1.1750840415}/src/the37lab_authlib/db.py +0 -0
- {the37lab_authlib-0.1.1750840380 → the37lab_authlib-0.1.1750840415}/src/the37lab_authlib/decorators.py +0 -0
- {the37lab_authlib-0.1.1750840380 → the37lab_authlib-0.1.1750840415}/src/the37lab_authlib/exceptions.py +0 -0
- {the37lab_authlib-0.1.1750840380 → the37lab_authlib-0.1.1750840415}/src/the37lab_authlib/models.py +0 -0
- {the37lab_authlib-0.1.1750840380 → the37lab_authlib-0.1.1750840415}/src/the37lab_authlib.egg-info/SOURCES.txt +0 -0
- {the37lab_authlib-0.1.1750840380 → the37lab_authlib-0.1.1750840415}/src/the37lab_authlib.egg-info/dependency_links.txt +0 -0
- {the37lab_authlib-0.1.1750840380 → the37lab_authlib-0.1.1750840415}/src/the37lab_authlib.egg-info/requires.txt +0 -0
- {the37lab_authlib-0.1.1750840380 → the37lab_authlib-0.1.1750840415}/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.
|
|
3
|
+
Version: 0.1.1750840415
|
|
4
4
|
Summary: Python SDK for the Authlib
|
|
5
5
|
Author-email: the37lab <info@the37lab.com>
|
|
6
6
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -50,7 +50,7 @@ pip install -e .
|
|
|
50
50
|
|
|
51
51
|
```python
|
|
52
52
|
from flask import Flask
|
|
53
|
-
from authlib import AuthManager
|
|
53
|
+
from authlib import AuthManager, require_auth
|
|
54
54
|
|
|
55
55
|
app = Flask(__name__)
|
|
56
56
|
|
|
@@ -67,7 +67,7 @@ auth = AuthManager(
|
|
|
67
67
|
)
|
|
68
68
|
|
|
69
69
|
@app.route("/protected")
|
|
70
|
-
@
|
|
70
|
+
@require_auth(roles=["admin"])
|
|
71
71
|
def protected_route():
|
|
72
72
|
return "Protected content"
|
|
73
73
|
```
|
|
@@ -126,8 +126,8 @@ def protected_route():
|
|
|
126
126
|
|
|
127
127
|
### API Tokens
|
|
128
128
|
- `POST /api/v1/users/{user}/api-tokens` - Create API token
|
|
129
|
-
- **Request:** `{ "name": "string", "
|
|
130
|
-
- **Response:** `{ "token": "string", "id": "uuid",
|
|
129
|
+
- **Request:** `{ "name": "string", "scopes": [ ... ] }`
|
|
130
|
+
- **Response:** `{ "token": "string", "id": "uuid", ... }`
|
|
131
131
|
- `GET /api/v1/users/{user}/api-tokens` - List API tokens
|
|
132
132
|
- **Response:** `[ { "id": "uuid", "name": "string", ... } ]`
|
|
133
133
|
- `DELETE /api/v1/users/{user}/api-tokens/{token_id}` - Delete API token
|
|
@@ -144,7 +144,7 @@ def protected_route():
|
|
|
144
144
|
- Get redirect URL from `/api/v1/users/login/oauth`.
|
|
145
145
|
- Complete OAuth flow via `/api/v1/users/login/oauth2callback`.
|
|
146
146
|
4. **Protected Routes:**
|
|
147
|
-
- Use `@
|
|
147
|
+
- Use `@require_auth()` decorator to protect Flask routes.
|
|
148
148
|
|
|
149
149
|
## User Object
|
|
150
150
|
|
|
@@ -33,7 +33,7 @@ pip install -e .
|
|
|
33
33
|
|
|
34
34
|
```python
|
|
35
35
|
from flask import Flask
|
|
36
|
-
from authlib import AuthManager
|
|
36
|
+
from authlib import AuthManager, require_auth
|
|
37
37
|
|
|
38
38
|
app = Flask(__name__)
|
|
39
39
|
|
|
@@ -50,7 +50,7 @@ auth = AuthManager(
|
|
|
50
50
|
)
|
|
51
51
|
|
|
52
52
|
@app.route("/protected")
|
|
53
|
-
@
|
|
53
|
+
@require_auth(roles=["admin"])
|
|
54
54
|
def protected_route():
|
|
55
55
|
return "Protected content"
|
|
56
56
|
```
|
|
@@ -109,8 +109,8 @@ def protected_route():
|
|
|
109
109
|
|
|
110
110
|
### API Tokens
|
|
111
111
|
- `POST /api/v1/users/{user}/api-tokens` - Create API token
|
|
112
|
-
- **Request:** `{ "name": "string", "
|
|
113
|
-
- **Response:** `{ "token": "string", "id": "uuid",
|
|
112
|
+
- **Request:** `{ "name": "string", "scopes": [ ... ] }`
|
|
113
|
+
- **Response:** `{ "token": "string", "id": "uuid", ... }`
|
|
114
114
|
- `GET /api/v1/users/{user}/api-tokens` - List API tokens
|
|
115
115
|
- **Response:** `[ { "id": "uuid", "name": "string", ... } ]`
|
|
116
116
|
- `DELETE /api/v1/users/{user}/api-tokens/{token_id}` - Delete API token
|
|
@@ -127,7 +127,7 @@ def protected_route():
|
|
|
127
127
|
- Get redirect URL from `/api/v1/users/login/oauth`.
|
|
128
128
|
- Complete OAuth flow via `/api/v1/users/login/oauth2callback`.
|
|
129
129
|
4. **Protected Routes:**
|
|
130
|
-
- Use `@
|
|
130
|
+
- Use `@require_auth()` decorator to protect Flask routes.
|
|
131
131
|
|
|
132
132
|
## User Object
|
|
133
133
|
|
|
@@ -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.1750840415"
|
|
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"]
|
{the37lab_authlib-0.1.1750840380 → the37lab_authlib-0.1.1750840415}/src/the37lab_authlib/auth.py
RENAMED
|
@@ -252,6 +252,17 @@ class AuthManager:
|
|
|
252
252
|
except jwt.InvalidTokenError:
|
|
253
253
|
raise AuthError('Invalid refresh token', 401)
|
|
254
254
|
|
|
255
|
+
@bp.route('/api-tokens', methods=['POST'])
|
|
256
|
+
@handle_auth_errors
|
|
257
|
+
@self.require_auth
|
|
258
|
+
def create_api_token(requesting_user):
|
|
259
|
+
name = request.json.get('name')
|
|
260
|
+
if not name:
|
|
261
|
+
raise AuthError('Token name required', 400)
|
|
262
|
+
|
|
263
|
+
token = self.create_api_token(requesting_user['id'], name)
|
|
264
|
+
return jsonify({'token': token.token})
|
|
265
|
+
|
|
255
266
|
@bp.route('/api-tokens/validate', methods=['GET'])
|
|
256
267
|
@handle_auth_errors
|
|
257
268
|
@self.require_auth
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: the37lab_authlib
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1750840415
|
|
4
4
|
Summary: Python SDK for the Authlib
|
|
5
5
|
Author-email: the37lab <info@the37lab.com>
|
|
6
6
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -50,7 +50,7 @@ pip install -e .
|
|
|
50
50
|
|
|
51
51
|
```python
|
|
52
52
|
from flask import Flask
|
|
53
|
-
from authlib import AuthManager
|
|
53
|
+
from authlib import AuthManager, require_auth
|
|
54
54
|
|
|
55
55
|
app = Flask(__name__)
|
|
56
56
|
|
|
@@ -67,7 +67,7 @@ auth = AuthManager(
|
|
|
67
67
|
)
|
|
68
68
|
|
|
69
69
|
@app.route("/protected")
|
|
70
|
-
@
|
|
70
|
+
@require_auth(roles=["admin"])
|
|
71
71
|
def protected_route():
|
|
72
72
|
return "Protected content"
|
|
73
73
|
```
|
|
@@ -126,8 +126,8 @@ def protected_route():
|
|
|
126
126
|
|
|
127
127
|
### API Tokens
|
|
128
128
|
- `POST /api/v1/users/{user}/api-tokens` - Create API token
|
|
129
|
-
- **Request:** `{ "name": "string", "
|
|
130
|
-
- **Response:** `{ "token": "string", "id": "uuid",
|
|
129
|
+
- **Request:** `{ "name": "string", "scopes": [ ... ] }`
|
|
130
|
+
- **Response:** `{ "token": "string", "id": "uuid", ... }`
|
|
131
131
|
- `GET /api/v1/users/{user}/api-tokens` - List API tokens
|
|
132
132
|
- **Response:** `[ { "id": "uuid", "name": "string", ... } ]`
|
|
133
133
|
- `DELETE /api/v1/users/{user}/api-tokens/{token_id}` - Delete API token
|
|
@@ -144,7 +144,7 @@ def protected_route():
|
|
|
144
144
|
- Get redirect URL from `/api/v1/users/login/oauth`.
|
|
145
145
|
- Complete OAuth flow via `/api/v1/users/login/oauth2callback`.
|
|
146
146
|
4. **Protected Routes:**
|
|
147
|
-
- Use `@
|
|
147
|
+
- Use `@require_auth()` decorator to protect Flask routes.
|
|
148
148
|
|
|
149
149
|
## User Object
|
|
150
150
|
|
|
File without changes
|
{the37lab_authlib-0.1.1750840380 → the37lab_authlib-0.1.1750840415}/src/the37lab_authlib/__init__.py
RENAMED
|
File without changes
|
{the37lab_authlib-0.1.1750840380 → the37lab_authlib-0.1.1750840415}/src/the37lab_authlib/db.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{the37lab_authlib-0.1.1750840380 → the37lab_authlib-0.1.1750840415}/src/the37lab_authlib/models.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|