Skip to content

Commit

Permalink
Feature/backend (#215)
Browse files Browse the repository at this point in the history
* Modify: CI/CD 수정

* Feat: navigation API 개발 완료

* Modify: navigation API 수정

* Fix: navigation API 예외처리

* Feat: CORS http 포트 추가

* Modify: CORS 옵션 수정

* Modify: CORS 옵션 수정

* Feat: https 서버 업데이트

* HTTPS 적용

* Feat: COSR 옵션 https 추가

* Feat: 없는 지하철역 예외처리

* Feat: 없는 지하철역 예외처리

* Modify: 예외처리 진행

* Modify: https 서버 수정

* Feat: 길찾기 기능 가중치 추가

* Feat: 길찾기 필요 정보 추가, 인터페이스 수정

* Feat: CI/CD 수정

* Modify: 교통약자 도우미번호 추가

* Feat: 지하철 이름 검색 시 주소 같이 제공

* Feat: 지하철 이름 검색 시 주소 같이 제공

* Modify: 지하철 역 좌표 제공 기능 수정

* Modify: 길찾기 오류 수정
  • Loading branch information
sw0501 authored Dec 12, 2023
1 parent 78273ec commit 7f759a0
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions BackendJS/BackendTS/routes/navigation.js
Original file line number Diff line number Diff line change
Expand Up @@ -521,11 +521,11 @@ router.get('/:startX/:startY/:endX/:endY/:type', (req, res) => __awaiter(void 0,
//지하철인 경우
else if (element.trafficType === 1) {
delete element.lane[0].subwayCityCode;
if (element.lane[0].name === "수도권 분당선(급행)") {
element.lane[0].subwayCode = 10;
if (element.lane[0].name === "수도권 분당선(급행)" || element.lane[0].name === "수도권 분당선") {
element.lane[0].subwayCode = "K1";
}
else if (element.lane[0].name === "수도권 신분당선") {
element.lane[0].subwayCode = 11;
else if (element.lane[0].name === "수도권 신분당선" || element.lane[0].name === "수도권 신분당선(급행)") {
element.lane[0].subwayCode = "D1";
}
const getSationInfo = (name, subwayCode) => new Promise((res, rej) => {
const SQL = "Select * from subcode_1 where STIN_NM LIKE ? and LN_CD = ?;";
Expand All @@ -536,6 +536,14 @@ router.get('/:startX/:startY/:endX/:endY/:type', (req, res) => __awaiter(void 0,
return rej(err);
}
else {
if (results.length === 0) {
return res({
stCd: null,
lnCd: null,
railCd: null,
stNm: null,
});
}
return res({
stCd: results[0].STIN_CD,
lnCd: results[0].LN_CD,
Expand Down

0 comments on commit 7f759a0

Please sign in to comment.