-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.py
280 lines (233 loc) · 6.22 KB
/
main.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
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
from flask import Flask, Response, redirect, request, jsonify
from bs4 import BeautifulSoup
import requests
import codecs
#import config
app = Flask(__name__)
wikipedia = 'wikipedia.org/wiki/'
default_language = 'id' # supported on en (not all language supported)
region_api = 'http://dev.farizdotid.com/api/daerahindonesia/'
# #
# # Generating JSON responses
# #
# def generate_json_response(data, status_code):
# try:
# _response = {
# "data": data
# }
# if (status_code == 400):
# _response = {
# "error": {
# "code": status_code,
# "message": data
# }
# }
# return response
# except Exception as e:
# raise e
#
# Authentication token checking
#
def auth_check(token):
try:
token = codecs.decode(token, 'hex').decode('utf-8')
if token.endswith('alfin'):
if token <= 0 or token >= 100000:
return Response('Unauthorized', 401)
pass
else:
return Response('Unauthorized', 401)
except Exception as e:
raise e
#
# Redirect to API documentation
# <NOT YET DOCUMENTED>
#
@app.route('/')
def documentation():
return redirect('https://app.swaggerhub.com/apis-docs/alfinm01/TST_WikiRegionAPI/1.0.0', code = 303)
#
# Get access token
# Simple NIM encryption (only for STI ITB student)
#
@app.route('/token/<nim>')
def get_token(nim):
try:
_nim = int(nim)
_nim_check = _nim - 18200000
if _nim_check > 0 and _nim_check < 100000:
_key = 'alfin'
_nim = b'str(_nim).join(_alfin)'
return codecs.encode(_nim, 'hex')
else:
return Response('Forbidden to access (Invalid NIM)', 403)
except Exception as e:
raise e
#
# Get desired region data from Wikipedia
#
@app.route('/wiki')
def wiki():
try:
# Authentication check
#token = request.headers.get('token')
#auth_check(token)
# Get Wikipedia content
_wiki = request.args.get('name')
if _wiki is None:
return Response('Must include wiki query', 400)
_language = request.args.get('language')
if _language:
_result = requests.get('https://' + _language + '.' + wikipedia + _wiki)
else:
_result = requests.get('https://' + default_language + '.' + wikipedia + _wiki)
_soup = BeautifulSoup(_result.text, 'html.parser')
# Wiki not found
_not_found = _soup.find('div', attrs = {'class' : 'noarticletext'})
if _not_found:
return Response('Wiki not found', 404)
# Parsing from HTML to JSON
_table = _soup.find('table', attrs = {'class' : 'infobox'})
# Wrong wiki query
if _table == None:
return Response('Wiki query is wrong', 404)
# Iterate every tr
_tbody = _table.find('tbody')
_data = {}
_counter = 0
for _tr in _tbody.find_all('tr'):
# Continue to next iterate
if _tr.find('th', attrs = {'scope' : 'row'}) == None:
continue
# Parsing dictionary key
if _tr.find('a'):
_key = _tr.find('a').text
else:
if _tr.find('b'):
_key = _tr.find('b').text
else:
if _tr.find('div'):
_key = _tr.find('div').text
else:
_key = '0uncrawled object ' + str(_counter)
# Parsing dictionary value
if _tr.find('td'):
_value = _tr.find('td').text
else:
_value = '0uncrawled object ' + str(_counter)
# Append dictionary
_data[_key] = _value
_counter += 1
_new_data = {}
# Only get data with alphabetic initial
for _key in _data:
if _key[0].isalpha():
_new_data[_key] = _data[_key]
return jsonify(_new_data)
except Exception as e:
raise e
#
# Get desired region data from Wikipedia in form of raw data
#
@app.route('/wiki/raw')
def wiki_raw():
try:
# Authentication check
#token = request.headers.get('token')
#auth_check(token)
# Get Wikipedia content
_wiki = request.args.get('name')
if _wiki is None:
return Response('Must include wiki query', 400)
_language = request.args.get('language')
if _language:
_result = requests.get('https://' + _language + '.' + wikipedia + _wiki)
else:
_result = requests.get('https://' + default_language + '.' + wikipedia + _wiki)
_soup = BeautifulSoup(_result.text, 'html.parser')
# Wiki not found
_not_found = _soup.find('div', attrs = {'class' : 'noarticletext'})
if _not_found:
return Response('Wiki not found', 404)
# Find table
_table = _soup.find('table', attrs = {'class' : 'infobox'})
# Wrong wiki query
if _table == None:
return Response('Wiki query is wrong', 404)
# Find first paragraph
_div = _soup.find('div', attrs = {'class' : 'mw-parser-output'})
_p = _soup.find('p')
# Wrong wiki query
if _p == None:
return Response('Wiki query is wrong', 404)
# Iterate every tr
_data = {}
_data['table'] = str(_table)
_data['paragraph'] = str(_p)
return jsonify(_data)
except Exception as e:
raise e
#
# Get Indonesian provinces data
#
@app.route('/id/province')
def province():
try:
# Authentication check
#token = request.headers.get('token')
#auth_check(token)
# Reformat JSON data
_result = requests.get(region_api + 'provinsi').json()
_data = _result['semuaprovinsi']
return jsonify(_data)
except Exception as e:
raise e
#
# Get Indonesian cities data
#
@app.route('/id/city/<province_id>')
def city(province_id):
try:
# Authentication check
#token = request.headers.get('token')
#auth_check(token)
# Reformat JSON data
_result = requests.get(region_api + 'provinsi/' + province_id + '/kabupaten').json()
_data = _result['kabupatens']
return jsonify(_data)
except Exception as e:
raise e
#
# Get Indonesian districts data
#
@app.route('/id/district/<city_id>')
def district(city_id):
try:
# Authentication check
#token = request.headers.get('token')
#auth_check(token)
# Reformat JSON data
_result = requests.get(region_api + 'provinsi/kabupaten/' + city_id + '/kecamatan').json()
_data = _result['kecamatans']
return jsonify(_data)
except Exception as e:
raise e
#
# Get Indonesian villages data
#
@app.route('/id/village/<district_id>')
def village(district_id):
try:
# Authentication check
#token = request.headers.get('token')
#auth_check(token)
# Reformat JSON data
_result = requests.get(region_api + 'provinsi/kabupaten/kecamatan/' + district_id + '/desa').json()
_data = _result['desas']
return jsonify(_data)
except Exception as e:
raise e
if __name__ == '__main__':
app.run(threaded = True)
#app.run(ssl_context = ('cert.pem', 'key.pem'))
#app.run(debug = True)