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

[cli] Fix HTTPS tunneling for usernames with dot #28692

Merged
merged 2 commits into from May 9, 2024

Conversation

gabrieldonadel
Copy link
Member

Why

As highlighted in #27027 (comment), users with . in their usernames are unable to use HTTPS tunneling due to a limitation of our SSL certificate, where we can only have one level deep wild card domains.

How

Update _getIdentifyingUrlSegmentsAsync to filter out . when slugifying the username. This shouldn't cause any clashes given that we concat the username with getProjectRandomnessAsync()

Test Plan

yarn start --tunnel using an account with . in the username

Checklist

@gabrieldonadel gabrieldonadel force-pushed the @gabrieldonadel/fix-ngrok-subdomains branch from dbb8703 to 7ad1259 Compare May 9, 2024 20:35
@expo-bot expo-bot added bot: passed checks ExpoBot has nothing to complain about and removed bot: suggestions ExpoBot has some suggestions labels May 9, 2024
@gabrieldonadel gabrieldonadel merged commit b911ff6 into main May 9, 2024
20 of 21 checks passed
@gabrieldonadel gabrieldonadel deleted the @gabrieldonadel/fix-ngrok-subdomains branch May 9, 2024 20:50
@tsapeta tsapeta added the published Changes from the PR have been published to npm label May 10, 2024
gabrieldonadel added a commit that referenced this pull request May 14, 2024
As highlighted in
#27027 (comment), users
with `.` in their usernames are unable to use HTTPS tunneling due to a
limitation of our SSL certificate, where we can only have one level deep
wild card domains.

Update `_getIdentifyingUrlSegmentsAsync` to filter out `.` when
slugifying the username. This shouldn't cause any clashes given that we
concat the username with `getProjectRandomnessAsync()`

`yarn start --tunnel` using an account  with `.` in the username

<!--
Please check the appropriate items below if they apply to your diff.
This is required for changes to Expo modules.
-->

- [ ] Documentation is up to date to reflect these changes (eg:
https://docs.expo.dev and README.md).
- [ ] Conforms with the [Documentation Writing Style
Guide](https://github.com/expo/expo/blob/main/guides/Expo%20Documentation%20Writing%20Style%20Guide.md)
- [ ] This diff will work correctly for `npx expo prebuild` & EAS Build
(eg: updated a module plugin).
@@ -51,7 +51,8 @@ export class AsyncNgrok {
return [
// NOTE: https://github.com/expo/expo/pull/16556#discussion_r822944286
await this.getProjectRandomnessAsync(),
slugify(username),
// Strip out periods from the username to avoid subdomain issues with SSL certificates.
slugify(username, { remove: /\./ }),
Copy link
Contributor

@wodin wodin May 14, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I see that the slugify docs say this:

  • If the value of remove is a regular expression, it should be a character class and only a character class. It should also use the global flag. (For example: /[*+~.()'"!:@]/g.) Otherwise, the remove option might not work as expected.
  • If the value of remove is a string, it should be a single character. Otherwise, the remove option might not work as expected.

So it seems they're saying you should use '.' or /[.]/g

However, I tested /\./ and it seems to work fine! I suppose their recommendation is just a lie to children?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bot: fingerprint compatible bot: passed checks ExpoBot has nothing to complain about published Changes from the PR have been published to npm
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants