diff --git a/Controller/Authentication.js b/Controller/Authentication.js index 34f5e29..17243df 100644 --- a/Controller/Authentication.js +++ b/Controller/Authentication.js @@ -10,6 +10,27 @@ const UserModel = require("../Model/User"); const sequelize = require("sequelize"); const { log } = require("winston"); + +// Get Connection +exports.getconnection = asyncHandler(async (req, res, next) => { + try { + db.authenticate() + .then(() => { + res + .send({ + success: "true", + description: "Connection established", + }) + .status(200); + }) + .catch((err) => { + return next(new ErrorResponse("Connection Falied", 500)); + }); + } catch (ex) { + return next(new ErrorResponse("Connection Falied", 500)); + } +}) + // Login User exports.login = asyncHandler(async (req, res, next) => { const { username, password, DB_CODE, APP_CODE = 'POS', CUST_CODE } = req.body @@ -220,7 +241,7 @@ exports.checkUsername = asyncHandler(async (req, res, next) => { } // // check user type - if (user.USER_TYPE == "S" || user.USER_TYPE == "C") { + if (user.USER_TYPE == "S" || user.USER_TYPE == "C" || user.USER_TYPE == "A") { var userPresets = await DataModel.findAll({ where: { DATA_CODE: app.PRESET, diff --git a/Model/StoreModel.js b/Model/StoreModel.js index 81d1dc3..34d227f 100644 --- a/Model/StoreModel.js +++ b/Model/StoreModel.js @@ -46,6 +46,9 @@ const StoreModel = db.define( }, MAP: { type: sequelize.STRING + }, + DB_LOC: { + type: sequelize.STRING } }, diff --git a/routes/authentication.js b/routes/authentication.js index d8e91b8..5b5ecd5 100644 --- a/routes/authentication.js +++ b/routes/authentication.js @@ -31,4 +31,6 @@ route.route("/register").post(upload.single("user_image"), controller.register,) route.route("/checkExistUsername").get(protectAtlogin, controller.checkExistingUsername); +route.route("/getconnction").get(protect, controller.getconnection); + module.exports = route; \ No newline at end of file diff --git a/routes/store.js b/routes/store.js index 7ad785e..65256e9 100644 --- a/routes/store.js +++ b/routes/store.js @@ -8,7 +8,7 @@ const moment = require('moment') var storage = multer.diskStorage({ destination: function (req, file, cb) { - if (file.fieldname == "store_image") cb(null, "upload/store/tmp_post"); + if (file.fieldname == "store_image") cb(null, "uploads/store/tmp_post"); }, filename: function (req, file, cb) { cb( diff --git a/uploads/store_image/4309.jpg b/uploads/store_image/4309.jpg index 3dd7442..9e68ee6 100644 Binary files a/uploads/store_image/4309.jpg and b/uploads/store_image/4309.jpg differ