-
Notifications
You must be signed in to change notification settings - Fork 0
/
uri.axi
305 lines (264 loc) · 8.58 KB
/
uri.axi
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
PROGRAM_NAME='uri'
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Include: uri
//
// Description:
//
// - This include file provides functions for working with URI's as defined RFC 3986 (see
// https://tools.ietf.org/html/rfc3986).
//
// Implementation:
//
// - Any NetLinx program utilising the uri include file must use either the INCLUDE or #INCLUDE keywords to include
// the uri include file within the program. While the INCLUDE and #INCLUDE keywords are both functionally
// equivalent the #INCLUDE keyword is recommended only because it is the NetLinx keyword (the INCLUDE keyword is
// from the earlier Axcess programming language and is included within the NetLinx programming language for
// backwards compatibility).
//
// E.g:
//
// DEFINE_PROGRAM 'URI Demo'
//
// #INCLUDE 'uri'
//
//
//
//
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#if_not_defined __URI__
#define __URI__
#include 'string'
DEFINE_TYPE
STRUCT Uri {
char scheme[30];
char user[50];
char password[50];
char host[200];
integer port;
char path[200];
char query[200];
char fragment[200];
}
DEFINE_CONSTANT
char URI_RESERVED_CHARACTERS [] = {':','/','?','#','[',']','@','!','$','&',$27,'(',')','*','+',',',';','='};
char URI_UNRESERVED_CHARACTERS[] = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-._~';
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Function: uriToString
//
// Parameters:
// Uri u - A URI object
//
// Returns:
// char[1500] - A character array containing the URI in string forms
//
// Description:
// Takes a URI object and returns a URI formatted string.
//
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
DEFINE_FUNCTION char[1500] uriToString(Uri u) {
char result[1500];
if(length_array(u.scheme)) {
result = "result,u.scheme,':'";
}
if(length_array(u.host)) {
result = "result,'//'";
if(length_array(u.user) && length_array(u.password)) result = "result,u.user,':',u.password,'@'";
result = "result,u.host";
if(u.port) result = "result,':',itoa(u.port)";
if(find_string(u.path,"'/'",1) == 1) {
result = "result,u.path";
} else {
result = "result,'/',u.path";
}
} else {
result = "result,u.path";
}
if(length_array(u.query)) {
result = "result,'?',u.query"
}
if(length_array(u.fragment)) {
result = "result,'#',u.fragment"
}
return result;
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Function: uriFromString
//
// Parameters:
// Uri u - A URI object
// char str[] - A character array of undetermined length
//
// Returns:
// nothing
//
// Description:
// Takes a URI object and a character array assumed to be containing a URI string. Parses the URI string and updates
// the values of the URI object to match the parsed results.
//
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
DEFINE_FUNCTION uriFromString(Uri u, char str[]) {
stack_var char temp[200]
stack_var integer idx;
stack_var char scheme[20], authority[300], path[200], query[200], fragment[200];
stack_var char user[50], password[50], host[200];
integer port;
temp = str;
scheme = remove_string(temp,"':'",1);
trim_string(scheme,0,1);
if(find_string(temp,"'//'",1)) { // contains authority
remove_string(temp,"'//'",1);
if(find_string(temp,"'/'",1)) { // contains path
idx = (find_string(temp,"'/'",1)-1)
} else if(find_string(temp,"'?'",1)) { // contains query
idx = (find_string(temp,"'?'",1)-1)
} else if(find_string(temp,"'#'",1)) { // contains fragment
idx = (find_string(temp,"'#'",1)-1)
} else {
idx = length_string(temp);
}
authority = mid_string(temp,1,idx);
remove_string(temp,authority,1);
}
if(find_string(temp,"'/'",1)) { // contains path
if(find_string(temp,"'?'",1)) { // contains query
idx = (find_string(temp,"'?'",1)-1)
} else if(find_string(temp,"'#'",1)) { // contains fragment
idx = (find_string(temp,"'#'",1)-1)
} else {
idx = length_string(temp);
}
path = mid_string(temp,1,idx);
remove_string(temp,path,1);
} else {
if(find_string(temp,"'?'",1)) {
path = mid_string(temp,1,find_string(temp,"'?'",1)-1)
remove_string(temp,path,1);
} else if(find_string(temp,"'#'",1)) {
path = mid_string(temp,1,find_string(temp,"'#'",1)-1)
remove_string(temp,path,1);
}
}
if(find_string(temp,"'?'",1)) { // contains query
remove_string(temp,"'?'",1);
if(find_string(temp,"'#'",1)) { // contains fragment
idx = (find_string(temp,"'#'",1)-1)
} else {
idx = length_string(temp);
}
query = mid_string(temp,1,idx);
remove_string(temp,query,1);
}
if(find_string(temp,"'#'",1)) { // contains fragment
remove_string(temp,"'#'",1);
idx = length_string(temp);
fragment = mid_string(temp,1,idx);
remove_string(temp,fragment,1);
}
// break-apart the authority [user:password@]host[:port]
temp = authority;
if(find_string(temp,"'@'",1)) {
user = remove_string(temp,"':'",1)
trim_string(user,0,1);
password = remove_string(temp,"'@'",1)
trim_string(password,0,1);
}
if(find_string(temp,"':'",1)) {
host = remove_string(temp,"':'",1)
trim_string(host,0,1);
port = atoi(temp);
} else {
host = temp;
}
u.scheme = scheme;
u.user = user
u.password = password
u.host = host;
u.path = path;
u.port = port
u.query = query;
u.fragment = fragment;
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Function: uriPercentEncodeString
//
// Parameters:
// char u[] - A character array of undetermined length
//
// Returns:
// char[2048] - A character array containing a percent-encoded string
//
// Description:
// Takes a character array (string) and returns a string containing a percent-encoded version of that string.
//
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
DEFINE_FUNCTION char[2048] uriPercentEncodeString(char u[]) {
stack_var char i;
stack_var char c;
stack_var char encoded[2048];
for(i = 1; i <= length_string(u); i++) {
c = u[i];
if(uriIsReservedChar(c) || uriIsUnreservedChar(c)) {
append_string(encoded,"c");
}
else {
append_string(encoded,uriPercentEncodeChar(c));
}
}
return encoded;
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Function: uriPercentEncodeChar
//
// Parameters:
// char c - A char value
//
// Returns:
// char[3] - A character array containing a percent-encoded string
//
// Description:
// Takes a character and returns a string containing a percent-encoded version of that character.
//
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
DEFINE_FUNCTION char[3] uriPercentEncodeChar(char c) {
return "'%',format('%02X',"c")";
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Function: uriIsReservedChar
//
// Parameters:
// char c - A char value
//
// Returns:
// integer - An integer containing either a true (1) or false (0) value
//
// Description:
// Takes a character and returns a true|false result indicating whether the character would be a reserved character
// in a URI.
//
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
DEFINE_FUNCTION integer uriIsReservedChar(char c) {
return (find_string(URI_RESERVED_CHARACTERS,"c",1))
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Function: uriIsUnreservedChar
//
// Parameters:
// char c - A char value
//
// Returns:
// integer - An integer containing either a true (1) or false (0) value
//
// Description:
// Takes a character and returns a true|false result indicating whether the character would not be a reserved
// character in a URI (i.e., is it unreserved?)
//
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
DEFINE_FUNCTION integer uriIsUnreservedChar(char c) {
return (find_string(URI_UNRESERVED_CHARACTERS,"c",1))
}