-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathvalidate.functions
More file actions
281 lines (238 loc) · 7.18 KB
/
validate.functions
File metadata and controls
281 lines (238 loc) · 7.18 KB
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
# This file is part of shellfire core. It is subject to the licence terms in the COPYRIGHT file found in the top-level directory of this distribution and at https://raw.githubusercontent.com/shellfire-dev/core/master/COPYRIGHT. No part of shellfire core, including this file, may be copied, modified, propagated, or distributed except according to the terms contained in the COPYRIGHT file.
# Copyright © 2014-2015 The developers of shellfire core. See the COPYRIGHT file in the top-level directory of this distribution and at https://raw.githubusercontent.com/shellfire-dev/core/master/COPYRIGHT.
core_validate_exit()
{
local message="$1"
if [ $code -eq $core_commandLine_exitCode_USAGE ]; then
core_commandLine_exitBadCommandLine "$message"
else
core_exitError $code "$message"
fi
}
core_validate_pathNotEmpty()
{
local code=$1
local category="$2"
local name="$3"
local value="$4"
if [ -z "$value" ]; then
core_validate_exit "The $category '$name' specifies a path '$value' which is empty"
fi
}
core_validate_folderPathReadableAndSearchable()
{
core_validate_pathNotEmpty "$@"
local code=$1
local category="$2"
local name="$3"
local value="$4"
local messageFragment="The $category '$name' specifies a path '$value' which"
if [ ! -e "$value" ]; then
core_validate_exit "$messageFragment does not exist"
fi
if [ ! -d "$value" ]; then
core_validate_exit "$messageFragment is not a directory"
fi
if [ ! -r "$value" ]; then
core_validate_exit "$messageFragment is not a readable directory"
fi
if [ ! -x "$value" ]; then
core_validate_exit "$messageFragment is not a searchable directory"
fi
}
core_validate_folderPathReadableAndSearchableAndWritable()
{
core_validate_folderPathReadableAndSearchable "$@"
local code=$1
local category="$2"
local name="$3"
local value="$4"
if [ ! -w "$value" ]; then
core_validate_exit "The $category '$name' specifies a path '$value' which is not a writable directory"
fi
}
core_validate_parentFolderPathReadableAndSearchable()
{
core_validate_pathNotEmpty "$@"
local code=$1
local category="$2"
local name="$3"
local value="$4"
if [ "$value" = '/' ]; then
core_validate_exit "The $category '$name' specifies a path '$value' with no parent"
fi
if [ "$(core_compatibility_basename "$value")" = "$value" ]; then
local parentPath="$(pwd)"/..
else
local parentPath="$(core_compatibility_dirname "$value")"
fi
local messageFragment="The $category '$name' specifies a path '$value' with a parent which"
if [ ! -e "$parentPath" ]; then
core_validate_exit "$messageFragment does not exist"
fi
if [ ! -d "$parentPath" ]; then
core_validate_exit "$messageFragment is not a directory"
fi
if [ ! -r "$parentPath" ]; then
core_validate_exit "$messageFragment is not a readable directory"
fi
if [ ! -x "$parentPath" ]; then
core_validate_exit "$messageFragment is not a searchable directory"
fi
}
core_validate_parentFolderPathReadableAndSearchableAndWritable()
{
core_validate_parentFolderPathReadableAndSearchable "$@"
local code=$1
local category="$2"
local name="$3"
local value="$4"
if [ "$value" = '/' ]; then
core_validate_exit "The $category '$name' specifies a path '$value' with no parent"
fi
if [ "$(core_compatibility_basename "$value")" = "$value" ]; then
local parentPath="$(pwd)"/..
else
local parentPath="$(core_compatibility_dirname "$value")"
fi
if [ ! -w "$parentPath" ]; then
core_validate_exit "The $category '$name' specifies a path '$value' with parent which is not a writable directory"
fi
}
core_validate_folderPathIsReadableAndSearchableAndWritableOrCanBeCreated()
{
local value="$4"
if [ -d "$value" ]; then
core_validate_folderPathReadableAndSearchableAndWritable "$@"
else
core_validate_parentFolderPathReadableAndSearchableAndWritable "$@"
fi
}
core_validate_filePathReadable()
{
core_validate_pathNotEmpty "$@"
local code=$1
local category="$2"
local name="$3"
local value="$4"
local messageFragment="The $category '$name' specifies a path '$value' which"
if [ ! -e "$value" ]; then
core_validate_exit "$messageFragment does not exist"
fi
if [ ! -f "$value" ]; then
core_validate_exit "$messageFragment is not a file"
fi
if [ ! -r "$value" ]; then
core_validate_exit "$messageFragment is not a readable file"
fi
}
core_validate_filePathReadableAndExecutable()
{
core_validate_filePathReadable "$@"
local code=$1
local category="$2"
local name="$3"
local value="$4"
local messageFragment="The $category '$name' specifies a path '$value' which"
if [ ! -x "$value" ]; then
core_validate_exit "$messageFragment is not an executable file"
fi
}
core_validate_filePathReadableAndExecutableAndNotEmpty()
{
core_validate_filePathReadableAndExecutable "$@"
local code=$1
local category="$2"
local name="$3"
local value="$4"
if [ ! -s "$value" ]; then
core_validate_exit "The $category '$name' specifies a path which is an empty file"
fi
}
core_validate_socketPathReadableAndWritable()
{
core_validate_pathNotEmpty "$@"
local code=$1
local category="$2"
local name="$3"
local value="$4"
local messageFragment="The $category '$name' specifies a path '$value' which"
if [ ! -e "$value" ]; then
core_validate_exit "$messageFragment does not exist"
fi
if [ ! -S "$value" ]; then
core_validate_exit "$messageFragment is not a socket"
fi
if [ ! -r "$value" ]; then
core_validate_exit "$messageFragment is not a readable socket"
fi
if [ ! -x "$value" ]; then
core_validate_exit "$messageFragment is not an executable socket"
fi
}
core_validate_characterDeviceFileReadableAndWritable()
{
core_validate_pathNotEmpty "$@"
local code=$1
local category="$2"
local name="$3"
local value="$4"
local messageFragment="The $category '$name' specifies a path '$value' which"
if [ ! -e "$value" ]; then
core_validate_exit "$messageFragment does not exist"
fi
if [ ! -c "$value" ]; then
core_validate_exit "$messageFragment is not a character device file"
fi
if [ ! -r "$value" ]; then
core_validate_exit "$messageFragment is not a readable character device file"
fi
if [ ! -x "$value" ]; then
core_validate_exit "$messageFragment is not an executable character device file"
fi
}
core_validate_isBoolean()
{
local code=$1
local category="$2"
local name="$3"
local value="$4"
set +e
core_variable_isTrue "$value"
local exitCode=$?
set -e
if [ $exitCode -eq 2 ]; then
core_validate_exit "The $category '$name' should be yes or no, not '$value'"
fi
}
# From https://stackoverflow.com/questions/806906/how-do-i-test-if-a-variable-is-a-number-in-bash
# See comments by Gilles for negative number tests
core_validate_isUnsignedInteger()
{
local code=$1
local category="$2"
local name="$3"
local value="$4"
case "$value" in
''|*[!0-9]*)
core_validate_exit "The $category '$name' should be an unsigned integer, not '$value'"
;;
*)
:
;;
esac
}
core_validate_nonDynamicPort()
{
local code=$1
local category="$2"
local name="$3"
local value="$4"
core_validate_isUnsignedInteger $code "$category" "$name" "$value"
if [ $value -lt 1 ]; then
core_validate_exit "The $category '$name' should be between 1 and 65535, not '$value'"
fi
if [ $value -gt 65535 ]; then
core_validate_exit "The $category '$name' should be between 1 and 65535, not '$value'"
fi
}