-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.js
More file actions
123 lines (104 loc) · 2.41 KB
/
app.js
File metadata and controls
123 lines (104 loc) · 2.41 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
const express = require("express");
const body = require("body-parser");
const mongo = require("mongoose");
const ejs = require("ejs");
const app = express();
app.set('view engine','ejs');
app.use(body.urlencoded({extended:true}));
app.use(express.static("public"));
mongo.connect("mongodb://localhost:27017/wikiDB",{useNewUrlParser:true});
const articleschema = {
title:String,
content: String
}
const article = mongo.model("article",articleschema);
app.route("/articles")
//GET ALL ARTICLES FROM wikiDB
.get(function(req,res){
article.find(function(err,result){
if(!err){
console.log(result);
}
else{
console.log(err);
}
});
})
//CREATE ONE ARTICLE IN wikiDB
.post(function(req,res){
const newarticle = new article{
title: req.body.title, //TAKING THROUGH POSTMAN SOFTWARE
content: req.body.content // AND NOT THROUGH FRONTEND
}
newarticle.save(function(err){
if(!err){
console.log("Success");
}else{
console.log(err);
}
});
})
//DELETE ALL ARTICLES IN wikiDB
.delete(function(req,res){
article.deleteMany(function(err){
if(!err){
console.log("SUCCESS IN DELETING ALL ARTICELS");
}
else{
console.log(err);
}
});
});
//FOR MORE SPECIFIC THAN JUST articles
app.route("/articles/:articleTitle")
.get(function(req,res){
Title = req.params.articleTitle
article.findOne({title: Title},function(err,foundArticles){
if(!err){
res.send(foundArticles);
console.log(foundarticle);
}
else{
res.send("NO ARTICLES FOUND OF THAT NAME");
console.log(err);
}
});
})
//PUT REQUEST UPDATES WHOLE OF IT AND IF WE DO NOT PROVIDE ARTICLE OR NAY ONE FIELD IT WILL DELETE
//THAT FIELD. TO OVERCOME WE USE PATCH
.put(function(req,res){
article.update(
{title:req.params.articleTitle},
{title: req.body.title, content: req.body.content},
{overwrite: true},
function(err){
if(!err){
res.send("SUCCESFULLY UPDATED");
}
}
);
})
.patch(function(req,res){
article.update(
{title: req.params.articleTitle},
{$set: req.body},
function(err){
if(!err){
res.send("Success");
}
}
)
})
.delete(function(req,res){
article.deleteOne(
{title: req.params.articleTitle},
function(err){
if(!err){
res.send("Success Deleted");
}
}
);
});
app.listen(4000,function(){
console.log("Success");
});