* meta: use `explicit-module-boundary-types` instead of `explicit-function-return-type`
It seems to better align with what we are after: stability of public API types. We likely don't need explicit types for all functions, and it's a bit tedious to have when converting an existing plugin.
* fix uploadRemoteFile undefined
for some reason, only when testing locally using VITE_COMPANION_URL=https://api2.transloadit.com/companion only
we get this error...
i'm thinking for some reason, the remote file gets serialized into state and then de-serialized again
causing remote.requestClient to be gone
so I solve it by instead storing the request clients in Uppy
fixes#4791
* fix bugs
* remove unrelated space changes
* apply suggestions
* Update Uppy.js
* fix lint
---------
Co-authored-by: Antoine du Hamel <duhamelantoine1995@gmail.com>
* fix double uploads
fixes#4815
also improve error logging when canceling
* don't close socket when pausing
because it prevented us from canceling an upload that is paused
note that we here sacrifice the ability to pause uploads and have other uploads take over the paused upload's rate limit queue spot.
this is sacrificed because we will soon remove the ability to pause/resume uploads anyways
* Update packages/@uppy/companion/src/server/Uploader.js
Co-authored-by: Merlijn Vos <merlijn@soverin.net>
* Revert "don't close socket when pausing"
This reverts commit e4dbe77d2f.
---------
Co-authored-by: Merlijn Vos <merlijn@soverin.net>
* remove useless line
* fix broken cookie removal logic
related #4426
* fix mime type of thumbnails
not critical but some browsers might have problems
* simplify/speedup token generation
so we don't have to decode/decrypt/encode/encrypt so many times
* use instanceof instead of prop check
* Implement alternative provider auth
New concept "simple auth" - authentication that happens immediately (in one http request) without redirecting to any third party.
uppyAuthToken initially used to simply contain an encrypted & json encoded OAuth2 access_token for a specific provider. Then we added refresh tokens as well inside uppyAuthToken #4448. Now we also allow storing other state or parameters needed for that specific provider, like username, password, host name, webdav URL etc... This is needed for providers like webdav, ftp etc, where the user needs to give some more input data while authenticating
Companion:
- `providerTokens` has been renamed to `providerUserSession` because it now includes not only tokens, but a user's session with a provider.
Companion `Provider` class:
- New `hasSimpleAuth` static boolean property - whether this provider uses simple auth
- uppyAuthToken expiry default 24hr again for providers that don't support refresh tokens
- make uppyAuthToken expiry configurable per provider - new `authStateExpiry` static property (defaults to 24hr)
- new static property `grantDynamicToUserSession`, allows providers to specify which state from Grant `dynamic` to include into the provider's `providerUserSession`.
* refactor
* use respondWithError
also for thumbnails
for consistency
* fix prepareStream
it wasn't returning the status code (like `got` does on error)
it's needed to respond properly with a http error
* don't throw when missing i18n key
instead log error and show the key
this in on par with other i18n frameworks
* fix bugged try/catch
* allow aborting login too
and don't replace the whole view with a loader when plugin state loading
it will cause auth views to lose state
an inter-view loading text looks much more graceful and is how SearchProviderView works too
* add json http error support
add support for passing objects and messages from companion to uppy
this allows companion to for example give a more detailed error when authenticating
* don't tightly couple auth form with html form
don't force the user to use html form
and use preact for it, for flexibility
* fix i18n
* make contentType parameterized
* allow sending certain errors to the user
this is useful because:
// onedrive gives some errors here that the user might want to know about
// e.g. these happen if you try to login to a users in an organization,
// without an Office365 licence or OneDrive account setup completed
// 400: Tenant does not have a SPO license
// 403: You do not have access to create this personal site or you do not have a valid license
* make `authProvider` consistent
always use the static property
ignoring the instance propety
fixes#4460
* fix bug
* fix test also
* don't have default content-type
* make a loginSimpleAuth api too
* make removeAuthToken protected
(cherry picked from commit 4be2b6fd91)
* fix lint
* run yarn format
* Apply suggestions from code review
Co-authored-by: Antoine du Hamel <antoine@transloadit.com>
* fix broken merge conflict
* improve inheritance
* fix bug
* fix bug with dynamic grant config
* use duck typing for error checks
see discussion here: https://github.com/transloadit/uppy/pull/4619#discussion_r1406225982
* Apply suggestions from code review
Co-authored-by: Antoine du Hamel <antoine@transloadit.com>
* fix broken lint fix script
* fix broken merge code
* try to fix flakey tets
* fix lint
* fix merge issue
---------
Co-authored-by: Antoine du Hamel <antoine@transloadit.com>
* remove useless line
* fix broken cookie removal logic
related #4426
* fix mime type of thumbnails
not critical but some browsers might have problems
* simplify/speedup token generation
so we don't have to decode/decrypt/encode/encrypt so many times
* use instanceof instead of prop check
* Implement alternative provider auth
New concept "simple auth" - authentication that happens immediately (in one http request) without redirecting to any third party.
uppyAuthToken initially used to simply contain an encrypted & json encoded OAuth2 access_token for a specific provider. Then we added refresh tokens as well inside uppyAuthToken #4448. Now we also allow storing other state or parameters needed for that specific provider, like username, password, host name, webdav URL etc... This is needed for providers like webdav, ftp etc, where the user needs to give some more input data while authenticating
Companion:
- `providerTokens` has been renamed to `providerUserSession` because it now includes not only tokens, but a user's session with a provider.
Companion `Provider` class:
- New `hasSimpleAuth` static boolean property - whether this provider uses simple auth
- uppyAuthToken expiry default 24hr again for providers that don't support refresh tokens
- make uppyAuthToken expiry configurable per provider - new `authStateExpiry` static property (defaults to 24hr)
- new static property `grantDynamicToUserSession`, allows providers to specify which state from Grant `dynamic` to include into the provider's `providerUserSession`.
* refactor
* use respondWithError
also for thumbnails
for consistency
* fix prepareStream
it wasn't returning the status code (like `got` does on error)
it's needed to respond properly with a http error
* don't throw when missing i18n key
instead log error and show the key
this in on par with other i18n frameworks
* fix bugged try/catch
* allow aborting login too
and don't replace the whole view with a loader when plugin state loading
it will cause auth views to lose state
an inter-view loading text looks much more graceful and is how SearchProviderView works too
* add json http error support
add support for passing objects and messages from companion to uppy
this allows companion to for example give a more detailed error when authenticating
* don't tightly couple auth form with html form
don't force the user to use html form
and use preact for it, for flexibility
* fix i18n
* make contentType parameterized
* allow sending certain errors to the user
this is useful because:
// onedrive gives some errors here that the user might want to know about
// e.g. these happen if you try to login to a users in an organization,
// without an Office365 licence or OneDrive account setup completed
// 400: Tenant does not have a SPO license
// 403: You do not have access to create this personal site or you do not have a valid license
* sending certain onedrive errors to the user
this is useful because:
// onedrive gives some errors here that the user might want to know about
// e.g. these happen if you try to login to a users in an organization,
// without an Office365 licence or OneDrive account setup completed
// 400: Tenant does not have a SPO license
// 403: You do not have access to create this personal site or you do not have a valid license
* don't have default content-type
* make a loginSimpleAuth api too
* make removeAuthToken protected
(cherry picked from commit 4be2b6fd91)
* fix lint
* run yarn format
* Apply suggestions from code review
Co-authored-by: Antoine du Hamel <antoine@transloadit.com>
* fix broken merge conflict
* improve inheritance
* fix bug
* fix bug with dynamic grant config
* use duck typing for error checks
see discussion here: https://github.com/transloadit/uppy/pull/4619#discussion_r1406225982
* Apply suggestions from code review
Co-authored-by: Antoine du Hamel <antoine@transloadit.com>
* fix broken lint fix script
* fix broken merge code
* try to fix flakey tets
* fix lint
---------
Co-authored-by: Antoine du Hamel <antoine@transloadit.com>
New concept "simple auth" - authentication that happens immediately (in one http request) without redirecting to any third party.
uppyAuthToken initially used to simply contain an encrypted & json encoded OAuth2 access_token for a specific provider. Then we added refresh tokens as well inside uppyAuthToken #4448. Now we also allow storing other state or parameters needed for that specific provider, like username, password, host name, webdav URL etc... This is needed for providers like webdav, ftp etc, where the user needs to give some more input data while authenticating
Companion:
- `providerTokens` has been renamed to `providerUserSession` because it now includes not only tokens, but a user's session with a provider.
Companion `Provider` class:
- New `hasSimpleAuth` static boolean property - whether this provider uses simple auth
- uppyAuthToken expiry default 24hr again for providers that don't support refresh tokens
- make uppyAuthToken expiry configurable per provider - new `authStateExpiry` static property (defaults to 24hr)
- new static property `grantDynamicToUserSession`, allows providers to specify which state from Grant `dynamic` to include into the provider's `providerUserSession`.
According to https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS#simple_requests, we have so many preflight requests because we add `Uppy-Versions` header and `Content-Type: application/json` to each request. It's particularly not useful for for requests with no body / an empty body because the remote Companion doesn't check `Content-Type`.
It was added in b25f243627, and since f0f1105ef0, it is only used for log
purposes.
Co-authored-by: Mikael Finstad <finstaden@gmail.com>