-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtest.js
199 lines (176 loc) · 5.3 KB
/
test.js
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
// var users = [
// {
// "email":"[email protected]",
// "password":"12345678"
// },
// {
// "email":"[email protected]",
// "password":"abcdefgh"
// }
// ]
// // const user = {
// // "email":"[email protected]",
// // "password":"abcdefgh"
// // }
// export function SearchUser(email, password) {
// let user = {
// "email" : `${email}`,
// "password" : `${password}`
// }
// let userfound = false;
// for (let i = 0; i < users.length; i++) {
// let emailmatched = users[i].email === user.email
// let passwordmatched = users[i].password === user.password
// // console.log(i)
// if (emailmatched && passwordmatched) {
// console.log('User found!!!')
// userfound = true;
// break;
// }
// else if(!emailmatched && !passwordmatched){
// // console.log("Searching")
// break
// }
// else if (emailmatched && !passwordmatched){
// console.log('Password incorrect')
// }
// }
// if (userfound) {
// console.log("login sucessful")
// }
// // else {
// // console.log("Password or email incorrect!")
// // }
// }
// SearchUser("[email protected]","12345678")
// console.log(users[0].password === user.password)
// const fs = require('fs')
// let usersdata
// let push = []
// const newObj = {
// "name":"Chanchal",
// "email":"[email protected]",
// "password":"chanchalchapassword"
// }
// const newObj2 = {
// "name":"Khudsi💺",
// "email":"[email protected]",
// "password":"khudsichapassword"
// }
// const newObj3 = {
// "name":"Prathmesh",
// "email":"[email protected]",
// "password":"pratham@password"
// }
// const newObj4 = {
// "name":"Someoone",
// "email":"[email protected]",
// "password":"guys@password"
// }
// ! READING THE JSON DATA FILE WITH FS
// ? ReadFile
// ! ERR - parsing and assigning takes time so push array is left empty.
// fs.readFile("./products/data/users.json", 'utf-8', (err, jsonString) => {
// if (err) {
// console.error(err.message)
// } else {
// try {
// usersdata = JSON.parse(jsonString);
// // console.log(usersdata)
// // usersdata.forEach(e => {
// // console.log(e)
// // })
// const mergedobj = Object.assign(usersdata[0], newObj)
// push = usersdata
// console.log("Push variable - " , push)
// } catch (error) {
// console.error(error.message)
// }
// }
// })
// ? ReadFileSync
// function
// try {
// const jsonstring = fs.readFileSync('./products/data/testdata.json', 'utf-8');
// const customer = JSON.parse(jsonstring);
// // Object.assign(customer[0], newObj)
// customer.push(newObj)
// console.log(customer)
// push = customer
// } catch (err) {
// console.error(err)
// }
// // ! WRITING THE JSON DATA TO FILE WITH FS
// fs.writeFile("./products/data/testdata.json", JSON.stringify(push, null, 2), err => {
// if (err) {
// console.log(err.message)
// } else {
// console.log('File successfully written!')
// }
// })
// const placeholder= {
// "username":"bakati",
// "email":"[email protected]",
// "phonenumber":"7345968514",
// "password":"bhaktichapassword"
// }
// const fs = require('fs')
// let jsonusers
// const input = {
// "username":"bakati",
// "email": "[email protected]",
// "phonenumber":"7345968514",
// "password":"bhaktichapassword"
// }
// try {
// const users = fs.readFileSync('./products/data/testdata.json', 'utf-8');
// jsonusers = JSON.parse(users);
// } catch (err) {
// console.error(err)
// }
// function checkUser(inputuser) {
// let jsondata
// let check = 0
// try {
// const data = fs.readFileSync('./products/data/users.json', 'utf-8');
// jsondata = JSON.parse(data);
// jsondata.forEach(user => {
// if(inputuser.email === user.email) {
// check = 1
// }
// });
// } catch (err) {
// console.error(err)
// }
// if (check ==0) {
// return 0
// }
// if(check == 1) {
// return 1
// }
// }
// function addUser(user) {
// let push = []
// if (user.username !=="" & user.email !=="" & user.phonenumber !=="" & user.password !=="") {
// try {
// try {
// const data = fs.readFileSync('./products/data/users.json', 'utf-8');
// const jsondata = JSON.parse(data);
// jsondata.push(user)
// push = jsondata
// } catch (err) {
// console.error(err)
// }
// fs.writeFile("./products/data/users.json", JSON.stringify(push, null, 4), err => {
// if (err) {
// console.log(err.message)
// } else {
// console.log('File successfully written!')
// }
// })
// console.log("User added successfully")
// } catch (err) {
// console.error(err.message)
// }
// }
// }