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
| /**
| * @param {string} value
| * @returns {RegExp}
| * */
|
| /**
| * @param {RegExp | string } re
| * @returns {string}
| */
| function source(re) {
| if (!re) return null;
| if (typeof re === "string") return re;
|
| return re.source;
| }
|
| /**
| * @param {...(RegExp | string) } args
| * @returns {string}
| */
| function concat(...args) {
| const joined = args.map((x) => source(x)).join("");
| return joined;
| }
|
| /*
| Language: HTTP
| Description: HTTP request and response headers with automatic body highlighting
| Author: Ivan Sagalaev <maniac@softwaremaniacs.org>
| Category: common, protocols
| Website: https://developer.mozilla.org/en-US/docs/Web/HTTP/Overview
| */
|
| function http(hljs) {
| const VERSION = 'HTTP/(2|1\\.[01])';
| const HEADER_NAME = /[A-Za-z][A-Za-z0-9-]*/;
| const HEADER = {
| className: 'attribute',
| begin: concat('^', HEADER_NAME, '(?=\\:\\s)'),
| starts: {
| contains: [
| {
| className: "punctuation",
| begin: /: /,
| relevance: 0,
| starts: {
| end: '$',
| relevance: 0
| }
| }
| ]
| }
| };
| const HEADERS_AND_BODY = [
| HEADER,
| {
| begin: '\\n\\n',
| starts: { subLanguage: [], endsWithParent: true }
| }
| ];
|
| return {
| name: 'HTTP',
| aliases: ['https'],
| illegal: /\S/,
| contains: [
| // response
| {
| begin: '^(?=' + VERSION + " \\d{3})",
| end: /$/,
| contains: [
| {
| className: "meta",
| begin: VERSION
| },
| {
| className: 'number', begin: '\\b\\d{3}\\b'
| }
| ],
| starts: {
| end: /\b\B/,
| illegal: /\S/,
| contains: HEADERS_AND_BODY
| }
| },
| // request
| {
| begin: '(?=^[A-Z]+ (.*?) ' + VERSION + '$)',
| end: /$/,
| contains: [
| {
| className: 'string',
| begin: ' ',
| end: ' ',
| excludeBegin: true,
| excludeEnd: true
| },
| {
| className: "meta",
| begin: VERSION
| },
| {
| className: 'keyword',
| begin: '[A-Z]+'
| }
| ],
| starts: {
| end: /\b\B/,
| illegal: /\S/,
| contains: HEADERS_AND_BODY
| }
| },
| // to allow headers to work even without a preamble
| hljs.inherit(HEADER, {
| relevance: 0
| })
| ]
| };
| }
|
| module.exports = http;
|
|