Page Menu
Home
Musing Studio
Search
Configure Global Search
Log In
Files
F12143085
validation.go
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
641 B
Subscribers
None
validation.go
View Options
package
config
import
(
"fmt"
"regexp"
"strconv"
)
var
(
domainReg
=
regexp
.
MustCompile
(
"^https?://"
)
)
const
(
minPort
=
80
maxPort
=
1
<<
16
-
1
)
func
validateDomain
(
i
string
)
error
{
if
!
domainReg
.
MatchString
(
i
)
{
return
fmt
.
Errorf
(
"Domain must start with http:// or https://"
)
}
return
nil
}
func
validatePort
(
i
string
)
error
{
p
,
err
:=
strconv
.
Atoi
(
i
)
if
err
!=
nil
{
return
err
}
if
p
<
minPort
||
p
>
maxPort
{
return
fmt
.
Errorf
(
"Port must be a number %d - %d"
,
minPort
,
maxPort
)
}
return
nil
}
func
validateNonEmpty
(
i
string
)
error
{
if
i
==
""
{
return
fmt
.
Errorf
(
"Must not be empty"
)
}
return
nil
}
File Metadata
Details
Attached
Mime Type
text/x-c
Expires
Fri, Oct 10, 4:58 AM (1 d, 13 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3439901
Attached To
rWF WriteFreely
Event Timeline
Log In to Comment