Last active
July 8, 2021 18:51
Features of clean code architecture-node app
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function adaptRequest(req = {}) { | |
return Object.freeze({ | |
path: req.path, | |
// adaptedRequest key : express' request key | |
method: req.method, | |
pathParams: req.params, | |
queryParams: req.query, | |
body: req.body, | |
url: req.originalUrl, | |
user: req.user, | |
session: req.session, | |
}); | |
} | |
module.exports = adaptRequest; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const express = require('express'); | |
const router = express.Router(); | |
const propertyController = require('../../controller/admin/property'); | |
const adaptRequest = require('../../helpers/adaptRequest'); | |
const sendResponse = require('../../helpers/sendResponse'); | |
const auth = require('../../middleware/auth'); | |
router.post('/admin/property/create', auth(…['createByAdminInAdminPlatform']), (req, res, next) => { | |
req = adaptRequest(req); | |
propertyController.addProperty({ | |
data: req.body, | |
loggedInUser: req.user | |
}) | |
.then((result) => { | |
sendResponse(res, result); | |
a | |
}) | |
.catch((e) => { | |
sendResponse(res, e); | |
}); | |
}); | |
// ... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function sendResponse(response, result){ | |
return response | |
.set(result.headers) | |
.status(result.statusCode) | |
.send(result.data); | |
}; | |
module.exports = sendResponse; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment