박권수

Merge branch 'server' into web

......@@ -337,7 +337,7 @@ exports.setMedicine = async(ctx) => {
// };
//로그인한 유저의 약병 리스트 가져오기
exports.getBottleList = async(ctx) => {
exports.getHubsBottleList = async(ctx) => {
const token = ctx.req.headers.authorization;
if(!token || !token.length) {
ctx.status = 401;
......@@ -374,3 +374,31 @@ exports.getBottleList = async(ctx) => {
ctx.body = bottleList;
};
//현재 로그인한 유저의 모든 약병을 가져옴
exports.getAllBottleList = async ctx => {
const token = ctx.req.headers.authorization;
if(!token || !token.length) {
ctx.status = 401;
return;
}
const { userId } = jwt.verify(token, process.env.JWT_SECRET);
const user = await User.findByUserId(userId);
if(!user || !user.userTypeCd || user.useYn !== 'Y') {
ctx.status = 403;
return;
}
const hubList = await Hub.find({ userId });
const bottleList = [];
await Promise.all(hubList.map(async hub => {
const _bottleList = await Bottle.find({ hubId : hub.hubId });
bottleList.push(..._bottleList);
}));
ctx.status = 200;
ctx.body = bottleList;
};
\ No newline at end of file
......
......@@ -57,6 +57,15 @@ bottle.patch('/:bottleId', bottleCtrl.setMedicine);
* url : http://localhost:4000/api/bottle/hub/:hubId
* return : bottle List(json type List)
*/
bottle.get('/hub/:hubId', bottleCtrl.getBottleList)
bottle.get('/hub/:hubId', bottleCtrl.getHubsBottleList);
/**
* 현재 로그인한 유저의 모든 약병을 조회함
* request parameter : x
* url : http://localhost:4000/api/bottle/
* return : bottle List
*/
bottle.get('/', bottleCtrl.getAllBottleList);
module.exports = bottle;
\ No newline at end of file
......
......@@ -27,7 +27,7 @@ const BottleMedicineSchema = new Schema({
type : Date,
required : true,
default : Date.now,
}
},
});
BottleMedicineSchema.methods.setDoctorId = function(doctorId) {
......