mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-20 12:51:33 +03:00
dc6bd53519
# Description
Please include a summary of the changes and the related issue. Please
also include relevant motivation and context.
## Checklist before requesting a review
Please delete options that are not relevant.
- [x] My code follows the style guidelines of this project
- [x] I have performed a self-review of my code
- [ ] I have commented hard-to-understand areas
- [ ] I have ideally added tests that prove my fix is effective or that
my feature works
- [ ] New and existing unit tests pass locally with my changes
- [ ] Any dependent changes have been merged
## Screenshots (if appropriate):
<!--
ELLIPSIS_HIDDEN
-->
----
| 🚀 This description was created by
[Ellipsis](https://www.ellipsis.dev) for commit
997576d577
|
|--------|
### Summary:
This PR involves a significant refactoring of the codebase, with file
and class relocations and renames, and updated import paths, without
introducing new functionality.
**Key points**:
- Significant refactoring of the codebase for improved organization and
clarity.
- File and class relocations and renames.
- Updated import paths to reflect new locations and names.
- No new functionality introduced.
----
Generated with ❤️ by [ellipsis.dev](https://www.ellipsis.dev)
<!--
ELLIPSIS_HIDDEN
-->
27 lines
677 B
Python
27 lines
677 B
Python
from multiprocessing import get_logger
|
|
|
|
from models import get_supabase_client
|
|
from supabase.client import Client
|
|
|
|
logger = get_logger()
|
|
|
|
SIGNED_URL_EXPIRATION_PERIOD_IN_SECONDS = 3600
|
|
|
|
|
|
def generate_file_signed_url(path):
|
|
supabase_client: Client = get_supabase_client()
|
|
|
|
try:
|
|
response = supabase_client.storage.from_("quivr").create_signed_url(
|
|
path,
|
|
SIGNED_URL_EXPIRATION_PERIOD_IN_SECONDS,
|
|
options={
|
|
"download": True,
|
|
"transform": None,
|
|
},
|
|
)
|
|
logger.info("RESPONSE SIGNED URL", response)
|
|
return response
|
|
except Exception as e:
|
|
logger.error(e)
|