-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into feature/#36
- Loading branch information
Showing
11 changed files
with
310 additions
and
18 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
const functions = require('firebase-functions'); | ||
const util = require('../../../lib/util'); | ||
const statusCode = require('../../../constants/statusCode'); | ||
const responseMessage = require('../../../constants/responseMessage'); | ||
const db = require('../../../db/db'); | ||
const { roomDB, recordDB } = require('../../../db'); | ||
|
||
/** | ||
* @습관방_시작 | ||
* @route POST /room/:roomId/start | ||
* @body | ||
* @error | ||
* 1. 유효하지 않은 roomId | ||
* 2. 권한이 없는 사용자로부터의 요청 | ||
* 3. 이미 시작된 방 | ||
*/ | ||
|
||
module.exports = async (req, res) => { | ||
const { roomId } = req.params; | ||
const user = req.user; | ||
const userId = user.userId; | ||
|
||
let client; | ||
|
||
try { | ||
client = await db.connect(req); | ||
|
||
let room = await roomDB.getRoomById(client, roomId); | ||
|
||
// @error 1. 유효하지 않은 roomId | ||
if (!room) { | ||
return res.status(statusCode.BAD_REQUEST).send(util.fail(statusCode.BAD_REQUEST, responseMessage.ROOM_ID_NOT_FOUND)); | ||
} | ||
|
||
// @error 2. 권한이 없는 사용자로부터의 요청 | ||
if (userId !== room.creator) { | ||
return res.status(statusCode.BAD_REQUEST).send(util.fail(statusCode.BAD_REQUEST, responseMessage.PRIV_NOT_FOUND)); | ||
} | ||
|
||
// 습관방 status ONGOING으로 변경 | ||
room = await roomDB.startRoomById(client, roomId); | ||
|
||
// @error 3. 이미 시작된 방 | ||
if (!room) { | ||
return res.status(statusCode.BAD_REQUEST).send(util.fail(statusCode.BAD_REQUEST, responseMessage.START_ROOM_ALREADY)); | ||
} | ||
|
||
// 참여자들의 0일차 record 생성 | ||
const entries = await roomDB.getEntriesByRoomId(client, roomId); | ||
|
||
for (let i = 0; i < entries.length; i++) { | ||
await recordDB.insertRecordById(client, entries[i].entryId, room.startAt); | ||
} | ||
|
||
// @TODO: Send Notification !! | ||
|
||
res.status(statusCode.OK).send(util.success(statusCode.OK, responseMessage.START_ROOM_SUCCESS)); | ||
} catch (error) { | ||
functions.logger.error(`[ERROR] [${req.method.toUpperCase()}] ${req.originalUrl}`, `[CONTENT] ${error}`); | ||
console.log(error); | ||
|
||
res.status(statusCode.INTERNAL_SERVER_ERROR).send(util.fail(statusCode.INTERNAL_SERVER_ERROR, responseMessage.INTERNAL_SERVER_ERROR)); | ||
} finally { | ||
client.release(); | ||
} | ||
}; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
const functions = require('firebase-functions'); | ||
const util = require('../../../lib/util'); | ||
const statusCode = require('../../../constants/statusCode'); | ||
const responseMessage = require('../../../constants/responseMessage'); | ||
const db = require('../../../db/db'); | ||
const { userDB, roomDB } = require('../../../db'); | ||
|
||
/** | ||
* @대기_방_조회 | ||
* @route GET /room/:roomId/waiting | ||
* @error | ||
* 1. 유효하지 않은 roomId | ||
* 2. 권한이 없는 사용자로부터의 요청 | ||
*/ | ||
|
||
module.exports = async (req, res) => { | ||
const { roomId } = req.params; | ||
const user = req.user; | ||
console.log(user); | ||
const userId = user.userId; | ||
|
||
let client; | ||
|
||
try { | ||
client = await db.connect(req); | ||
|
||
const room = await roomDB.getRoomById(client, roomId); | ||
|
||
// @error 1. 유효하지 않은 roomId | ||
if (!room) { | ||
return res.status(statusCode.BAD_REQUEST).send(util.fail(statusCode.BAD_REQUEST, responseMessage.ROOM_ID_NOT_FOUND)); | ||
} | ||
|
||
const selfEntry = await roomDB.getEntryByIds(client, roomId, userId); | ||
|
||
// error 2. 권한이 없는 사용자로부터의 요청 | ||
if (!selfEntry) { | ||
return res.status(statusCode.BAD_REQUEST).send(util.fail(statusCode.BAD_REQUEST, responseMessage.PRIV_NOT_FOUND)); | ||
} | ||
|
||
// 요청을 보낸 사용자 본인 data | ||
const reqUser = { | ||
userId, | ||
nickname: user.nickname, | ||
profileImg: user.profileImg, | ||
isPurposeSet: selfEntry.moment !== null && selfEntry.purpose !== null, | ||
moment: selfEntry.moment, | ||
purpose: selfEntry.purpose, | ||
isHost: room.creator === userId, | ||
}; | ||
|
||
// 요청을 보낸 사용자를 제외한 member list | ||
const friendsEntries = await roomDB.getFriendsByIds(client, roomId, userId); | ||
const friendsIds = friendsEntries.map((f) => f.userId); | ||
const users = await userDB.getUsersByIds(client, friendsIds); | ||
let members = []; | ||
|
||
users.map((u) => | ||
members.push({ | ||
userId: u.userId, | ||
nickname: u.nickname, | ||
profileImg: u.profileImg, | ||
}), | ||
); | ||
|
||
const data = { | ||
roomId, | ||
roomName: room.roomName, | ||
roomCode: room.code, | ||
fromStart: room.fromStart, | ||
reqUser, | ||
members, | ||
}; | ||
|
||
res.status(statusCode.OK).send(util.success(statusCode.OK, responseMessage.GET_WAITROOM_DATA_SUCCESS, data)); | ||
} catch (error) { | ||
functions.logger.error(`[ERROR] [${req.method.toUpperCase()}] ${req.originalUrl}`, `[CONTENT] ${error}`); | ||
console.log(error); | ||
res.status(statusCode.INTERNAL_SERVER_ERROR).send(util.fail(statusCode.INTERNAL_SERVER_ERROR, responseMessage.INTERNAL_SERVER_ERROR)); | ||
} finally { | ||
client.release(); | ||
} | ||
}; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
const functions = require('firebase-functions'); | ||
const util = require('../../../lib/util'); | ||
const statusCode = require('../../../constants/statusCode'); | ||
const responseMessage = require('../../../constants/responseMessage'); | ||
const db = require('../../../db/db'); | ||
const { userDB, roomDB } = require('../../../db'); | ||
|
||
/** | ||
* @대기_방_인원_조회 | ||
* @route GET /room/:roomId/waiting/member | ||
* @error | ||
* 1. 유효하지 않은 roomId | ||
* 2. 권한이 없는 사용자로부터의 요청 | ||
*/ | ||
|
||
module.exports = async (req, res) => { | ||
const { roomId } = req.params; | ||
const user = req.user; | ||
const userId = user.userId; | ||
|
||
let client; | ||
|
||
try { | ||
client = await db.connect(req); | ||
|
||
const room = await roomDB.getRoomById(client, roomId); | ||
|
||
// @error 1. 유효하지 않은 roomId | ||
if (!room) { | ||
return res.status(statusCode.BAD_REQUEST).send(util.fail(statusCode.BAD_REQUEST, responseMessage.ROOM_ID_NOT_FOUND)); | ||
} | ||
|
||
const selfEntry = await roomDB.getEntryByIds(client, roomId, userId); | ||
|
||
// error 2. 권한이 없는 사용자로부터의 요청 | ||
if (!selfEntry) { | ||
return res.status(statusCode.BAD_REQUEST).send(util.fail(statusCode.BAD_REQUEST, responseMessage.PRIV_NOT_FOUND)); | ||
} | ||
|
||
// 요청을 보낸 사용자를 제외한 member list | ||
const friendsEntries = await roomDB.getFriendsByIds(client, roomId, userId); | ||
const friendsIds = friendsEntries.map((f) => f.userId); | ||
const users = await userDB.getUsersByIds(client, friendsIds); | ||
let members = []; | ||
|
||
users.map((u) => | ||
members.push({ | ||
userId: u.userId, | ||
nickname: u.nickname, | ||
profileImg: u.profileImg, | ||
}), | ||
); | ||
|
||
res.status(statusCode.OK).send(util.success(statusCode.OK, responseMessage.GET_WAITROOM_DATA_SUCCESS, { members })); | ||
} catch (error) { | ||
functions.logger.error(`[ERROR] [${req.method.toUpperCase()}] ${req.originalUrl}`, `[CONTENT] ${error}`); | ||
console.log(error); | ||
res.status(statusCode.INTERNAL_SERVER_ERROR).send(util.fail(statusCode.INTERNAL_SERVER_ERROR, responseMessage.INTERNAL_SERVER_ERROR)); | ||
} finally { | ||
client.release(); | ||
} | ||
}; |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
const dayjs = require('dayjs'); | ||
const _ = require('lodash'); | ||
const convertSnakeToCamel = require('../lib/convertSnakeToCamel'); | ||
|
||
const insertRecordById = async (client, entryId, roomStartAt) => { | ||
const now = dayjs().add(9, 'hour'); | ||
const today = now.startOf('d'); | ||
const day = today.diff(roomStartAt, 'd'); | ||
const { rows } = await client.query( | ||
` | ||
INSERT INTO spark.record | ||
(entry_id, date, day) | ||
VALUES | ||
($1, $2, $3) | ||
RETURNING * | ||
`, | ||
[entryId, today, day], | ||
); | ||
|
||
return convertSnakeToCamel.keysToCamel(rows[0]); | ||
}; | ||
|
||
module.exports = { insertRecordById }; |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"dependencies": { | ||
"dayjs": "^1.10.7" | ||
} | ||
} |