-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprocess.py
122 lines (113 loc) · 3.93 KB
/
process.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
import os
import json
import re
import firebase_admin
from firebase_admin import credentials
from firebase_admin import firestore
# Use a service account
cred = credentials.Certificate('privatekey.json')
firebase_admin.initialize_app(cred)
db = firestore.client()
if not os.path.exists("rqted"):
os.mkdir("rqted")
if not os.path.exists("hypo"):
os.mkdir("hypo")
if not os.path.exists("hypo/steps"):
os.mkdir("hypo/steps")
if not os.path.exists("brm"):
os.mkdir("brm")
if not os.path.exists("brm/steps"):
os.mkdir("brm/steps")
# constants
MAX_NUM_HYPO_NODES = 5
COLLECTION_ID = "STUDY3"
#rq title line
rqCsv = "RQMOD,Student User Name,selectedArea,selectedTopic,selectedVariable\n"
# hypo title line
hypoCsv = "HPMOD,Student User Name,firstPredict,secondPredict,finalPredict,"
for i in range(MAX_NUM_HYPO_NODES):
hypoCsv += "node_" + str(i+1) + ","
for i in range(MAX_NUM_HYPO_NODES):
hypoCsv += "arrowLabel_" + str(i+1) + ","
for i in range(MAX_NUM_HYPO_NODES):
hypoCsv += "direction_" + str(i+1) + ","
hypoCsv += "\n"
# filling in data
docs = db.collection(COLLECTION_ID).get()
for doc in docs:
docDict = doc.to_dict()
# rq
if "rqted" in docDict:
rqDict = json.loads(docDict["rqted"])
rqCsv += "RQMOD,"
rqCsv += doc.id + ","
rqCsv += str(rqDict["moduleState"]["selectedArea"]["index"]) + ","
rqCsv += str(rqDict["moduleState"]["selectedTopic"]["index"]) + ","
rqCsv += str(rqDict["moduleState"]["selectedVariable"]["index"]) + ","
rqCsv += "\n"
# hypo
if "hypo" in docDict:
hypoDict = json.loads(docDict["hypo"])
hypoCsv += "HPMOD,"
hypoCsv += doc.id + ","
hypoCsv += hypoDict["firstPrediction"] + ","
hypoCsv += hypoDict["secondPrediction"] + ","
nodes = hypoDict["nodes"]
arrowLabels = hypoDict["arrowLabels"]
directions = hypoDict["directions"]
hypoCsv += directions[-1] + ","
for i in range(MAX_NUM_HYPO_NODES):
if i >= len(nodes):
hypoCsv += "N/A,"
else:
hypoCsv += nodes[i] + ","
for i in range(MAX_NUM_HYPO_NODES):
if i >= len(arrowLabels):
hypoCsv += "N/A,"
else:
hypoCsv += arrowLabels[i] + ","
for i in range(MAX_NUM_HYPO_NODES):
if i >= len(directions):
hypoCsv += "N/A,"
else:
hypoCsv += directions[i] + ","
hypoCsv += "\n"
# For recording steps in steps folder
stepCsv = "action,object,index,info,date,time\n"
steps = hypoDict["steps"]
for step in steps:
stepCsv += step["action"] + ","
stepCsv += step["object"] + ","
stepCsv += str(step["index"]) + ","
stepCsv += step["info"] + ","
stepCsv += step["timestamp"] + ","
stepCsv += "\n"
stepFile = open("hypo/steps/" + doc.id + ".csv", "w")
stepFile.write(stepCsv)
stepFile.close()
# brm
if "brm" in docDict:
brmDict = json.loads(docDict["brm"])
stepCsv = "type,title,selected,isCorrect\n"
steps = brmDict
for step in steps:
stepCsv += step["type"] + ","
if step["type"] == "LINK":
stepCsv += step["link"] + ","
stepCsv += "\n"
elif step["type"] == "QUIZ":
stepCsv += '"' + re.sub("\s+", " ", step["title"].replace('"', "'")) + '"' + ","
stepCsv += '"' + step["selected"].replace('"', '""') + '"' + ","
stepCsv += str(step["isCorrect"]) + ","
stepCsv += "\n"
else:
print("error: type doesn't exist")
stepFile = open("brm/steps/" + doc.id + ".csv", "w")
stepFile.write(stepCsv)
stepFile.close()
f = open("rqted/rq.csv", "w")
f.write(rqCsv)
f.close()
f = open("hypo/hypo.csv", "w")
f.write(hypoCsv)
f.close()