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

Add autodetected http/https protocols #592

Closed

Conversation

dblanken
Copy link
Contributor

This is in response to @tpope's response on PR #590 to allow https to be used for localhost connections using Preview. There, he mentioned that he'd like the uri scheme protocol to be autodetected, which I appreciate. I opted to use 'possible approach 3' to ps/grep for ssl:// to see if it was being used or not.

@tpope
Copy link
Owner

tpope commented Sep 19, 2022

Good start. You'll want to use ps -p <pid> so that it doesn't match any process.

Probably easiest to make rails#get_binding_for() responsible for this, changing the interface to return http://localhost:3000 rather than localhost:3000. We already have the pid handy there, and the functions that call it (indirectly through .server_binding() end up prepending the protocol anyways.

@dblanken
Copy link
Contributor Author

dblanken commented Sep 20, 2022

Thank you for the guidance, @tpope. rails#get_binding_for() is perfect for this.

I didn't know how well-versed you were with the win32 side of things in rails#get_binding_for(). I attempted to install ruby/rails on a windows machine I had using RubyInstaller and was able to get it to autodetect with the code submitted, but I am not sure if that covers most of the use cases of a windows user attempting to use :Preview. It assumes that curl is present, which is available with RailsInstaller, otherwise it just reverts back to http.

The non-win32 version I think should work since I haven't seen a system without access to ps and grep, but I can add checks for that too if you think it should be there for completeness. I was able to test this on Ubuntu and MacOS.

Also, if you'd rather the solution stick to one possible approach, I can work instead on replacing the ps solution with curl to match the win32 version, but I really like the ps solution as it seems easier to follow for me.

Thanks again for all of your help and for such a great plugin.

@dblanken dblanken force-pushed the autodetect_uri_scheme_on_preview branch 2 times, most recently from 26c29ae to bc54347 Compare September 20, 2022 15:08
@tpope
Copy link
Owner

tpope commented Sep 21, 2022

Let's start by doing just the interface change, with hard-coded http://. It's hard to read the diff with both changes happening at once.

Also, if you'd rather the solution stick to one possible approach, I can work instead on replacing the ps solution with curl to match the win32 version, but I really like the ps solution as it seems easier to follow for me.

I'm leaning towards using the curl solution everywhere, as I have no idea if that ssl: match is the same across all web servers.

I don't actually consider Windows support mandatory for merging, but indeed an added bonus of the curl approach is it works everywhere.

@tpope
Copy link
Owner

tpope commented Sep 21, 2022

Actually hold off; the interface change is tricky and touches some bugs that need to be fixed. I'll take care of it and you can pick up from there.

tpope added a commit that referenced this pull request Sep 21, 2022
Most notably, now include the http:// as part of the binding.

References: #592
@tpope
Copy link
Owner

tpope commented Sep 21, 2022

Okay have at it.

Verified

This commit was signed with the committer’s verified signature.
dblanken David Blankenship
When running without changes, it looks as if the ) character was not
escaped.  Escaping this allows a successful http binding.

Verified

This commit was signed with the committer’s verified signature.
dblanken David Blankenship
get_binding_for now references a uri_scheme variable to prepend the
http:// to the binding.

Verified

This commit was signed with the committer’s verified signature.
dblanken David Blankenship
This is done in preparation of the uri_scheme detection.  Since a return
is found here, the detection of SSL must occur before this, and only on
a valid binding.

Verified

This commit was signed with the committer’s verified signature.
dblanken David Blankenship
Use curl to detect if the binding used is over https or http.

* Created a local method to handle detection given a non-URI prepended
  binding
* Set uri_scheme variable before returns where binding is in scope
@dblanken dblanken force-pushed the autodetect_uri_scheme_on_preview branch from bc54347 to 1e2f345 Compare September 22, 2022 18:31
@dblanken
Copy link
Contributor Author

dblanken commented Sep 22, 2022

Thank you for doing all of that!

I tried to break up the commits a little more this time. Also I wondered if you could verify my regex fix to make sure you're having the issue as well before the fix. I was only able to test that on my Mac, so that's what that was based on. I can revert if needed.

I was also iffy on if you were ok with a local method or not for this--I figured since it had to be done twice in that method, it helped not make it so long.

Finally, I added the -k to the curl to allow insecure certs. For my case, it caused my Preview to hang for quite a bit without it, but I could see that allowing some security concerns.

Again, thanks for looking at all of this and for your feedback/help.

tpope added a commit that referenced this pull request Sep 22, 2022
@tpope
Copy link
Owner

tpope commented Sep 22, 2022

I tried to break up the commits a little more this time. Also I wondered if you could verify my regex fix to make sure you're having the issue as well before the fix. I was only able to test that on my Mac, so that's what that was based on. I can revert if needed.

Yeah I'm not sure why I didn't catch that when testing. I've gone ahead and ported it to master.

I was also iffy on if you were ok with a local method or not for this--I figured since it had to be done twice in that method, it helped not make it so long.

I don't see why it needs to be done twice. I deliberately restructured it to have a singular return at the end, with your upcoming change in mind.

@dblanken
Copy link
Contributor Author

I'll remove the regex hopefully tonight from the PR. Thanks for verifying and porting that one.

For the return, I think it was line 1991 that I then broke up in commit 1549556 in order to add what I consider the second check. I did notice you gave a great avenue to one return everywhere else, but thought that possibly remained for a different reason. I can revert that change there and just have it at the end before the return if you feel it isn't needed in that return.

@tpope
Copy link
Owner

tpope commented Sep 22, 2022

You can delete that return line, it was a mistake.

Verified

This commit was signed with the committer’s verified signature.
dblanken David Blankenship
Removed return line in netstat conditional as it should not have
remained, allowing for one return flow in the get_binding_for method.

References: [Discussion on netstat conditional](tpope#592 (comment))

Verified

This commit was signed with the committer’s verified signature.
dblanken David Blankenship
Move contents of s:UriSchemeFor into get_binding_for now that we have
one return in that method.

Verified

This commit was signed with the committer’s verified signature.
dblanken David Blankenship
Added a backup check for wget in the event curl did not exist.  Both
can return a 200 OK, so we can check for that in both cases.
@dblanken
Copy link
Contributor Author

dblanken commented Sep 26, 2022

Sorry for such a delay in getting back. I removed the line, which allowed us to put the method details back into get_binding_for, and I added wget as a backup to curl should it not exist on the system.

Verified

This commit was signed with the committer’s verified signature.
dblanken David Blankenship
This was residual from the netstat change before and should have been
removed with it.
@tpope tpope closed this in 24c31a1 Sep 27, 2022
@tpope
Copy link
Owner

tpope commented Sep 27, 2022

Merged with some tweaks, thanks.

@tpope tpope reopened this Sep 27, 2022
@dblanken
Copy link
Contributor Author

Tested your merge on my Mac.

I think the --max-time on the curl command should not have the equals sign.
call system('curl --max-time 2 -k --silent --head --fail ' . shellescape('https://'.binding))

wget does use the equals sign in options, so that one is ok.

Thanks for all of your guidance and help on adding this. I really appreciate the opportunity to contribute.

@tpope tpope closed this in a6d2bac Sep 27, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants