欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

创建用户-api

程序员文章站 2022-06-23 12:16:48
var bodyParser = require('body-parser'); /*使用局部解析*/var bcrypt = require('bcryptjs');router.post('/addUsers', bodyParser.json(), function (req, res, next) {logger.info('API:"post /api/users/addUsers" accessed.');var password = req.body.password ? req...
var bodyParser = require('body-parser'); /*使用局部解析*/
var bcrypt = require('bcryptjs');

router.post('/addUsers', bodyParser.json(), function (req, res, next) {
	logger.info('API:"post /api/users/addUsers" accessed.');
	var password = req.body.password ? req.body.password : '';
	var username = req.body.username ? req.body.username : '';
	if (!username) {
        return res.status(200).json({ code: 1, msg: "The username is empty", data: null });
        }
    //检查密码规范
    validate.checkPassword(data, password, function (err, rows) {
    	if (err) {
    		logger.error("Error checking password!error: ", err);
    		return res.status(200).json({ code: 1, msg: "Error checking password! error: " + err, data: null });
    	} else {
    		//检查用户名
    		validate.checkUserName(username, function (err, rows) {
    			if (err) {
		    		logger.error("Error checking password!error: ", err);
		    		return res.status(200).json({ code: 1, msg: "Error checking password! error: " + err, data: null });
		    	} else {
		    		//密码加密	
	    			var salt = bcrypt.genSaltSync(10);
	                var enc_pwd = bcrypt.hashSync(password, salt);
					//给用户授权(将用户添加进角色中)
					....
				 	//开启密码计时(密码失效)
				 	...
				 	//记录审计log
				 	...
	                }
	          }
	    
                

本文地址:https://blog.csdn.net/qq_38504352/article/details/107383382