-
-
Notifications
You must be signed in to change notification settings - Fork 15
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
Feature/url show and repeat history #201
Changes from 5 commits
fe1bc20
aff0bb9
d7e952a
d4dffb6
f817207
0118867
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -126,11 +126,15 @@ local on_output = function(code, data, event) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
local last_request_opts = nil | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
--- Call hurl command | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---@param opts table The options | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---@param callback? function The callback function | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
local function execute_hurl_cmd(opts, callback) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-- Check if a request is currently running | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
last_request_opts = opts | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if is_running then | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
utils.log_info('hurl: request is already running') | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
utils.notify('hurl: request is running. Please try again later.', vim.log.levels.INFO) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -200,6 +204,14 @@ local function execute_hurl_cmd(opts, callback) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
utils.log_info('hurl: running command' .. vim.inspect(cmd)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if _HURL_GLOBAL_CONFIG.url.show then | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
local url = utils.get_url_from_hurl_file(opts[1]) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if _HURL_GLOBAL_CONFIG.url.format_without_params then | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
url = utils.convert_url_to_proper_format(opts, url) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
response.url = url | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+207
to
+214
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion Add error handling and validation for URL display. The URL display implementation could be improved:
if _HURL_GLOBAL_CONFIG.url.show then
- local url = utils.get_url_from_hurl_file(opts[1])
+ local url, err = utils.get_url_from_hurl_file(opts[1])
+ if err then
+ utils.log_warn('hurl: failed to extract URL: ' .. err)
+ return
+ end
+ if not url:match('^https?://') then
+ utils.log_warn('hurl: invalid URL format: ' .. url)
+ return
+ end
if _HURL_GLOBAL_CONFIG.url.format_without_params then
url = utils.convert_url_to_proper_format(opts, url)
end
response.url = url
end
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
vim.fn.jobstart(cmd, { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
on_stdout = callback or (is_json_mode and on_json_output or on_output), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
on_stderr = callback or (is_json_mode and on_json_output or on_output), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -297,6 +309,7 @@ local function run_lines(lines, opts, callback) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-- Clean up the temporary file after a delay | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
local timeout = 1000 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
vim.defer_fn(function() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
last_request_opts = vim.deepcopy(lines) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
local success = os.remove(fname) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if not success then | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
utils.log_info('hurl: remove file failed ' .. fname) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -581,6 +594,17 @@ function M.setup() | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
nargs = '*', | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
range = true, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
utils.create_cmd('HurlRerun', function() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if last_request_opts then | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
run_lines(last_request_opts, {}) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
else | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
utils.log_info('No last request to re-run') | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
end, { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
nargs = '*', | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
range = true, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+598
to
+607
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion Enhance rerun functionality with validation and feedback. The rerun implementation could be improved:
utils.create_cmd('HurlRerun', function()
if last_request_opts then
+ if type(last_request_opts) ~= 'table' then
+ utils.notify('Invalid last request data', vim.log.levels.ERROR)
+ return
+ end
+ if vim.tbl_isempty(last_request_opts) then
+ utils.notify('Empty last request data', vim.log.levels.ERROR)
+ return
+ end
run_lines(last_request_opts, {})
+ utils.notify('Rerunning last request...', vim.log.levels.INFO)
else
- utils.log_info('No last request to re-run')
+ utils.notify('No last request to re-run', vim.log.levels.WARN)
end
end, {
nargs = '*',
range = true,
}) 📝 Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return M |
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -312,5 +312,76 @@ util.has_file_in_opts = function(opts) | |||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
return false | ||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||
-- Function to extract the URL from the .hurl file | ||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If as a concept the PR is liked and this is an issue, I can improve that. It works for single line urls currently, but it is right that it might have an issue if you split (if somebody splits the url ofc). Let me know There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hi @Xouzoura Thank you for your PR. Yeah, I like your idea on this. Could you please check and fix the review bots when you're available? 🙏 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @jellydn Cool! Had no time so far, I will try this weekend. |
||||||||||||||||||||||||||||||||
util.get_url_from_hurl_file = function(file_path) | ||||||||||||||||||||||||||||||||
local url = nil | ||||||||||||||||||||||||||||||||
local file = io.open(file_path, 'r') | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
if file then | ||||||||||||||||||||||||||||||||
for line in file:lines() do | ||||||||||||||||||||||||||||||||
line = line:gsub('^%s*(.-)%s*$', '%1') | ||||||||||||||||||||||||||||||||
line = line:gsub('%s+', ' ') | ||||||||||||||||||||||||||||||||
local method = line:match('^(%u+)%s') | ||||||||||||||||||||||||||||||||
if method and method:match('^(GET|POST|PUT|DELETE|PATCH)$') then | ||||||||||||||||||||||||||||||||
file:close() | ||||||||||||||||||||||||||||||||
return line | ||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||
file:close() | ||||||||||||||||||||||||||||||||
else | ||||||||||||||||||||||||||||||||
util.log_info('Could not open file: ' .. file_path) | ||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
return url | ||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
util.convert_url_to_proper_format = function(opts, url) | ||||||||||||||||||||||||||||||||
-- Assuming `url` is defined earlier in the code | ||||||||||||||||||||||||||||||||
if url and url:find('{{') then -- Check if url contains '{{' | ||||||||||||||||||||||||||||||||
local env_file | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
-- Find the environment file in the opts that ends with .env | ||||||||||||||||||||||||||||||||
for _, opt in ipairs(opts) do | ||||||||||||||||||||||||||||||||
if opt:match('%.env$') then -- Check if the option ends with .env | ||||||||||||||||||||||||||||||||
env_file = opt | ||||||||||||||||||||||||||||||||
break -- Exit the loop once the first .env file is found | ||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||
if env_file then | ||||||||||||||||||||||||||||||||
-- Read the environment file and get the variables | ||||||||||||||||||||||||||||||||
local env_vars = {} | ||||||||||||||||||||||||||||||||
local file = io.open(env_file, 'r') | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
if not file then | ||||||||||||||||||||||||||||||||
util.log_error('Could not open environment file: ' .. env_file) | ||||||||||||||||||||||||||||||||
else | ||||||||||||||||||||||||||||||||
-- Read each line of the file | ||||||||||||||||||||||||||||||||
for line in file:lines() do | ||||||||||||||||||||||||||||||||
-- Skip empty lines and comments | ||||||||||||||||||||||||||||||||
line = line:match('^%s*(.-)%s*$') -- Trim whitespace | ||||||||||||||||||||||||||||||||
if line ~= '' and not line:match('^#') then | ||||||||||||||||||||||||||||||||
local key, value = line:match('^(%S+)%s*=%s*(.+)$') -- Match key=value | ||||||||||||||||||||||||||||||||
if key and value then | ||||||||||||||||||||||||||||||||
-- Trim quotes from value, if present | ||||||||||||||||||||||||||||||||
value = value:gsub('^"%s*', ''):gsub('"%s*$', ''):gsub("^'%s*", ''):gsub("'%s*$", '') | ||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion Simplify and correct the quote trimming logic The current code for trimming quotes from the Apply this diff to improve the quote trimming: - value = value:gsub('^"%s*', ''):gsub('"%s*$', ''):gsub("^'%s*", ''):gsub("'%s*$", '')
+ value = value:gsub("^%s*['\"]?", ''):gsub("['\"]?%s*$", '') 📝 Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||
env_vars[key] = value | ||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||
file:close() | ||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
for key, value in pairs(env_vars) do | ||||||||||||||||||||||||||||||||
if url:find('{{' .. key .. '}}') then | ||||||||||||||||||||||||||||||||
url = url:gsub('{{' .. key .. '}}', value) | ||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||
Comment on lines
+374
to
+378
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Handle unresolved placeholders in URL If the URL contains placeholders that are not found in the environment variables, the placeholders will remain in the URL, which may cause issues in downstream processing. Consider adding a check for unresolved placeholders and logging a warning if any are found. Apply this diff to handle unresolved placeholders: end
end
+ -- After replacements, check for unresolved placeholders
+ if url:find('{{.-}}') then
+ util.log_error('Unresolved placeholders remain in URL: ' .. url)
+ end
else
util.log_error('No environment file found in opts.')
end 📝 Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||
else | ||||||||||||||||||||||||||||||||
util.log_error('No environment file found in opts.') | ||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||
-- Load environment variables from the found env_file | ||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
return url | ||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||
return util |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🛠️ Refactor suggestion
Add documentation and improve request storage logic.
The implementation of last request storage could be improved:
last_request_opts
variableAlso applies to: 135-136