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
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 12 additions & 3 deletions autoload/rails.vim
Original file line number Diff line number Diff line change
Expand Up @@ -1967,6 +1967,8 @@ function! rails#get_binding_for(pid) abort
if empty(a:pid)
return ''
endif
let uri_scheme = 'http://'
let ssl_result = ''
if has('win32')
let output = system('netstat -anop tcp')
let binding = matchstr(output, '\n\s*TCP\s\+\zs\S\+\ze\s\+\S\+\s\+LISTENING\s\+'.a:pid.'\>')
Expand All @@ -1988,16 +1990,23 @@ function! rails#get_binding_for(pid) abort
elseif executable('netstat')
let output = system('netstat -antp')
let binding = matchstr(output, '\S\+:\d\+\ze\s\+\S\+\s\+LISTEN\s\+'.a:pid.'/')
return empty(binding) ? '' : 'http://' . s:sub(binding, '^([^[]*:.*):', '[\1]:')
else
let binding = ''
endif
endif
let binding = substitute(binding, '^\(^[^[]*:.*):', '[\1]:', '')
let binding = substitute(binding, '^\(^[^[]*:.*\):', '[\1]:', '')
if empty(binding)
return ''
endif
return 'http://' . binding
if executable('curl')
let ssl_result = system('curl -k --silent --head --fail https://'.binding)
elseif executable('wget')
let ssl_result = system('wget --no-check-certificate --method=HEAD -q -S https://'.binding)
endif
if len(matchstr(ssl_result, '200 OK')) > 0
let uri_scheme = 'https://'
endif
return uri_scheme . binding
endfunction

function! s:ServerCommand(kill, bg, arg) abort
Expand Down