-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathAddress.cs
203 lines (182 loc) · 6.14 KB
/
Address.cs
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
// Correios.Net - Biblioteca de comunicação com o site dos correios.
// Copyright (C) 2013 Lucas Andrade de Araújo <lucasdearaujo@icloud.com>
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using Correios.Net.Exceptions;
namespace Correios.Net
{
/// <summary>
/// Modelo de endereço, todos os dados setados nessa classe
/// serão submetido as validações como pode ver.
/// </summary>
///
/// <see cref="http://volkoinen.github.com/Correios.Net"/>
/// <see cref="https://github.com/volkoinen/Correios.Net"/>
public class Address
{
private string _Cep;
private string _Street;
private string _District;
private string _City;
private string _State;
/// <summary>
/// A validação para o CEP permite apenas strings de
/// oito nove digitos com ou sem máscara, apenas seguindo
/// os seguintes padroes: 99999999 ou 99999-999.
/// </summary>
///
/// <see cref="http://volkoinen.github.com/Correios.Net"/>
/// <see cref="https://github.com/volkoinen/Correios.Net"/>
public String Cep
{
get
{
return this._Cep;
}
set
{
int count = 0;
if (value.Length != 8 && value.Length != 9)
throw new InvalidArgumentException("O CEP informado é inválido.");
foreach (char c in value)
if (Char.IsDigit(c))
count++;
if(count != 8)
throw new InvalidArgumentException("O CEP informado é inválido.");
this._Cep = value;
}
}
/// <summary>
/// A validação do endereço verifica apenas se o mesmo
/// tem um número de caracteres maior do que 500.
/// </summary>
///
/// <see cref="http://volkoinen.github.com/Correios.Net"/>
/// <see cref="https://github.com/volkoinen/Correios.Net"/>
public String Street
{
get
{
return this._Street;
}
set
{
if (value.Length > 500)
throw new InvalidArgumentException("O tamanho da rua não pode exceder 500 caracteres.");
this._Street = value;
}
}
/// <summary>
/// A validação do distrito verifica apenas se o valor informado
/// tem um tamanho de no máximo 500 caracteres.
/// </summary>
///
/// <see cref="http://volkoinen.github.com/Correios.Net"/>
/// <see cref="https://github.com/volkoinen/Correios.Net"/>
public String District
{
get
{
return this._District;
}
set
{
if (value.Length > 500)
throw new InvalidArgumentException("O tamanho do bairro não pode exceder 500 caracteres.");
this._District = value;
}
}
/// <summary>
/// A validação da ciade verifica apenas se o valor informado
/// tem um tamanho de no máximo 500 caracteres.
/// </summary>
///
/// <see cref="http://volkoinen.github.com/Correios.Net"/>
/// <see cref="https://github.com/volkoinen/Correios.Net"/>
public String City
{
get
{
return this._City;
}
set
{
if (value.Length > 500)
throw new InvalidArgumentException("O tamanho da cidade não pode exceder 500 caracteres.");
this._City = value;
}
}
/// <summary>
/// Verifica se o UF informado é
/// </summary>
///
/// <see cref="http://volkoinen.github.com/Correios.Net"/>
/// <see cref="https://github.com/volkoinen/Correios.Net"/>
public String State
{
get
{
return this._State;
}
set
{
bool validState = false;
string[] states =
{
"AC",
"AL",
"AM",
"AP",
"BA",
"CE",
"DF",
"ES",
"GO",
"MA",
"MG",
"MS",
"MT",
"PA",
"PB",
"PE",
"PI",
"PR",
"RJ",
"RN",
"RO",
"RR",
"RS",
"SC",
"SE",
"SP",
"TO"
};
foreach (string state in states)
if (value.ToUpper() == state)
{
validState = true;
this._State = value.ToUpper();
}
if (!validState)
throw new InvalidArgumentException("A sigla da unidade federativa informada é inválida.");
}
}
/// <summary>
/// True quando for um cep único para toda a cidade.
/// </summary>
public Boolean CepUnico { get; set; }
}
}