-
Notifications
You must be signed in to change notification settings - Fork 0
/
inicio_incompleto.py
55 lines (43 loc) · 1.73 KB
/
inicio_incompleto.py
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
import json
import googlemaps
from math import sqrt
#Le o arquivo json cuspido pelo formulario online
entrada = json.loads(open(r'C:\Users\felip\Desktop\teste.json').read())
address = entrada["enderecoRua"]["value"]
number = entrada["enderecoNumero"]["value"]
city = entrada["cidade"]["value"]
name = entrada["nome"]["value"]
#Verifica se o sufixo do cep e rural.
cep = entrada["CEP"]["value"]
enderecoValido = False
if cep[-3:] != '899':
enderecoValido = validar_endereco()
def validar_endereco():
#Pega informacao adicional do endereco do proprietario da loja com o GoogleMaps API
gmaps = googlemaps.Client(key='AIzaSyB1S9WYDMHOuPJR8Vi6rAS9dDfvufw') #nÃO FUNCIONA ESTA CHAVE, GERAR OUTRA E ADD AQUI
geocode_result = gmaps.geocode(address+" "+number+", "+city)
state = geocode_result[0]['address_components'][4]['long_name']
#latitude e longitude da loja do proprietario
lat_client = geocode_result[0]['geometry']['location']['lat']
lng_client = geocode_result[0]['geometry']['location']['lng']
#latitude e longitude do centro da cidade
citycode_result = gmaps.geocode("Centro ,"+city+", "+state)
lat_centro = citycode_result[0]['geometry']['location']['lat']
lng_centro = citycode_result[0]['geometry']['location']['lng']
radius = 1.00 # em km (divide por 100000)
city_point = [{'lat': lat_centro, 'lng': lng_centro}]
test_point = [{'lat': lat_client, 'lng': lng_client}]
a = city_point[0]['lat'] - test_point[0]['lat']
b = city_point[0]['lng'] - test_point[0]['lng']
c = sqrt(a * a + b * b)
if c <= radius:
return(True)
else:
return(False)
resultado = {
'showAccepted' : enderecoValido,
'registerStatus' : enderecoValido,
'clientName' : name,
}
with open('resultado.json','w') as outfile:
json.dump(resultado, outfile)