-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathValidator.java
103 lines (92 loc) · 2.36 KB
/
Validator.java
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
import android.content.Context;
import java.util.regex.Pattern;
/**
* Form validator class
*/
public class Validator {
private Context myContext;
/**
* Init class
* @param myContext
*/
public Validator(Context myContext) {
this.myContext = myContext;
}
/**
* Show toast message for user
* @param text
*/
private void showMessage(String text) {
Toasty.error(myContext, text, Toast.LENGTH_LONG, false).show();
}
/**
* If string was empty
* @param value
* @param inputName
* @return boolean
*/
public boolean isEmpty(String value, String inputName) {
if ( value.equals( "" ) ) {
showMessage( "Please fill '" + inputName + "' field." );
return true;
}
return false;
}
/**
* If string was email
* @param email
* @return boolean
*/
public boolean isValidEmail(String email) {
if ( isEmpty( email, "email address" ) ) {
return false;
}
if ( !android.util.Patterns.EMAIL_ADDRESS.matcher(email).matches() ) {
showMessage( "The 'email address' you entered is invalid." );
return false;
}
return true;
}
/**
* If phone number is valid
* @param phone
* @return boolean
*/
public boolean isValidMobile(String phone) {
if ( !Pattern.matches( "[a-zA-Z]+", phone ) ) {
if ( phone.length() == 10 || phone.length() == 11 ) {
return true;
}
}
showMessage( "The 'phone number' you entered is invalid." );
return false;
}
/**
* If entered password is valid
* @param value
* @return boolean
*/
public boolean isValidPassword( String value ) {
if ( value.length() < 3 ) {
showMessage( "Your 'password' must be at least 6 characters long." );
return false;
}
return true;
}
/**
* If entered string was alpha-numeric
* @param value
* @return boolean
*/
public boolean isAlphaNumeric(String value) {
return value.matches("^[a-zA-Z0-9]*$");
}
/**
* if string was a-zA-Z
* @param value
* @return boolean
*/
public boolean isPersonName(String value) {
return value.matches("^[a-zA-Z '.,]*$");
}
}