-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflashCards.js
83 lines (76 loc) · 2.56 KB
/
flashCards.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
let FlashCardsSchema = require ('../models/FlashCards.js').model
const LanguageTypeSchema = require ('../models/LanguageType').model
const DifficultTypeSchema = require('../models/DifficultType').model
const flashCards_post_createOne = async (req,res) =>{
try {
const {language,difficult,type,question,answear} = req.body
const findLanguageType = await LanguageTypeSchema.findOne({language: language})
const findDifficultType = await DifficultTypeSchema.findOne({difficult:difficult})
const flashCard = new FlashCardsSchema({
language: findLanguageType._id,
difficult:findDifficultType._id,
type,
question,
answear,
})
flashCard
.save()
.then(flashCard => {
res.statusCode = 200
res.json({ succes: true, message: "Utworzono fiszkę", flashCard })
})
} catch (error) {
console.error(error)
res.statusCode = 500
res.json({ error: error.toString() })
}
}
const flashCards_post_languageType = (req,res) =>{
try {
const {language} = req.body
const newLanguageType = new LanguageTypeSchema({
language,
})
newLanguageType
.save()
.then( () => {
res.statusCode = 200
res.json({ succes: true, message: "Created new langugeType" })
})
} catch (error) {
console.error(error)
res.statusCode = 500
res.json({ error: error.toString() })
}
}
const flashCards_post_difficultType = (req,res) =>{
try {
const {difficult} = req.body
const newDifficultType = new DifficultTypeSchema({
difficult,
})
newDifficultType
.save()
.then( () => {
res.statusCode = 200
res.json({ succes: true, message: "Created new difficultType" })
})
} catch (error) {
console.error(error)
res.statusCode = 500
res.json({ error: error.toString() })
}
}
const flashCards_get_byType = async (req,res) => {
let selectedLanguage = req.query.type
const findLanguageType = await LanguageTypeSchema.findOne({language: selectedLanguage})
try {
const flashCards = await FlashCardsSchema.find({"language":findLanguageType._id})
res.json({ flashCards })
}
catch (error) {
res.statusCode = 500
res.json({ error: error.toString() })
}
}
module.exports = {flashCards_get_byType,flashCards_post_createOne,flashCards_post_languageType,flashCards_post_difficultType}