Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bug: Wrong replacement http to https for remix package #916

Open
nkschmidt opened this issue Feb 15, 2025 · 3 comments
Open

bug: Wrong replacement http to https for remix package #916

nkschmidt opened this issue Feb 15, 2025 · 3 comments
Assignees
Labels
bug Something isn't working

Comments

@nkschmidt
Copy link

nkschmidt commented Feb 15, 2025

Describe the bug

Your code has hack for Gitpod for replacement http to https (HandleSignInCallbackController.js), but it has wrong behaviour for Cloudflare. After replacement we get httpss in callbackUri instead https.

HandleSignInCallbackController.js

Expected behavior

If request url already has https we don't need replace it to https. Because after that we get mismatch redirect url error.

How to reproduce?

Just run Remix package for Cloudflare Worker.

Context

N/A

Proposal

I'm not sure that it's good approach to fix wrong behaviour third party systems in your code, but anyway for solving this problem we need check and don't replace http to https if it already contains https.

For example, we can rewrite replacement:

const callbackUri = isForwardedHttpsTraffic ? request.url.replace('http:', 'https:') : request.url;

or just add additional condition:

const callbackUri = isForwardedHttpsTraffic && request.url.indexOf('https') !== 0 ? request.url.replace('http', 'https') : request.url;

@nkschmidt nkschmidt added the bug Something isn't working label Feb 15, 2025
@wangsijie wangsijie self-assigned this Feb 17, 2025
@wangsijie
Copy link
Contributor

Thanks for the feedback. I think your first proposal is good, I'll patch and update based on that.

@nkschmidt
Copy link
Author

Hey folks! I was going to name my firstborn after the person who fixes this issue, but at this rate, they might be applying for college before it happens. Any updates?

@wangsijie
Copy link
Contributor

Next week, appreciate your patience (and humor 😄)!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Development

No branches or pull requests

2 participants