@@ -41,9 +41,8 @@ const postSoftware = async (req, res) => {
41
41
user . contributions . softwaresAdded = user . contributions . softwaresAdded . concat (
42
42
savedSoftware . _id ,
43
43
) ;
44
- user . contributions . softwaresContributed = user . contributions . softwaresContributed . concat (
45
- savedSoftware . _id ,
46
- ) ;
44
+ user . contributions . softwaresContributed =
45
+ user . contributions . softwaresContributed . concat ( savedSoftware . _id ) ;
47
46
48
47
await user . save ( ) ;
49
48
@@ -90,9 +89,8 @@ const patchSoftwareById = async (req, res) => {
90
89
const user = await User . findById ( userId ) ;
91
90
92
91
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 ) ;
96
94
await user . save ( ) ;
97
95
}
98
96
@@ -136,10 +134,36 @@ const deleteSoftwareById = async (req, res) => {
136
134
return res . status ( 204 ) . end ( ) ;
137
135
} ;
138
136
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
+
139
161
module . exports = {
140
162
getSoftware,
141
163
postSoftware,
142
164
patchSoftwareById,
143
165
getSoftwareById,
144
166
deleteSoftwareById,
167
+ getRecentAddedSoftware,
168
+ getRecentUpdatedSoftware,
145
169
} ;
0 commit comments