Skip to content

Commit 018996d

Browse files
Merge pull request #8 from TECHOUS/dev
Fixed the searchUser API
2 parents 2a82db1 + d2ee0f7 commit 018996d

14 files changed

+686
-361
lines changed

.github/job.js

+4-7
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,7 @@ const getUserNameFromCodeBaseFile = (fileName) => {
2929

3030
// function to connect to mongodb using mongoose
3131
const connectMongoDB = () => {
32-
mongoose.connect(process.env.MONGODB_URI, {
33-
useNewUrlParser: true,
34-
useUnifiedTopology: true,
35-
})
32+
mongoose.connect(process.env.MONGODB_URI)
3633
const db = mongoose.connection
3734
db.on('error', console.error.bind(console, 'Connection error:'))
3835
return db
@@ -58,13 +55,13 @@ const insertDataInMongo = (records) => {
5855
const callGithubCodeBaseAPI = () => {
5956
axios
6057
.get(
61-
`https://api.github.com/repos/TECHOUS/${process.env.CODE_SRC}/contents/CodeBase`
58+
`https://api.github.com/repos/TECHOUS/${process.env.CODE_SRC}/contents/CodeBase`,
6259
)
6360
.then((res) => {
6461
// get all the names from the files
6562
const filePromises = res.data.map((codeObject) => {
6663
return getUserNameFromCodeBaseFile(
67-
`${process.env.CODE_SRC}/${codeObject.path}`
64+
`${process.env.CODE_SRC}/${codeObject.path}`,
6865
)
6966
})
7067

@@ -77,7 +74,7 @@ const callGithubCodeBaseAPI = () => {
7774
fileObject.value.fileName,
7875
fileObject.value.username,
7976
]
80-
})
77+
}),
8178
)
8279

8380
const dataToInsert = res.data.map((data) => {

.github/workflows/Vercel Deployment.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
test:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
14-
- uses: actions/setup-node@v2
13+
- uses: actions/checkout@v4
14+
- uses: actions/setup-node@v4
1515
with:
16-
node-version: '18.x'
16+
node-version: '20.x'
1717
- run: yarn install
1818
- run: yarn run test
1919
env:
@@ -25,8 +25,8 @@ jobs:
2525
needs: test
2626
runs-on: ubuntu-latest
2727
steps:
28-
- uses: actions/checkout@v2
29-
- uses: amondnet/vercel-action@v20
28+
- uses: actions/checkout@v4
29+
- uses: amondnet/vercel-action@v25
3030
with:
3131
vercel-token: ${{ secrets.VERCEL_TOKEN }} # Required
3232
vercel-args: '--prod' #Optional

.github/workflows/Vercel Dev Deployment.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
test:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
14-
- uses: actions/setup-node@v2
13+
- uses: actions/checkout@v4
14+
- uses: actions/setup-node@v4
1515
with:
16-
node-version: '18.x'
16+
node-version: '20.x'
1717
- run: yarn install
1818
- run: yarn run test
1919
env:
@@ -25,8 +25,8 @@ jobs:
2525
needs: test
2626
runs-on: ubuntu-latest
2727
steps:
28-
- uses: actions/checkout@v2
29-
- uses: amondnet/vercel-action@v20
28+
- uses: actions/checkout@v4
29+
- uses: amondnet/vercel-action@v25
3030
with:
3131
vercel-token: ${{ secrets.VERCEL_TOKEN }} # Required
3232
vercel-org-id: ${{ secrets.ORG_ID}} #Required

.github/workflows/codebase-engine.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ jobs:
66
init-setup:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v2
10-
- uses: actions/setup-node@v2
9+
- uses: actions/checkout@v4
10+
- uses: actions/setup-node@v4
1111
with:
12-
node-version: '18.x'
12+
node-version: '20.x'
1313
- run: yarn install
1414
- run: bash .github/job.sh
1515
env:

api/public/assets/main.bundle.js

+82-29
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/public/index.html

+10-10
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
<meta name="description" content="Engine to handle the rating mechanisms for the clean code">
66
<meta name="viewport" content="width=device-width, initial-scale=1.0">
77
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
8-
<link href="assets/bootstrap.min.css?v=1697340676180" rel="stylesheet" media="screen">
9-
<link href="assets/prism.css?v=1697340676180" rel="stylesheet" />
10-
<link href="assets/prism-toolbar.css?v=1697340676180" rel="stylesheet" />
11-
<link href="assets/prism-diff-highlight.css?v=1697340676180" rel="stylesheet" />
12-
<link href="assets/main.css?v=1697340676180" rel="stylesheet" media="screen, print">
13-
<link href="assets/favicon.ico?v=1697340676180" rel="icon" type="image/x-icon">
14-
<link href="assets/apple-touch-icon.png?v=1697340676180" rel="apple-touch-icon" sizes="180x180">
15-
<link href="assets/favicon-32x32.png?v=1697340676180" rel="icon" type="image/png" sizes="32x32">
16-
<link href="assets/favicon-16x16.png?v=1697340676180" rel="icon" type="image/png" sizes="16x16">
8+
<link href="assets/bootstrap.min.css?v=1727851422673" rel="stylesheet" media="screen">
9+
<link href="assets/prism.css?v=1727851422673" rel="stylesheet" />
10+
<link href="assets/prism-toolbar.css?v=1727851422673" rel="stylesheet" />
11+
<link href="assets/prism-diff-highlight.css?v=1727851422673" rel="stylesheet" />
12+
<link href="assets/main.css?v=1727851422673" rel="stylesheet" media="screen, print">
13+
<link href="assets/favicon.ico?v=1727851422673" rel="icon" type="image/x-icon">
14+
<link href="assets/apple-touch-icon.png?v=1727851422673" rel="apple-touch-icon" sizes="180x180">
15+
<link href="assets/favicon-32x32.png?v=1727851422673" rel="icon" type="image/png" sizes="32x32">
16+
<link href="assets/favicon-16x16.png?v=1727851422673" rel="icon" type="image/png" sizes="16x16">
1717
</head>
1818

1919
<body class="container-fluid">
@@ -1042,6 +1042,6 @@ <h2>{{__ "Request Body"}}</h2>
10421042
</div>
10431043
</div>
10441044

1045-
<script src="assets/main.bundle.js?v=1697340676180"></script>
1045+
<script src="assets/main.bundle.js?v=1727851422673"></script>
10461046
</body>
10471047
</html>

apidoc.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "Code Rating Engine",
3-
"version": "1.0.0",
3+
"version": "1.20.0",
44
"description": "Engine to handle the rating mechanisms for the clean code",
55
"title": "Code Rating Engine",
66
"url": "https://coderatingengine-techous.vercel.app"
7-
}
7+
}

package.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "coderatingengine",
3-
"version": "1.0.0",
3+
"version": "1.20.0",
44
"engines": {
5-
"node": "18.x",
5+
"node": "20.x",
66
"yarn": "1.x"
77
},
88
"description": "Engine to handle the rating mechanisms for the clean code",
@@ -17,22 +17,22 @@
1717
"author": "Gaurav Walia",
1818
"license": "ISC",
1919
"dependencies": {
20-
"axios": "^1.5.1",
20+
"axios": "^1.7.7",
2121
"cors": "^2.8.5",
22-
"express": "^4.18.2",
23-
"express-rate-limit": "^7.1.1",
24-
"mongoose": "^7.6.2",
25-
"uuid": "^9.0.1"
22+
"express": "^4.21.0",
23+
"express-rate-limit": "^7.4.0",
24+
"mongoose": "^8.7.0",
25+
"uuid": "^10.0.0"
2626
},
2727
"devDependencies": {
2828
"apidoc": "^1.2.0",
2929
"dotenv": "^16.3.1",
3030
"husky": "^8.0.3",
3131
"lint-staged": "^14.0.1",
32-
"mocha": "^10.2.0",
33-
"nodemon": "^3.0.1",
32+
"mocha": "^10.7.3",
33+
"nodemon": "^3.1.7",
3434
"prettier": "^3.0.3",
35-
"supertest": "^6.3.3"
35+
"supertest": "^7.0.0"
3636
},
3737
"lint-staged": {
3838
"*.js": "prettier --write"

routes/api/v1/API.js

+12-7
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ const {
1919
setSearchUserInCache,
2020
} = require('../../../src/cache')
2121
// import middlewares
22-
const {authenticateAPI} = require('../../../src/auth')
22+
const {authenticatePutAPI, authenticateGetAPI} = require('../../../src/auth')
2323
const {updateValidator, searchValidator} = require('../../../src/validator')
2424

2525
/**
2626
* @api {GET} /api/v1/randomCodes GET: get the random Code files
2727
* @apiName randomCodes
2828
* @apiDescription api to get the Random Code files present in code base
29-
* @apiVersion 1.0.0
29+
* @apiVersion 1.20.0
3030
*
3131
* @apiGroup randomCodes
3232
* @apiSuccess (200 Success Response) {Number} status 200 (Status Code)
@@ -155,7 +155,7 @@ router.get('/randomCodes', async (req, res, next) => {
155155
* @api {PUT} /api/v1/rateCode PUT: rate the code file
156156
* @apiName rateCode
157157
* @apiDescription api to rate the Random Code files present in code base
158-
* @apiVersion 1.0.0
158+
* @apiVersion 1.20.0
159159
* @apiBody {Number} winner Marked winner 1 or 2
160160
* @apiBody {String} codeId1 code Id for code 1
161161
* @apiBody {String} codeId2 code Id for code 2
@@ -208,7 +208,7 @@ router.get('/randomCodes', async (req, res, next) => {
208208
**/
209209
router.put(
210210
'/rateCode',
211-
authenticateAPI,
211+
authenticatePutAPI,
212212
updateValidator,
213213
async (req, res, next) => {
214214
try {
@@ -249,8 +249,13 @@ router.put(
249249
* @api {GET} /api/v1/searchUser GET: searching the user name
250250
* @apiName searchUser
251251
* @apiDescription search and return the code rating for the specific user
252-
* @apiVersion 1.0.0
253-
* @apiBody {String} codeRatingEngineToken Access token received from randomCodes request
252+
* @apiVersion 1.20.0
253+
* @apiHeader {String} Authorization Access token received from randomCodes request
254+
* @apiHeaderExample {json} Request Header example
255+
* {
256+
* "Authorization": "Bearer <ACCESS_TOKEN>"
257+
* }
258+
*
254259
* @apiQuery {String} username Username to search
255260
* @apiQuery {Boolean} sendContent Whether content is needed from the API or not
256261
*
@@ -300,7 +305,7 @@ router.put(
300305
**/
301306
router.get(
302307
'/searchUser',
303-
authenticateAPI,
308+
authenticateGetAPI,
304309
searchValidator,
305310
async (req, res, next) => {
306311
try {

routes/api/v1/_apidoc.js

+138
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,138 @@
1+
/**
2+
* @api {GET} /api/v1/randomCodes GET: get the random Code files
3+
* @apiName randomCodes
4+
* @apiDescription api to get the Random Code files present in code base
5+
* @apiVersion 1.0.0
6+
*
7+
* @apiGroup randomCodes
8+
* @apiSuccess (200 Success Response) {Number} status 200 (Status Code)
9+
* @apiSuccess (200 Success Response) {Object} codeObject1 First CodeObject
10+
* @apiSuccess (200 Success Response) {Object} codeObject2 Second CodeObject
11+
* @apiSuccess (200 Success Response) {String} accessToken Access Token for the secured APIs
12+
* @apiSuccess (CodeObject) {String} codeId unique code Id
13+
* @apiSuccess (CodeObject) {Number} codeRating current code rating of the file
14+
* @apiSuccess (CodeObject) {String} codeUrl file URL of the code file
15+
* @apiSuccess (CodeObject) {String} codeName file name of the code file
16+
* @apiSuccess (CodeObject) {String} content content of the code file
17+
*
18+
* @apiSuccessExample {json} Success Response Example
19+
*
20+
* {
21+
* "status": 200,
22+
* "codeObject1": {
23+
* "codeId": "9f6ca40579efdee44097ccf62c93fa192b6efb2b",
24+
* "codeRating": 45,
25+
* "codeUrl": "https://api.github.com/repos/<path>/CodeBase/UnixTimeStampToHumanReadableFormat.cpp",
26+
* "codeName": "UnixTimeStampToHumanReadableFormat.cpp",
27+
* "content": "#include<bits/stdc++.h>\n\nusing namespace std;\n......."
28+
* },
29+
* "codeObject2": {
30+
* "codeId": "55dfc162f8163243c9c7e155e9a9a26b9528be73",
31+
* "codeRating": 2361,
32+
* "codeUrl": "https://api.github.com/repos/<path>/CodeBase/SelectionSort.java",
33+
* "codeName": "SelectionSort.java",
34+
* "content": "public class SelectionSort{public static void main(String[] args){......."
35+
* },
36+
* "accessToken": "96d3371e-9da8-4261-b8a6-ea9b8e68f770"
37+
* }
38+
*
39+
* @apiError (4xx Error Response) {Number} 429 Too many requests, please try again later!!!
40+
* @apiError (4xx Error Response) {Number} 405 Method not Allowed
41+
* @apiError (4xx Error Response) {Number} 404 No results found
42+
* @apiError (4xx Error Response) {Number} 400 Bad Request
43+
* @apiError (500 Error Response) {Number} 500 Internal Server Error
44+
**/
45+
/**
46+
* @api {PUT} /api/v1/rateCode PUT: rate the code file
47+
* @apiName rateCode
48+
* @apiDescription api to rate the Random Code files present in code base
49+
* @apiVersion 1.0.0
50+
* @apiBody {Number} winner Marked winner 1 or 2
51+
* @apiBody {String} codeId1 code Id for code 1
52+
* @apiBody {String} codeId2 code Id for code 2
53+
* @apiBody {String} codeRatingEngineToken Access token received from randomCodes request
54+
*
55+
* @apiGroup rateCode
56+
* @apiSuccess (200 Success Response) {Object} update1 First UpdatedCodeObject
57+
* @apiSuccess (200 Success Response) {Object} update2 Second UpdatedCodeObject
58+
* @apiSuccess (200 Success Response) {Number} status 200 (Status Code)
59+
* @apiSuccess (200 Success Response) {String} message Code Ratings are updated
60+
* @apiSuccess (UpdatedCodeObject) {String} codeId unique code Id
61+
* @apiSuccess (UpdatedCodeObject) {Number} codeRating updated code rating of the file
62+
* @apiSuccess (UpdatedCodeObject) {String} codeUrl file URL of the code file
63+
* @apiSuccess (UpdatedCodeObject) {String} codeName file name of the code file
64+
* @apiSuccess (UpdatedCodeObject) {String} userName user name of the contributed user
65+
*
66+
* @apiSuccessExample {json} Success Response Example
67+
*
68+
* {
69+
* "update1": {
70+
* "codeId": "55dfc162f8163243c9c7e155e9a9a26b9528be73",
71+
* "codeRating": 2369,
72+
* "codeUrl": "https://api.github.com/repos/..../CodeBase/SelectionSort.java",
73+
* "codeName": "SelectionSort.java",
74+
* "userName": "GauravWalia19",
75+
* },
76+
* "update2": {
77+
* "codeId": "489e8fe91b2db73cc0f8f78b831fabb1b927d2b5",
78+
* "codeRating": 2235,
79+
* "codeUrl": "https://api.github.com/repos/..../CodeBase/LinearSearch.c",
80+
* "codeName": "LinearSearch.c",
81+
* "userName": "GauravWalia19",
82+
* },
83+
* "status": 200,
84+
* "message": "Code Ratings are updated"
85+
* }
86+
*
87+
* @apiError (4xx Error Response) {Number} 429 Too many requests, please try again later!!!
88+
* @apiError (4xx Error Response) {Number} 405 Method not Allowed
89+
* @apiError (4xx Error Response) {Number} 401 Invalid Token !! Please send the valid token
90+
* @apiError (4xx Error Response) {Number} 400 Bad Request
91+
* @apiError (500 Error Response) {Number} 500 Internal Server Error
92+
**/
93+
/**
94+
* @api {GET} /api/v1/searchUser GET: searching the user name
95+
* @apiName searchUser
96+
* @apiDescription search and return the code rating for the specific user
97+
* @apiVersion 1.0.0
98+
* @apiBody {String} codeRatingEngineToken Access token received from randomCodes request
99+
* @apiQuery {String} username Username to search
100+
* @apiQuery {Boolean} sendContent Whether content is needed from the API or not
101+
*
102+
* @apiGroup searchUser
103+
* @apiSuccess (200 Success Response) {Number} status 200 (Status Code)
104+
* @apiSuccess (200 Success Response) {Array} userCodeBaseFiles CodeBaseFile
105+
*
106+
* @apiSuccess (CodeBaseFile) {String} _id unique mongo Id
107+
* @apiSuccess (CodeBaseFile) {String} codeId unique code Id
108+
* @apiSuccess (CodeBaseFile) {Number} codeRating current code rating of the file
109+
* @apiSuccess (CodeBaseFile) {String} codeUrl file URL of the code file
110+
* @apiSuccess (CodeBaseFile) {String} codeName file name of the code file
111+
* @apiSuccess (CodeBaseFile) {String} userName user name of the contributed user
112+
* @apiSuccess (CodeBaseFile) {String} content content of the code file
113+
*
114+
* @apiSuccessExample {json} Success Response Example
115+
*
116+
* {
117+
* "status": 200,
118+
* "userCodeBaseFiles": [
119+
* {
120+
* "_id": "60d877a541d44f4a2350d1b1",
121+
* "codeId": "55dfc162f8163243c9c7e155e9a9a26b9528be73",
122+
* "codeRating": 2384,
123+
* "codeUrl": "https://api.github.com/repos/..../CodeBase/SelectionSort.java?ref=master",
124+
* "codeName": "SelectionSort.java",
125+
* "userName": "GauravWalia19",
126+
* "__v": 0,
127+
* "content": "Scanner in = new Scanner(System.in)"
128+
* }
129+
* ]
130+
* }
131+
*
132+
* @apiError (4xx Error Response) {Number} 429 Too many requests, please try again later!!!
133+
* @apiError (4xx Error Response) {Number} 405 Method not Allowed
134+
* @apiError (4xx Error Response) {Number} 404 No Code Base file found for the respective user
135+
* @apiError (4xx Error Response) {Number} 401 Invalid Token !! Please send the valid token
136+
* @apiError (4xx Error Response) {Number} 400 Bad Request
137+
* @apiError (500 Error Response) {Number} 500 Internal Server Error
138+
**/

0 commit comments

Comments
 (0)