Skip to content

Commit e1aa8a0

Browse files
authoredAug 3, 2021
Merge pull request #217 from learnsoftwaredevelopment/add-new-recent-software-api-endpoints
Added `api/software/added/recent` and `api/software/updates/recent` API endpoints
2 parents 1e47f48 + 8be5d1b commit e1aa8a0

File tree

6 files changed

+42
-7
lines changed

6 files changed

+42
-7
lines changed
 

‎controllers/api/searchController.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ const searchSoftware = async (req, res) => {
1313
const queryResponse = await Software.find(query)
1414
.sort({ name: 'asc' })
1515
.skip(page * perPage)
16-
.limit(perPage);
16+
.limit(perPage)
17+
.populate('meta.addedByUser', { username: 1, name: 1 })
18+
.populate('meta.updatedByUser', { username: 1, name: 1 });
1719

1820
const totalQueryResultCount = await Software.find(query).countDocuments();
1921

‎controllers/api/softwareController.js

+30-6
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,8 @@ const postSoftware = async (req, res) => {
4141
user.contributions.softwaresAdded = user.contributions.softwaresAdded.concat(
4242
savedSoftware._id,
4343
);
44-
user.contributions.softwaresContributed = user.contributions.softwaresContributed.concat(
45-
savedSoftware._id,
46-
);
44+
user.contributions.softwaresContributed =
45+
user.contributions.softwaresContributed.concat(savedSoftware._id);
4746

4847
await user.save();
4948

@@ -90,9 +89,8 @@ const patchSoftwareById = async (req, res) => {
9089
const user = await User.findById(userId);
9190

9291
if (!user.contributions.softwaresContributed.includes(id)) {
93-
user.contributions.softwaresContributed = user.contributions.softwaresContributed.concat(
94-
updatedSoftware._id,
95-
);
92+
user.contributions.softwaresContributed =
93+
user.contributions.softwaresContributed.concat(updatedSoftware._id);
9694
await user.save();
9795
}
9896

@@ -136,10 +134,36 @@ const deleteSoftwareById = async (req, res) => {
136134
return res.status(204).end();
137135
};
138136

137+
const getRecentAddedSoftware = async (req, res) => {
138+
const count = parseInt(req.query.count, 10) || 5;
139+
140+
const response = await Software.find({})
141+
.sort({ createdAt: 'desc' })
142+
.limit(count)
143+
.populate('meta.addedByUser', { username: 1, name: 1 })
144+
.populate('meta.updatedByUser', { username: 1, name: 1 });
145+
146+
return res.status(200).json(response);
147+
};
148+
149+
const getRecentUpdatedSoftware = async (req, res) => {
150+
const count = parseInt(req.query.count, 10) || 5;
151+
152+
const response = await Software.find({})
153+
.sort({ updatedAt: 'desc' })
154+
.limit(count)
155+
.populate('meta.addedByUser', { username: 1, name: 1 })
156+
.populate('meta.updatedByUser', { username: 1, name: 1 });
157+
158+
return res.status(200).json(response);
159+
};
160+
139161
module.exports = {
140162
getSoftware,
141163
postSoftware,
142164
patchSoftwareById,
143165
getSoftwareById,
144166
deleteSoftwareById,
167+
getRecentAddedSoftware,
168+
getRecentUpdatedSoftware,
145169
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
GET http://localhost:3001/api/software/added/recent?count=10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
GET http://localhost:3001/api/software/updates/recent?count=10

‎routes/api/software.js

+7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ const softwareController = require('../../controllers/api/softwareController');
44

55
softwareRouter.get('/', softwareController.getSoftware);
66

7+
softwareRouter.get('/added/recent', softwareController.getRecentAddedSoftware);
8+
9+
softwareRouter.get(
10+
'/updates/recent',
11+
softwareController.getRecentUpdatedSoftware,
12+
);
13+
714
softwareRouter.post(
815
'/',
916
middleware.tokenValidation,

0 commit comments

Comments
 (0)