-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: 42 API로부터 사용자의 과제 정보 받아오는 기능 구현 (#690)
* feat(books): 도서 추천 컨트롤러 추가 - 도서 추천 컨트롤러 추가 - books.routes.ts에서 도서 추천 라우터 순서 변경 - 도서 추천 컨트롤러 내에서 42 API 통신 테스트 * feat(books): 컨트롤러 내 함수를 서비스 함수로 분리 - access token을 가져오는 함수 서비스에 구현 - user의 42 API 상 id를 가져오는 함수 서비스에 구현 * feat(books): 사용자의 과제 정보 가져오는 모듈 추가 - 사용자의 과제 정보를 가져오는 서비스 함수 추가 - 사용자의 과제 정보를 담을 DTO 정의(추후 schema로 변경) * feat(books): 사용자 login을 인자로 받아 프로젝트 받아오게 함 * feat(books): authvalidate 호출, req.user에 유저 정보를 담음 * feat: Project 타입에 marked_at 추가 * feat(books): 사용자의 project 정보 가져오는 컨트롤러 및 서비스 수정 - 사용자의 intraId를 DB에서 조회하게 변경 - access_token을 service의 전역변수로 설정 - access_token값이 만료될 경우, 재발급 후 42API와 통신
- Loading branch information
Showing
4 changed files
with
254 additions
and
99 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
export type RawProject = { | ||
id: number; | ||
occurrence: number; | ||
final_mark: number; | ||
status: string; | ||
'validated?': boolean; | ||
current_team_id: number; | ||
project: { | ||
id: number; | ||
name: string; | ||
slug: string; | ||
parent_id: number; | ||
}; | ||
cursus_ids: number[]; | ||
marked_at: string; | ||
marked: boolean; | ||
retriable_at: string; | ||
created_at: string; | ||
updated_at: string; | ||
user: { | ||
id: number; | ||
email: string; | ||
login: string; | ||
first_name: string; | ||
last_name: string; | ||
usual_full_name: string; | ||
usual_first_name: string; | ||
url: string; | ||
phone: string; | ||
displayname: string; | ||
kind: string; | ||
image: object; | ||
'staff?': boolean; | ||
correction_point: number; | ||
pool_month: string; | ||
pool_year: string; | ||
location: string; | ||
wallet: number; | ||
anonymize_date: string; | ||
data_erasure_date: string; | ||
created_at: string; | ||
updated_at: string; | ||
alumnized_at: string; | ||
'alumni?': boolean; | ||
'active?': boolean; | ||
}; | ||
teams: object[]; | ||
} | ||
|
||
export type Project = { | ||
id: RawProject['id']; | ||
status: RawProject['status']; | ||
validated: RawProject['validated?']; | ||
project: RawProject['project']; | ||
cursus_ids: RawProject['cursus_ids']; | ||
marked: RawProject['marked']; | ||
marked_at: RawProject['marked_at']; | ||
} |
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
Oops, something went wrong.