Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[POST] 시간 입력 받아서 비디오 추천 #10

Open
1 of 2 tasks
epitone opened this issue Dec 22, 2020 · 0 comments
Open
1 of 2 tasks

[POST] 시간 입력 받아서 비디오 추천 #10

epitone opened this issue Dec 22, 2020 · 0 comments
Assignees
Labels

Comments

@epitone
Copy link
Contributor

epitone commented Dec 22, 2020

  • API 명세서 작성하기
  • 로직 구현

URL

POST /recommend

Request

{
	time: 5
}

Response

{
	status: 200,
	data: {
		videoId: 1,
		title: "헬린이의 2분 운동"
		link: '1yXZIFYv4SE',
		hashTag: [
			"다이어트",
			"홈트"
		]
	}
}

Flow

  • 시간 입력을 POST 의 body로 한다.
  • 받은 시간이 분 단위로 온다.
  • e.g) time_category에서 해당하는 거 전부를 객체로 가져옴
  • rand 함수를 통해서 객체 하나 선택
    ⇒ WATCHING_HISTORY_TB에서 user_id로 조건을 걸어서 본 비디오 id들만 filter함.
    rand에서 뽑을 객체 arr에서 유저가 이미 본 비디오들을 삭제하고, rand를 통해 객체 하나를 뽑아옴.
  • 해당 객체의 정보를 정제해서 반환해 준다.(id는 안 보낸다는 등)
@epitone epitone self-assigned this Dec 22, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant