Conversation
TODO: maybe add a time threshold since if multiple use it, the cookies will be rotate a lot i think?
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
FoxeiZ
marked this pull request as draft
May 1, 2026 03:53
chore: debug cookies from vercel deps: missing lock file(?) Co-authored-by: Copilot <copilot@github.com>
ples g**gle i ned dis Co-authored-by: Copilot <copilot@github.com>
Co-authored-by: Copilot <copilot@github.com>
|
|
||
| def resolve_path(root: Path, requested: str) -> Path: | ||
| safe_request = requested.replace("\\", "/").lstrip("/") | ||
| target = (root / safe_request).resolve() |
| requested = requested_raw | ||
| target = resolve_path(root, requested) | ||
|
|
||
| if target.is_dir(): |
|
|
||
| if target.is_dir(): | ||
| html_doc = render_listing(root, target, requested, is_absolute) | ||
| return Response(html_doc, mimetype="text/html") |
| html_doc = render_listing(root, target, requested, is_absolute) | ||
| return Response(html_doc, mimetype="text/html") | ||
|
|
||
| if target.is_file(): |
|
|
||
| if target.is_file(): | ||
| if request.args.get("download") == "1": | ||
| return send_file(target, as_attachment=True, download_name=target.name) |
| include_dirs = request.args.get("include_dirs", "0").lower() in {"1", "true", "yes"} | ||
|
|
||
| base = resolve_path(root, requested) | ||
| if not base.exists() or not base.is_dir(): |
| include_dirs = request.args.get("include_dirs", "0").lower() in {"1", "true", "yes"} | ||
|
|
||
| base = resolve_path(root, requested) | ||
| if not base.exists() or not base.is_dir(): |
|
|
||
| def add_result(path: Path, is_dir: bool) -> None: | ||
| try: | ||
| stat = path.stat() |
| def onerror(err: OSError) -> None: | ||
| current_app.logger.warning("Search error: %s", err) | ||
|
|
||
| for dirpath, dirnames, filenames in os.walk(base, onerror=onerror): |
Owner
Author
|
bro stop commenting on this 😭😭🙏 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
TODO: maybe add a time threshold since if multiple user use it, the cookies will be rotate a lot i think?