-
Notifications
You must be signed in to change notification settings - Fork 2
/
hurl-mode.el
779 lines (694 loc) · 32.7 KB
/
hurl-mode.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
;;; hurl-mode.el --- Major mode for hurl
;;
;; Copyright (C) 2023 Jason Zhen
;;
;; Author: Jason Zhen
;; Maintainer: Jason Zhen
;; Created: November 17, 2023
;; Version: 0.0.1
;; Package-Requires: ((emacs "28.2"))
;; URL: https://github.com/JasZhe/hurl-mode
;;
;; This file is not part of GNU Emacs.
;;
;;; License:
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 3, or (at your option)
;; any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs; see the file COPYING. If not, write to the
;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
;; Boston, MA 02110-1301, USA.
;;
;;; Commentary:
;; simple major mode for editing hurl files
;;; Code:
;; this is just for org-src-get-lang-mode
(require 'org-src)
(require 'js)
(require 'json-mode)
(require 'shell)
(require 'outline)
(eval-when-compile
(require 'rx))
(defgroup hurl nil
"A major mode for editing Hurl files."
:group 'tools)
(defgroup hurl-faces nil
"Faces used in Hurl Mode."
:group 'hurl
:group 'faces)
(defface hurl-mode-method-face
'((t (:inherit font-lock-keyword-face)))
"Face for HTTP method."
:group 'hurl-faces)
(defface hurl-mode-url-face
'((t (:inherit font-lock-function-name-face)))
"Face for urls."
:group 'hurl-faces)
(defface hurl-mode-section-face
'((t (:inherit font-lock-preprocessor-face)))
"Face for hurl sections."
:group 'hurl-faces)
(defface hurl-mode-variable-face
'((t (:inherit font-lock-variable-name-face)))
"Face for hurl variables."
:group 'hurl-faces)
(defface hurl-mode-variable-value-face
'((t (:inherit font-lock-string-face)))
"Face for hurl variable values."
:group 'hurl-faces)
(defface hurl-mode-query-face
'((t (:inherit font-lock-builtin-face)))
"Face for hurl query keywords."
:group 'hurl-faces)
(defface hurl-mode-query-arg-face
'((t (:inherit font-lock-string-face)))
"Face for hurl query arguments."
:group 'hurl-faces)
(defface hurl-mode-filter-face
'((t (:inherit font-lock-builtin-face)))
"Face for hurl filters."
:group 'hurl-faces)
(defface hurl-mode-filter-arg-face
'((t (:inherit font-lock-string-face)))
"Face for hurl filter arguments."
:group 'hurl-faces)
(defface hurl-mode-pred-negation-face
'((t (:inherit font-lock-negation-char-face)))
"Face for hurl predicate not prefix."
:group 'hurl-faces)
(defface hurl-mode-pred-face
'((t (:inherit font-lock-keyword-face)))
"Face for hurl predicates."
:group 'hurl-faces)
(defface hurl-mode-pred-arg-face
'((t (:inherit font-lock-string-face)))
"Face for hurl predicate arguments."
:group 'hurl-faces)
(defface hurl-mode-body-face
'((t (:inherit font-lock-string-face)))
"Face for body values."
:group 'hurl-faces)
(defface hurl-mode-template-face
'((t (:inherit font-lock-type-face)))
"Face for templates."
:group 'hurl-faces)
(defconst hurl-mode--http-method-keywords
'("GET" "HEAD" "POST" "PUT" "DELETE" "CONNECT" "OPTIONS" "TRACE" "PATCH"))
(defconst hurl-mode--http-method-regexp
(rx-to-string `(: bol
(group (or ,@hurl-mode--http-method-keywords))
(group (+ not-newline)))))
(defconst hurl-mode--template-regexp
(rx-to-string `(: "{{" (* (or alnum "-" "_")) "}}")))
(defconst hurl-mode--section-header-keywords
'("[QueryStringParams]" "[FormParams]" "[MultipartFormData]" "[BasicAuth]" "[Cookies]" "[Asserts]" "[Captures]" "[Options]"))
(defconst hurl-mode--section-header-regexp
(rx-to-string `(: bol
(or ,@hurl-mode--section-header-keywords))))
(defconst hurl-mode--expected-response-regexp
(rx-to-string `(: bol
(group "HTTP")
(+ blank)
(group (= 3 digit)))))
(defconst hurl-mode--arg-queries
'("header" "cookie" "xpath" "jsonpath" "regex" "variable"))
(defconst hurl-mode--no-arg-queries
'("status" "url" "body" "duration" "sha256" "md5" "bytes"))
(defconst hurl-mode--certificate-attrs
'("Subject" "Issuer" "Start-Date" "Expire-Date" "Serial-Number"))
(defconst hurl-mode--predicates
'("==" "!=" ">" ">=" "<" "<=" "startsWith" "endsWith" "contains" "includes" "matches" "exists" "isBoolean" "isCollection" "isDate" "isEmpty" "isFloat" "isInteger" "isString"))
(defconst hurl-mode--no-arg-filters
'("count" "daysAfterNow" "daysBeforeNow" "decode" "format" "htmlEscape" "htmlUnescape" "toDate" "toInt" "urlDecode" "urlEncode"))
(defconst hurl-mode--single-int-arg-filters '("nth"))
(defconst hurl-mode--single-string-arg-filters '("regex" "split" "xpath"))
(defconst hurl-mode--double-string-arg-filters `("replace"))
(defun hurl-fontify-src-blocks (limit)
"Fontifies body blocks for detected languages.
Essentially creates a temporary buffer with the specified major mode and inserts the request body text into it.
Then we can copy the font properties from that temporary buffer to our real hurl buffer.
This is basically a simplified version of the combination of `org-fontify-meta-lines-and-blocks-1' and `org-src-font-lock-fontify-block'
since we don't need to care about the other block types in org."
(when (re-search-forward
(rx bol (group "```"
(group (zero-or-more (any "a-zA-Z")))
(group (group (zero-or-more (not (any " \t\n"))))
(zero-or-more (any " \t"))
(group (zero-or-more any)))))
limit t)
(let ((beg (match-beginning 0))
(end-of-beginline (match-end 0))
(block-start (match-end 0))
(block-end nil)
(lang (match-string 2))
end-of-endline)
(when (re-search-forward (rx-to-string `(group bol "```")))
(setq block-end (match-beginning 0))
(setq end-of-endline (match-end 0))
(add-text-properties
beg end-of-endline '(font-lock-fontified t font-lock-multiline t))
;; this save match data is really important or else we only fontify a single block
(save-match-data
(remove-text-properties block-start block-end '(face nil))
(let ((string (buffer-substring-no-properties block-start block-end))
(lang-mode (org-src-get-lang-mode lang))
(my-buffer (current-buffer)))
(if (fboundp lang-mode)
;; for debugging purposes having a real (hidden) buffer to see what's being fontified is nice (org does this)
;; but we can easily switch to just with-temp-buffer if we no longer want this
(with-current-buffer (get-buffer-create (format " *hurl fontify buffer:%s*" lang-mode))
(erase-buffer)
(insert string " ")
(funcall lang-mode)
(font-lock-ensure)
(let ((pos (point-min)) next)
(while (setq next (next-property-change pos))
(dolist (prop (append '(font-lock-face face) font-lock-extra-managed-props))
(let ((new-prop (get-text-property pos prop)))
(when (not (eq prop 'invisible))
(put-text-property (+ block-start (1- pos)) (1- (+ block-start next)) prop new-prop my-buffer)))
)
(setq pos next))
))
;; otherwise if lang not found just fontify with body face
(add-text-properties block-start block-end `(font-lock-fontified t font-lock-multiline t face hurl-mode-body-face))
()
)))
;; this t is really important
;; see: https://www.gnu.org/software/emacs/manual/html_node/elisp/Search_002dbased-Fontification.html
t))))
;; Idea: only match " that doesn't have a \ immediate before it, or the empty string ""
;; key is using the non greedy *?
(defconst string-arg-with-escaped-quote
`(or (: "\"" (*? (category ascii) ) (not "\\") "\"") (: "\"\"")))
(defconst hurl--query-regexp
`(or (group (or ,@hurl-mode--no-arg-queries))
(: (group (or ,@hurl-mode--arg-queries)) blank
(group ,string-arg-with-escaped-quote))
(: (group "certificate") blank
(group (or ,@hurl-mode--certificate-attrs))
))
)
;; need to go to beginning of line so we can match the other filters with other arg requirements
(defun hurl--string-arg-filter-matcher ()
(list
(rx-to-string `(: (group (or ,@hurl-mode--single-string-arg-filters))
blank
(group ,string-arg-with-escaped-quote)))
nil
'(beginning-of-line)
'(1 'hurl-mode-filter-face t)
'(2 'hurl-mode-query-arg-face t)
)
)
(defun hurl--double-string-arg-filter-matcher ()
(list
(rx-to-string `(: (group (or ,@hurl-mode--double-string-arg-filters)) blank
(group ,string-arg-with-escaped-quote) blank
(group ,string-arg-with-escaped-quote)))
nil
'(beginning-of-line)
'(1 'hurl-mode-filter-face t)
'(2 'hurl-mode-query-arg-face t)
'(3 'hurl-mode-query-arg-face t)
)
)
(defun hurl--int-arg-filter-matcher ()
(list
(rx-to-string `(: (group (or ,@hurl-mode--single-int-arg-filters))
blank
(group (+ digit))))
nil
'(beginning-of-line)
'(1 'hurl-mode-filter-face t)
'(2 'font-lock-constant-face t)
)
)
(defun hurl--no-arg-filter-matcher ()
(list
(rx-to-string `(: (group (or ,@hurl-mode--no-arg-filters))))
nil
'(beginning-of-line)
'(0 'hurl-mode-filter-face t)
)
)
;; anchored highlighter for captures
;; https://www.gnu.org/software/emacs/manual/html_node/elisp/Search_002dbased-Fontification.html
(defun hurl-variable-and-capture-matcher ()
(list
;; variable name as anchor
(rx-to-string `(: bol (group (* (or alnum "_" "-")) ":") blank
;; 0 or more queries with their arguments
(? ,hurl--query-regexp)))
'(1 'hurl-mode-variable-face t t)
'(2 'hurl-mode-query-face t t) ;; noarg
'(3 'hurl-mode-query-face t t) ;; arg
'(4 'hurl-mode-query-arg-face t t)
'(5 'hurl-mode-query-face t t) ;; certificate
'(6 'hurl-mode-query-arg-face t t)
(hurl--string-arg-filter-matcher)
(hurl--double-string-arg-filter-matcher)
(hurl--int-arg-filter-matcher)
(hurl--no-arg-filter-matcher)
;; fontify the rest for non capture type variables
(list ".*" nil nil '(0 'font-lock-string-face nil))
)
)
(defun hurl-assert-matcher ()
(list
(rx-to-string `(: bol ,hurl--query-regexp))
'(1 'hurl-mode-query-face t t) ;; noarg
'(2 'hurl-mode-query-face t t) ;; arg
'(3 'hurl-mode-query-arg-face t t)
'(4 'hurl-mode-query-face t t) ;; certificate
'(5 'hurl-mode-query-arg-face t t)
(hurl--string-arg-filter-matcher)
(hurl--double-string-arg-filter-matcher)
(hurl--int-arg-filter-matcher)
(hurl--no-arg-filter-matcher)
(list
(rx-to-string `(: (? (group "not")) (* blank) (group (or ,@hurl-mode--predicates)) (* blank) (? (group (* (category ascii))))))
nil nil
'(1 'font-lock-negation-char-face t t)
'(2 'font-lock-keyword-face t t)
'(3 'font-lock-constant-face t t)
)
)
)
(defconst hurl-mode-keywords
(list
`(,hurl-mode--http-method-regexp (1 'hurl-mode-method-face) (2 'hurl-mode-url-face))
(list (rx-to-string `(: (or (not "\\") line-start) "#" (* any))) '(0 'font-lock-comment-face t t))
`(,hurl-mode--expected-response-regexp (1 'hurl-mode-method-face) (2 'hurl-mode-url-face))
`(,hurl-mode--section-header-regexp (0 'hurl-mode-section-face))
'(hurl-fontify-src-blocks)
(hurl-variable-and-capture-matcher)
(hurl-assert-matcher)
`(,hurl-mode--template-regexp (0 'hurl-mode-template-face t t))
)
)
(defconst hurl-mode-syntax-table
(let ((table (make-syntax-table)))
(modify-syntax-entry ?\# "<" table)
(modify-syntax-entry ?\n ">#" table)
table))
(defconst hurl-mode-options
'("aws-sigv4" "cacert" "cert" "color" "compressed" "connect-timeout" "connect-to"
"continue-on-error" "cookie" "cookie-jar" "delay" "error-format" "file-root"
"glob" "http1.0" "http1.1" "http2" "http3" "ignore-asserts" "include" "insecure"
"interactive" "ipv4" "ipv6" "json" "key" "location" "location-trusted" "max-redirs"
"max-time" "no-color" "no-output" "noproxy" "output" "path-as-is" "proxy"
"report-html" "report-junit" "report-tap" "resolve" "retry" "retry-interval"
"ssl-no-revoke" "test" "to-entry" "unix-socket" "user" "user-agent" "variable"
"variables-file" "verbose" "very-verbose" "help" "version")
)
(defun hurl-inside-block-p ()
"Return t if inside hurl body block, nil otherwise.
If point is on the block delimiters themselves, return nil."
;;(rx bol (group "```" (group (zero-or-more (any "a-zA-Z"))))))
(let ((block-start (save-excursion (re-search-backward "```" nil t) (point)))
;; need the end-of-line here cause we don't want to return true when point is ON the block delimiter
(block-end (save-excursion (end-of-line) (re-search-forward "```" nil t) (point)))
(prev-req (save-excursion (re-search-backward hurl-mode--http-method-regexp nil t) (point)))
(next-req (save-excursion (re-search-forward hurl-mode--http-method-regexp nil t) (point)))
)
(and (> block-start prev-req) (< block-end next-req))))
(defun hurl-indent-line ()
"Indent line using `js-indent-line' if we're inside a block. Otherwise do nothing.
TODO: capture the block lang, and have some mapping of langs to indent functions."
(if (hurl-inside-block-p)
(js-indent-line)
'noindent))
;;;###autoload
(define-derived-mode hurl-mode text-mode "Hurl"
"Enable hurl mode."
;; backward paragraph is set as the 'font-lock-mark-block-function see:
;; https://www.gnu.org/software/emacs/manual/html_node/elisp/Other-Font-Lock-Variables.html
;; and https://www.gnu.org/software/emacs/manual/html_node/elisp/Font-Lock-Basics.html
;; this is same as org-set-font-lock-defaults
(setq-local font-lock-defaults '(hurl-mode-keywords t nil nil backward-paragraph))
(setq-local font-lock-multiline t)
(setq-local comment-start "#")
(setq-local comment-start-skip "#+[\t ]*")
(setq-local indent-line-function 'hurl-indent-line)
(setq-local js-indent-level 2)
;; HACK: for some reason font lock is broken when there are comments after
;; reverting the buffer, font-lock-update seems to fix it
(add-hook 'after-revert-hook (lambda () (font-lock-update)) nil t)
)
;; so we don't get auto ` pairing if smartparens mode exists
(eval-after-load 'smartparens-mode
(when (fboundp 'sp-local-pair)
(sp-local-pair 'hurl-mode "`" nil :actions nil)))
(defun hurl-response-outline-level ()
(or
(cdr
(cl-find-if
(lambda (h)
(string-match-p (car h) (match-string 0)))
hurl-outline-heading-alist
))
(- (match-end 0) (match-beginning 0))))
;;;###autoload
(define-derived-mode hurl-response-mode shell-mode "HurlRes"
"Mode for the hurl response buffer.
`outline-minor-mode' is enabled in this buffer.
Each hurl request is its own block.
Each req/resp body is also its own block."
(setq-local outline-blank-line t)
(setq-local outline-regexp "\\* ---+\\|\\* Executing entry\\|\\* Request:\\|\\* Request body:\\|\\* Response:\\|\\* Response body:")
(setq hurl-outline-heading-alist
'(("\\* Executing entry" . 1)
("\\* -------" . 1)
("\\* Request:" . 2)
("\\* Request body:" . 2)
("\\* Response:" . 2)
("\\* Response body:" . 2)
))
;; Don't want any fontification cause we're manually setting text properties with hurl--fontify-using-faces
;; and ansi-color-apply-on-region.
;; Otherwise, our json fontification will get overriden by font-lock-string-face
(setq-local font-lock-defaults '())
(setq-local outline-level #'hurl-response-outline-level)
(outline-minor-mode))
(defcustom hurl-use-fast-process-settings t
"Whether or not to spped up processes via changing some emacs vars.
`read-process-output-max' and `process-adaptive-read-buffering' can be tuned
to improve process speed.
Setting this will adjust those settings only for the hurl process we create."
:type '(boolean))
(defcustom hurl-variables-file ".hurl-variables"
"Name of variables file to automatically use in hurl requests."
:type '(string))
(defvar hurl-response--buffer-name "*hurl-response*"
"Name of output buffer to display to user.")
(defvar hurl-response--output-buffer-name "*hurl-temp-output*"
"Name of temporary buffer to hold process output for parsing later.")
(defvar hurl-response--process-buffer-name "*hurl-process*"
"Name of buffer where the hurl process runs in.")
(defconst hurl-mode--temp-file-name ".temp-request.hurl")
(defun hurl-options-completion-at-point ()
(let* ((bds (bounds-of-thing-at-point 'word))
(start (car bds))
(end (cdr bds)))
(if (and start end)
(list start end hurl-mode-options . nil)
(list (point) (point) hurl-mode-options . nil)
)))
(defun hurl--read-args ()
"Read user input until empty.
Prefixes every string with -- for convenience."
(let ((option)
(all-options ""))
(while (not (string-empty-p
(setq option (minibuffer-with-setup-hook
(lambda ()
(add-hook 'completion-at-point-functions
#'hurl-options-completion-at-point nil t))
(read-string "cli option (empty input finishes): --")))))
(setq all-options (concat all-options " --" option))
)
all-options))
(define-error 'hurl-json-parse-error "Hurl-mode: Error parsing response using json.el")
(define-error 'hurl-parse-error "Error parsing hurl response")
(defun hurl--fontify-using-faces (text)
"This is for using another major mode's fontification.
Reference: https://emacs.stackexchange.com/questions/5400/fontify-a-region-of-a-buffer-with-another-major-mode"
(let ((pos 0))
(while (setq next (next-single-property-change pos 'face text))
(put-text-property pos next 'font-lock-face (get-text-property pos 'face text) text)
(setq pos next))
(add-text-properties 0 (length text) '(fontified t) text)
text))
(defun hurl--format-json (json)
"Format JSON string keeping json-mode's fontification."
(with-temp-buffer
(erase-buffer)
(insert json)
(delay-mode-hooks (jsonc-mode))
(font-lock-default-function 'jsonc-mode)
(font-lock-default-fontify-region (point-min) (point-max) nil)
(condition-case err
(json-pretty-print (point-min) (point-max))
(json-readtable-error
(signal 'hurl-json-parse-error json)))
(hurl--fontify-using-faces (buffer-string))))
(defun hurl-response--parse-and-filter-output (&optional variables-filename)
"Filters the hurl --verbose output STR from PROC to what we care about.
Namely, response headers/body, and captures (to save to variables file).
If VARIABLES-FILENAME is set, save the captures as hurl-variables to that file.
Otherwise use the default `hurl-variables-file'."
(condition-case err
;; filter using capture groups, anychar is used because we want newlines
;; there's always a Response and Response body luckily
(let* ((str (with-current-buffer hurl-response--output-buffer-name
(buffer-string)))
(variables (with-current-buffer hurl-response--output-buffer-name
(goto-char (point-min))
(buffer-substring (progn (re-search-forward "Variables:")
(line-beginning-position))
(progn
(re-search-forward "* Executing entry")
(line-beginning-position)))
))
(req (with-current-buffer hurl-response--output-buffer-name
(goto-char (point-min))
(concat (buffer-substring (progn (re-search-forward "Request:")
(line-beginning-position))
(progn
(re-search-forward
"* Request can be run with the following curl command:")
(line-beginning-position)))
(buffer-substring (progn (re-search-forward "Request body:")
(line-beginning-position))
(progn
(re-search-forward "* Response")
(line-beginning-position))))))
(resp-head
(with-current-buffer hurl-response--output-buffer-name
(goto-char (point-min))
(buffer-substring (progn (re-search-forward "* Response:")
(line-beginning-position))
(progn
(re-search-forward
"* Response body:")
(line-end-position)))))
(resp1
(with-current-buffer hurl-response--output-buffer-name
(goto-char (point-min))
(buffer-substring (progn (re-search-forward "* Response body:")
(line-end-position))
(progn (re-search-forward "* Timings:")
(line-beginning-position)))))
;; get rid of leading stars
(resp (mapconcat (lambda (s)
(when (string-match (rx-to-string `(: bol "* " (group (0+ nonl)))) s)
(substring s (match-beginning 1) (match-end 1)))
)
(split-string resp1 "\n")
"\n"))
(timings
(with-current-buffer hurl-response--output-buffer-name
(goto-char (point-min))
(buffer-substring (progn (re-search-forward "* Timings:")
(line-beginning-position))
(progn (re-search-forward "*$")
(line-beginning-position)))))
(formatted-resp
(condition-case nil
(with-temp-buffer
(if (string-match "Content-Type: application/json" resp-head)
(condition-case err
(insert (hurl--format-json resp))
(t
;; disable fallback to jq on remote. Talking to remote jq process can be very slow
;; most of the time formatting with json-mode should be good enough and is much faster
(if (not (file-remote-p default-directory))
(let* ((jq-command (executable-find "jq" (file-remote-p default-directory)))
(jq-output
(when jq-command
(ansi-color-apply
(let ((cmd (shell-command-to-string
;; -C to colorize with ansi codes, then we apply using 'ansi-color-apply'
;; -R reads each line as string instead of JSOn
;; the 'try' lets us output erroneous lines as is, while continuouing to parse the rest
(format "timeout 3 echo %s | %s -C -R '. as $line | try (fromjson) catch $line'"
(shell-quote-argument resp)
jq-command))))
cmd)
)
)))
(insert (if (string-empty-p jq-output) resp jq-output))
)
(insert resp)
)
)
)
(insert resp)
)
(buffer-substring (point-min) (point-max))
)
(error (signal 'hurl-parse-error str))))
;; isn't always a capture though
(captures1 (when (string-match (rx-to-string `(: bol "* Captures:" (group (0+ anychar)) "*")) str)
(substring str (match-beginning 1) (match-end 1)))
)
;; mainly get rid of *'s, and convert the : to an = for the variables file
;; becomes a list of name to val
(captures (when captures1
(cl-map 'list
(lambda (s)
(split-string s ":"))
(seq-filter #'identity
;; get rid of leading *'s
;; TODO maybe we extract this part out cause its same code as for resp
(cl-map 'list (lambda (s)
(when (string-match (rx-to-string `(: bol "*" (group (0+ nonl)))) s)
(substring s (match-beginning 1) (match-end 1)))
)
(split-string captures1 "\n"))))))
)
(with-current-buffer (get-buffer-create hurl-response--buffer-name)
(erase-buffer)
(hurl-response-mode)
(insert variables)
(when captures
(with-temp-file hurl-variables-file
;; insert hurl-variables-file contents into buffer created by with-temp-file
;; so that we can replace existing variables with updated ones from the new captures
(when (file-exists-p hurl-variables-file)
(insert-file-contents hurl-variables-file))
(seq-do
(lambda (e)
;; reuse variables file and replace values if needed
(save-excursion
(goto-char (point-min))
(when (re-search-forward (concat (string-trim (car e)) "=") nil t)
(delete-line)))
(insert (mapconcat #'string-trim e "=") "\n")
)
captures
)
)
)
(insert req)
(insert timings)
(insert "\n\n" resp-head "\n")
(insert formatted-resp "\n")
))
;; something wrong happened with parsing so just output everything
((hurl-parse-error search-failed error)
(with-current-buffer (get-buffer-create hurl-response--buffer-name)
(erase-buffer)
(hurl-response-mode)
(insert (with-current-buffer hurl-response--output-buffer-name (buffer-string)))
(insert (cdr err))))
)
)
(defun hurl-response--verbose-filter (proc str)
(with-current-buffer (get-buffer-create hurl-response--output-buffer-name)
(shell-mode)
(insert str)))
(defun hurl-mode--send-request (&optional args file-name proc-sentinel)
(save-buffer) ;; this saves the current hurl file
(let* ((args (concat args
" --very-verbose"
(when current-prefix-arg
(hurl--read-args))
(when (file-exists-p hurl-variables-file)
(concat " --variables-file " hurl-variables-file))))
(cmd (concat "hurl" args " " (if file-name file-name (buffer-file-name)))))
(message "executing hurl cmd: %s" cmd)
(ignore-errors (kill-buffer hurl-response--output-buffer-name))
(get-buffer-create hurl-response--output-buffer-name)
(when-let ((buf (get-buffer hurl-response--process-buffer-name))) (kill-buffer buf))
;; https://stackoverflow.com/questions/41599314/ignore-unparseable-json-with-jq
(let* ((read-process-output-max (if hurl-use-fast-process-settings (* 64 1024 1024) read-process-output-max))
(process-adaptive-read-buffering (if hurl-use-fast-process-settings nil process-adaptive-read-buffering))
(proc (start-file-process "hurl" (get-buffer-create hurl-response--process-buffer-name)
"/bin/sh" "-c" cmd))
(proc-buffer (process-buffer proc)))
(when proc-sentinel
(set-process-sentinel proc proc-sentinel))
(set-process-filter proc #'hurl-response--verbose-filter))))
(defun hurl-mode-send-request-single (arg)
"Simple thin wrapper which sends the request at point to hurl.
With prefix arg, prompts for additional arguments to send to hurl."
(interactive "P")
(let* ((beg (save-excursion
(forward-line)
(re-search-backward hurl-mode--http-method-regexp)
(line-beginning-position)))
(end (save-excursion
(forward-line)
;; if we're at the last request in the file, there's no next to search forward for
(re-search-forward hurl-mode--http-method-regexp nil 1)
(line-beginning-position)))
(req (buffer-substring-no-properties beg end)))
(write-region beg end hurl-mode--temp-file-name)
(hurl-mode--send-request
nil hurl-mode--temp-file-name
(lambda (p e) (when (not (process-live-p p))
(with-current-buffer (get-buffer-create hurl-response--output-buffer-name)
(ansi-color-apply-on-region (point-min) (point-max)))
(with-current-buffer hurl-response--output-buffer-name
(hurl-response--parse-and-filter-output))
(display-buffer hurl-response--buffer-name)
(delete-file hurl-mode--temp-file-name))))))
(defun hurl-mode-send-request-file (arg)
"Simple thin wrapper which sends the contents of the current file to hurl.
With prefix arg, prompts for additional arguments to send to hurl."
(interactive "P")
(write-region (point-min) (point-max) hurl-mode--temp-file-name)
(hurl-mode--send-request nil hurl-mode--temp-file-name
(lambda (p e) (when (not (process-live-p p))
(hurl-response--parse-and-filter-output)
(with-current-buffer hurl-response--output-buffer-name
(ansi-color-apply-on-region (point-min) (point-max)))
(display-buffer hurl-response--buffer-name)
(delete-file hurl-mode--temp-file-name)))
))
(defun hurl-mode-test-request-file (arg)
"Hurl wrapper function to send file for testing.
With prefix arg, prompts for additional arguments to send to hurl."
(interactive "P")
(hurl-mode--send-request "--test")
)
(defun hurl-mode-test-request-single (arg)
"Hurl wrapper function to send the request at point for testing.
With prefix arg, prompts for additional arguments to send to hurl."
(interactive "P")
(hurl-mode--send-request "--test")
)
(setq hurl-mode-map
(let ((map (make-sparse-keymap)))
(define-key map (kbd "C-M-i") nil)
(define-key map (kbd "M-<tab>") nil)
(define-key map (kbd "C-c T") 'hurl-mode-test-request-file)
(define-key map (kbd "C-c t") 'hurl-mode-test-request-single)
(define-key map (kbd "C-c X") 'hurl-mode-send-request-file)
(define-key map (kbd "C-c x") 'hurl-mode-send-request-single)
map))
(setq hurl-response-mode-map
(let ((map (make-sparse-keymap)))
(define-key map (kbd "q") #'quit-window)
(define-key map (kbd "TAB") #'outline-toggle-children)
(define-key map (kbd "<tab>") #'outline-toggle-children)
(define-key map (kbd "S-TAB") #'outline-cycle-buffer)
(define-key map (kbd "S-<tab>") #'outline-cycle-buffer)
(define-key map (kbd "C-c ]") #'outline-next-heading)
(define-key map (kbd "C-c >") #'outline-next-heading)
(define-key map (kbd "C-c [") #'outline-previous-heading)
(define-key map (kbd "C-c <") #'outline-previous-heading)
map))
(provide 'hurl-mode)
;;; hurl-mode.el ends here