escobar 0.1.91__py3-none-any.whl → 0.1.93__py3-none-any.whl
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.
- escobar/_version.py +1 -1
- escobar/handlers.py +28 -5
- escobar/labextension/package.json +5 -3
- escobar/labextension/schemas/escobar/package.json.orig +4 -2
- escobar/labextension/static/{653.cd0a1dbb61ede2a5de00.js → 653.580316c87a9387a0c1bc.js} +1 -1
- escobar/labextension/static/{remoteEntry.48a97be89d680e21e498.js → remoteEntry.d6027c9bc926e1e15fe9.js} +1 -1
- {escobar-0.1.91.data → escobar-0.1.93.data}/data/share/jupyter/labextensions/escobar/package.json +5 -3
- {escobar-0.1.91.data → escobar-0.1.93.data}/data/share/jupyter/labextensions/escobar/schemas/escobar/package.json.orig +4 -2
- escobar-0.1.91.data/data/share/jupyter/labextensions/escobar/static/653.cd0a1dbb61ede2a5de00.js → escobar-0.1.93.data/data/share/jupyter/labextensions/escobar/static/653.580316c87a9387a0c1bc.js +1 -1
- escobar-0.1.93.data/data/share/jupyter/labextensions/escobar/static/oauth-callback.html +131 -0
- escobar-0.1.91.data/data/share/jupyter/labextensions/escobar/static/remoteEntry.48a97be89d680e21e498.js → escobar-0.1.93.data/data/share/jupyter/labextensions/escobar/static/remoteEntry.d6027c9bc926e1e15fe9.js +1 -1
- {escobar-0.1.91.dist-info → escobar-0.1.93.dist-info}/METADATA +1 -1
- {escobar-0.1.91.dist-info → escobar-0.1.93.dist-info}/RECORD +28 -27
- {escobar-0.1.91.data → escobar-0.1.93.data}/data/share/jupyter/labextensions/escobar/install.json +0 -0
- {escobar-0.1.91.data → escobar-0.1.93.data}/data/share/jupyter/labextensions/escobar/schemas/escobar/plugin.json +0 -0
- {escobar-0.1.91.data → escobar-0.1.93.data}/data/share/jupyter/labextensions/escobar/static/304.bf7e91be734e5b36cdc9.js +0 -0
- {escobar-0.1.91.data → escobar-0.1.93.data}/data/share/jupyter/labextensions/escobar/static/346.8a1e61ca6789b6fddfa7.js +0 -0
- {escobar-0.1.91.data → escobar-0.1.93.data}/data/share/jupyter/labextensions/escobar/static/379.40dd59dc19d4a6b42d25.js +0 -0
- {escobar-0.1.91.data → escobar-0.1.93.data}/data/share/jupyter/labextensions/escobar/static/57.17e53b4b9a954f39c4d8.js +0 -0
- {escobar-0.1.91.data → escobar-0.1.93.data}/data/share/jupyter/labextensions/escobar/static/648.a7d314faeacc762d891d.js +0 -0
- {escobar-0.1.91.data → escobar-0.1.93.data}/data/share/jupyter/labextensions/escobar/static/666.3bc65aac3a3be183ee19.js +0 -0
- {escobar-0.1.91.data → escobar-0.1.93.data}/data/share/jupyter/labextensions/escobar/static/874.c539726f31a1baa0267e.js +0 -0
- {escobar-0.1.91.data → escobar-0.1.93.data}/data/share/jupyter/labextensions/escobar/static/986.cbcf9d7c1cd8d06be435.js +0 -0
- {escobar-0.1.91.data → escobar-0.1.93.data}/data/share/jupyter/labextensions/escobar/static/style.js +0 -0
- {escobar-0.1.91.data → escobar-0.1.93.data}/data/share/jupyter/labextensions/escobar/static/third-party-licenses.json +0 -0
- {escobar-0.1.91.dist-info → escobar-0.1.93.dist-info}/WHEEL +0 -0
- {escobar-0.1.91.dist-info → escobar-0.1.93.dist-info}/entry_points.txt +0 -0
- {escobar-0.1.91.dist-info → escobar-0.1.93.dist-info}/licenses/LICENSE +0 -0
escobar/_version.py
CHANGED
escobar/handlers.py
CHANGED
@@ -34,9 +34,32 @@ class OAuthCallbackHandler(JupyterHandler):
|
|
34
34
|
try:
|
35
35
|
# Get the path to the static directory
|
36
36
|
import os
|
37
|
-
|
38
|
-
|
39
|
-
|
37
|
+
import pkg_resources
|
38
|
+
|
39
|
+
# Try to get the file from the installed package first
|
40
|
+
try:
|
41
|
+
# This works when the package is installed via pip
|
42
|
+
# The static files are installed in the labextension directory
|
43
|
+
callback_content = pkg_resources.resource_string('escobar', 'labextension/static/oauth-callback.html').decode('utf-8')
|
44
|
+
|
45
|
+
self.log.info(f"🔐 CALLBACK: Serving OAuth callback from installed package")
|
46
|
+
|
47
|
+
# Set proper headers
|
48
|
+
self.set_header('Content-Type', 'text/html; charset=UTF-8')
|
49
|
+
self.set_header('Cache-Control', 'no-cache, no-store, must-revalidate')
|
50
|
+
self.set_header('Pragma', 'no-cache')
|
51
|
+
self.set_header('Expires', '0')
|
52
|
+
|
53
|
+
# Write the HTML content
|
54
|
+
self.write(callback_content)
|
55
|
+
self.log.info(f"🔐 CALLBACK: Successfully served OAuth callback HTML from package")
|
56
|
+
return
|
57
|
+
|
58
|
+
except (ImportError, FileNotFoundError, OSError):
|
59
|
+
# Fallback to file system path for development
|
60
|
+
current_dir = os.path.dirname(os.path.abspath(__file__))
|
61
|
+
project_root = os.path.dirname(current_dir)
|
62
|
+
callback_file_path = os.path.join(project_root, 'static', 'oauth-callback.html')
|
40
63
|
|
41
64
|
self.log.info(f"🔐 CALLBACK: Serving OAuth callback from: {callback_file_path}")
|
42
65
|
|
@@ -545,8 +568,8 @@ def setup_handlers(web_app):
|
|
545
568
|
for pattern in ws_patterns:
|
546
569
|
print(f"[ESCOBAR-WS] - {pattern}")
|
547
570
|
|
548
|
-
# Register the OAuth callback endpoint
|
549
|
-
oauth_callback_pattern = url_path_join(base_url, "
|
571
|
+
# Register the OAuth callback endpoint - use escobar-specific path to avoid conflicts
|
572
|
+
oauth_callback_pattern = url_path_join(base_url, "escobar", "oauth-callback.html")
|
550
573
|
print(f"[ESCOBAR-WS] OAuth callback pattern: {oauth_callback_pattern}")
|
551
574
|
|
552
575
|
# Build handlers list with all WebSocket patterns
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "escobar",
|
3
|
-
"version": "0.1.
|
3
|
+
"version": "0.1.93",
|
4
4
|
"description": "AI CHAT EXTENSION",
|
5
5
|
"keywords": [
|
6
6
|
"jupyter",
|
@@ -19,7 +19,9 @@
|
|
19
19
|
"files": [
|
20
20
|
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
|
21
21
|
"style/**/*.{css,js,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
|
22
|
-
"schema/*.json"
|
22
|
+
"schema/*.json",
|
23
|
+
"static/**/*",
|
24
|
+
"src/icons/*.svg"
|
23
25
|
],
|
24
26
|
"main": "lib/index.js",
|
25
27
|
"types": "lib/index.d.ts",
|
@@ -123,7 +125,7 @@
|
|
123
125
|
"outputDir": "escobar/labextension",
|
124
126
|
"schemaDir": "schema",
|
125
127
|
"_build": {
|
126
|
-
"load": "static/remoteEntry.
|
128
|
+
"load": "static/remoteEntry.d6027c9bc926e1e15fe9.js",
|
127
129
|
"extension": "./extension",
|
128
130
|
"style": "./style"
|
129
131
|
}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "escobar",
|
3
|
-
"version": "0.1.
|
3
|
+
"version": "0.1.93",
|
4
4
|
"description": "AI CHAT EXTENSION",
|
5
5
|
"keywords": [
|
6
6
|
"jupyter",
|
@@ -19,7 +19,9 @@
|
|
19
19
|
"files": [
|
20
20
|
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
|
21
21
|
"style/**/*.{css,js,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
|
22
|
-
"schema/*.json"
|
22
|
+
"schema/*.json",
|
23
|
+
"static/**/*",
|
24
|
+
"src/icons/*.svg"
|
23
25
|
],
|
24
26
|
"main": "lib/index.js",
|
25
27
|
"types": "lib/index.d.ts",
|