-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmongohandler.py
123 lines (83 loc) · 3.71 KB
/
mongohandler.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
import pymongo
from bson.objectid import ObjectId
class mongoDatabase:
def __init__(self, dbname, host = "localhost", port = 27017):
self.client = pymongo.MongoClient(f"mongodb://{host}:{port}/")
dblist = self.client.list_database_names()
if dbname in dblist:
print("Connecting to existing database")
self.db = self.client[dbname]
self.categories = self.db["categories"]
self.locations = self.db["locations"]
self.items = self.db["items"]
self.suppliers = self.db["suppliers"]
else:
print("Creating new database")
if self.createNewStructure(dbname):
print("New Database Created")
else:
print("Issue in creating database")
def createNewStructure(self, dbname):
self.db = self.client[dbname]
sample_categories = [{"category":"Purchase"},
{"category":"Fabrication"}]
sample_locations = [{"location":"Location 1"},
{"location":"Locaiton 2"},
{"location":"Locaiton 3"}]
sample_supplier = [{"supplier":"Grand Brass Lamp Parts LLC."},
{"supplier":"TUNGSTENE"}]
sample_item = {"partNumber" : "P-32-001",
"primaryImage" : "P-32-001.jpg",
"category" : "Purchase",
"supplier" : "TUNGSTENE",
"model" : "AB472",
"priceCAD" : 0.00,
"priceUSD" : 2.00,
"description" :
"1/8ips Female Threaded 90 Degree Straight Armback - Unfinished Brass"}
self.categories = self.db["categories"]
self.locations = self.db["locations"]
self.suppliers = self.db["suppliers"]
self.items = self.db["items"]
cat = self.categories.insert_many(sample_categories)
loc = self.locations.insert_many(sample_locations)
sup = self.suppliers.insert_many(sample_supplier)
item = self.items.insert_one(sample_item)
self.insert_log(cat)
self.insert_log(loc)
self.insert_log(sup)
return self.db
def insert_log(self,inserted):
print("[!]", len(inserted.inserted_ids), "entries inserted")
def getByPartId(self, pid):
query = {"_id" : pid}
return self.items.find_one(query)
def getByPart(self, part):
query = {"partNumber" : part}
return self.items.find_one(query)
def getAllParts(self):
return self.items.distinct("partNumber")
def getAllCategories(self):
return self.categories.distinct("category")
def getAllLocations(self):
return self.locations.distinct("location")
def getAllSuppliers(self):
return self.suppliers.distinct("supplier")
def updatePartbyId(self, doc, data):
toupdate = {'_id' : ObjectId(doc)}
newdata = {'$set': data}
res = self.items.update_one(toupdate, newdata)
return res
def insertNewItem(self, data):
newdata = {'$set': data}
res = self.items.insert_one(data)
return res
def getPartList(self, search):
query = {'partNumber': {'$regex': search}}
projection = {'partNumber':1}
cursor = self.items.find(query, projection).sort('partNumber')
return list(cursor)
if __name__ == "__main__":
db = mongoDatabase("inventory")
db.getByPart("P-32-001")
db.getPartList('P')