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

[FEAT] add headers, Server (#185) #185

Merged
merged 11 commits into from
Mar 26, 2021
Merged

[FEAT] add headers, Server (#185) #185

merged 11 commits into from
Mar 26, 2021

Conversation

hochan222
Copy link
Member

Header들이 추가됐습니다. 다음 사항들에 대한 로직이 추가됐습니다. (Header 추가 내용) (#130)

  • Content-Location
    • Content-Location 헤더는 반환된 데이터에 대한 대체 위치을 가르킵니다. 주된 유스케이스는 컨텐츠 협상의 결과로써 전달되는 리소스의 URL을 가르키는 것입니다.
    • 실제로 HTTP RFC는 PUT 및 POST에 대한 Content-Location의 정의 된 동작이 없다고 말합니다.
  • Host
    • Host 헤더의 필드는 모든 HTTP/1.1 요청 메시지 내에 포함되어 전송되어야 합니다.
    • Host 헤더 필드가 없거나 한 개 이상의 필드를 포함하는 HTTP/1.1 요청 메시지에 대해서는 400 (Bad Request) 상태 코드가 전송될 것입니다.
    • 그에 대한 로직은 request에서 처리했습니다.
  • Retry-After
    • Retry-After 응답 HTTP 헤더는 다음에 올 요청이 이루어지기 전에 사용자 에이전트가 대기해야 하는 시간을 가르킵니다.
    • 503 (Service Unavailable), 301 (Moved Permanently)
  • Location
    • Location응답 헤더에 페이지를 리디렉션 할 URL을 나타냅니다.
    • 3xx (리디렉션) 또는 201(생성 된) 상태 응답과 함께 제공 될 때만 의미를 제공합니다.
  • Referer
    • Referer 요청 헤더는 현재 요청된 페이지의 링크 이전의 웹 페이지 주소를 포함합니다.
    • Referer 헤더는 다음과 같은 경우 브라우저에 의해 전송되지 않습니다:
      • 참조되는 리소스가 로컬 "파일" 혹은 "데이터"의 URI인 경우,
  • User-Agent
    • 서버는 추가하지 않음으로 패스
  • Transfer-Encoding
    • chuncked
Response
Server::makeResponseMessage(
	int statusCode, std::string path, std::string transfer_encoding, std::string method, std::string contentType,
	std::string referer,
	int dateHour, int dateMinute, int dateSecond, std::string allow_method, std::string content_location,
	std::string location,
	std::string contentLanguage, std::string server
)
{
	(void) transfer_encoding;
	Response response = Response();

	if (statusCode == 301 || statusCode == 503)
		response.setHttpResponseHeader("retry-after", "10");
	if ((300 <= statusCode && statusCode < 400) || statusCode == 201)
		response.setHttpResponseHeader("location", location);

	if (contentType != "image/gif" || contentType != "image/jpeg"
	|| contentType != "image/png" || contentType != "image/x-icon")
		response.setHttpResponseHeader("referer", referer);

	if (method == "GET")
		response.setHttpResponseHeader("last-modified", response.get_m_date());
	else if (method == "POST")
		response.setHttpResponseHeader("content-location", content_location);
	else if (method == "PUT")
		response.setHttpResponseHeader("content-location", content_location);
	else if (method == "OPTIONS")
		response.setHttpResponseHeader("allow", allow_method);

	return (
		response
			.setStatusCode(statusCode)
			.setCurrentDate(dateHour, dateMinute, dateSecond)
			.setPublicFileDocument(path)
			.setContentLanguage(contentLanguage)
			.setContentType(contentType)
			.setServer(server)
			.setHttpResponseHeader("date", response.get_m_date())
			.setHttpResponseHeader("content-length", std::to_string(response.get_m_content_length()))
			.setHttpResponseHeader("content-language", response.get_m_content_language())
			.setHttpResponseHeader("content-type", response.get_m_content_type())
			.setHttpResponseHeader("status", std::to_string(response.get_m_status_code()))
			.setHttpResponseHeader("server", response.get_m_server())
			.makeHttpResponseMessage(method)
	);
}
  • makeResponseMessage나 makeResponseBodyMessage를 만들때 순서가 조금 바꼈습니다. 헤더를 참조해서 만들어주세요.

@hochan222 hochan222 changed the title [FEAT] add headers, Server [FEAT] add headers, Server (#185) Mar 26, 2021
@hochan222 hochan222 requested review from jwon42 and yechoi42 March 26, 2021 12:47
@hochan222 hochan222 self-assigned this Mar 26, 2021
@jwon42
Copy link
Collaborator

jwon42 commented Mar 26, 2021

contentType 관련부분은 mime.types 참고하거나 다른 방법으로 수정해놓을게요. 파일인 경우를 제외하면 되는거죠?

@hochan222
Copy link
Member Author

contentType 관련부분은 mime.types 참고하거나 다른 방법으로 수정해놓을게요. 파일인 경우를 제외하면 되는거죠?

네! 맞습니다

@hochan222 hochan222 merged commit 3fc25bb into master Mar 26, 2021
@hochan222 hochan222 deleted the feature/holee branch March 26, 2021 13:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants