forked from Salisbury-University/biomez-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver3.py
More file actions
253 lines (239 loc) · 8.04 KB
/
server3.py
File metadata and controls
253 lines (239 loc) · 8.04 KB
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
from flask import Flask, request, jsonify
from pymongo import MongoClient
from pymongo.errors import DuplicateKeyError
from bson.objectid import ObjectId
from flask_cors import CORS
import yaml
# Initialize Flask app and MongoDB connection
app = Flask(__name__)
config = yaml.safe_load(open('db.yaml'))
client = MongoClient(config['uri'])
db = client['biomez']
CORS(app)
# Error handling for 404 error
@app.errorhandler(404)
def resource_not_found(e):
return jsonify(error=str(e)), 404
# Error handling for 400 error
@app.errorhandler(DuplicateKeyError)
def resource_not_found(e):
return jsonify(error=f"Duplicate key error."), 400
# Default route
@app.route('/', methods=['GET'])
def home():
msg = "Biome-z Database"
return(msg)
# Route for searching MongoDB using the search term received from the front-end.
# This function accepts json in the following format:
# { "q": <search term string> }
@app.route('/post-json', methods=['POST','GET'])
def postJsonHandler():
query = request.json['q']
records = db.records
result = records.find(
{ "$text": {
"$search": query
}
}
)
data = []
for doc in result:
doc['_id'] = str(doc['_id'])
data.append(doc)
print(data)
return jsonify(data)
# Route for processing POST and GET requests respectively.
# POST implementation inserts a record into the database
# GET implementation returns all records within the database
@app.route('/records', methods=['POST', 'GET'])
def data():
# POST record to db
if request.method == 'POST':
body = request.json
itemType = body['Item Type']
pubYear = body['Publication Year']
author = body['Author']
title = body['Title']
pubTitle = body['Publication Title']
issn = body['ISSN']
doi = body['DOI']
url = body['Url']
abstract = body['Abstract Note']
date = body['Date']
issue = body['Issue']
volume = body['Volume']
libCatalog = body['Library Catalog']
manualTags = body['Manual Tags']
autoTags = body['Automatic Tags']
db['records'].insert_one({
'Item Type': itemType,
'Publication Year': pubYear,
'Author': author,
'Title': title,
'Publication Title': pubTitle,
'ISSN': issn,
'DOI': doi,
'Url': url,
'Abstract Note': abstract,
'Date': date,
'Issue': issue,
'Volume': volume,
'Library Catalog': libCatalog,
'Manual Tags': manualTags,
'Automatic Tags': autoTags
})
return jsonify({
'status': 'Record added successfully',
'Item Type': itemType,
'Publication Year': pubYear,
'Author': author,
'Title': title,
'Publication Title': pubTitle,
'ISSN': issn,
'DOI': doi,
'Url': url,
'Abstract Note': abstract,
'Date': date,
'Issue': issue,
'Volume': volume,
'Library Catalog': libCatalog,
'Manual Tags': manualTags,
'Automatic Tags': autoTags
})
# GET records from db
if request.method == 'GET':
allData = db['records'].find()
dataJson = []
for data in allData:
id = data['_id']
itemType = data['Item Type']
pubYear = data['Publication Year']
author = data['Author']
title = data['Title']
pubTitle = data['Publication Title']
issn = data['ISSN']
doi = data['DOI']
url = data['Url']
abstract = data['Abstract Note']
date = data['Date']
issue = data['Issue']
volume = data['Volume']
libCatalog = data['Library Catalog']
manualTags = data['Manual Tags']
autoTags = data['Automatic Tags']
dataDict = {
'_id': str(ObjectId(id)),
'Item Type': itemType,
'Publication Year': pubYear,
'Author': author,
'Title': title,
'Publication Title': pubTitle,
'ISSN': issn,
'DOI': doi,
'Url': url,
'Abstract Note': abstract,
'Date': date,
'Issue': issue,
'Volume': volume,
'Library Catalog': libCatalog,
'Manual Tags': manualTags,
'Automatic Tags': autoTags
}
dataJson.append(dataDict)
print(dataJson)
return jsonify(dataJson)
# Route for processing GET, DELETE, and PUT reuests for a single record using its object _id
# Example: http://127.0.0.1:5000/records/63ff6e901e2e79534ebcddf5
# GET implementation returns a single record if _id is found
# DELETE implementation removes a single record if _id is found
# PUT implementation updates a single record if _id is found
@app.route('/records/<id>', methods=['GET', 'DELETE', 'PUT'])
def onedata(id):
# GET record by id
if request.method == 'GET':
data = db['records'].find_one({'_id': ObjectId(id)})
id = data['_id']
itemType = data['Item Type']
pubYear = data['Publication Year']
author = data['Author']
title = data['Title']
pubTitle = data['Publication Title']
issn = data['ISSN']
doi = data['DOI']
url = data['Url']
abstract = data['Abstract Note']
date = data['Date']
issue = data['Issue']
volume = data['Volume']
libCatalog = data['Library Catalog']
manualTags = data['Manual Tags']
autoTags = data['Automatic Tags']
dataDict = {
'_id': str(ObjectId(id)),
'Item Type': itemType,
'Publication Year': pubYear,
'Author': author,
'Title': title,
'Publication Title': pubTitle,
'ISSN': issn,
'DOI': doi,
'Url': url,
'Abstract Note': abstract,
'Date': date,
'Issue': issue,
'Volume': volume,
'Library Catalog': libCatalog,
'Manual Tags': manualTags,
'Automatic Tags': autoTags
}
print(dataDict)
return jsonify(dataDict)
# DELETE record
if request.method == 'DELETE':
db['records'].delete_one({'_id': ObjectId(id)})
print('\n # Deletion successful # \n')
return jsonify({'status': 'Record (id: ' + id + ') is deleted!'})
# UPDATE record by id
if request.method == 'PUT':
body = request.json
itemType = body['Item Type']
pubYear = body['Publication Year']
author = body['Author']
title = body['Title']
pubTitle = body['Publication Title']
issn = body['ISSN']
doi = body['DOI']
url = body['Url']
abstract = body['Abstract Note']
date = body['Date']
issue = body['Issue']
volume = body['Volume']
libCatalog = body['Library Catalog']
manualTags = body['Manual Tags']
autoTags = body['Automatic Tags']
db['records'].update_one(
{'_id': ObjectId(id)},
{
"$set": {
'Item Type': itemType,
'Publication Year': pubYear,
'Author': author,
'Title': title,
'Publication Title': pubTitle,
'ISSN': issn,
'DOI': doi,
'Url': url,
'Abstract Note': abstract,
'Date': date,
'Issue': issue,
'Volume': volume,
'Library Catalog': libCatalog,
'Manual Tags': manualTags,
'Automatic Tags': autoTags
}
}
)
return jsonify({'status': 'Record updated successfully'})
if __name__ == '__main__':
app.debug = True
app.run()